Tagged Questions

5
votes
2answers
226 views

How to express infinity in Ruby?

I was wondering if there was any keyword that represents Infinity in Ruby? Thanks
2
votes
5answers
378 views

Infinite yields from an iterator

I'm trying to learn some ruby. Imagine I'm looping and doing a long running process, and in this process I want to get a spinner for as long as necessary. So I could do: a=['|','/','-','\\'] aNow=0 ...
0
votes
2answers
37 views

Getting infinite recursion in Rails as_json routine

I have an Account class that has_many stores. In the Store class, there is a routine that returns all the other stores for that account: def other_stores if account then ...