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.
|
What to use as an alternative? My code..
This works on my local but not on my remote Heroku. Heroku doesn't have this method as a listed method for Fixnums. |
|||
|
|
|
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:
or
|
|||
|
|