Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What to use as an alternative?

My code..

time = Fixnum.induced_from(minutes_past)

This works on my local but not on my remote Heroku.

Heroku doesn't have this method as a listed method for Fixnums.

share|improve this question

1 Answer

up vote 1 down vote accepted

As far as I know this method is deprecated in ruby 1.9.x and last existing version where you can you it is 1.8.7. I believe that is a source of your problem. There are a couple of methods for converting value as instance of Numeric class to value as instance of Fixnum class in 1.9. For example:

1.0.to_i      # => 1
1.to_i        # => 1

or

Integer(1.0)  # => 1
Integer(1)    # => 1
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.