I\'m trying to run newly created project in Rails 4.0.8 but I receive and error:
rails s
=> Booting WEBrick
=> Rails 4.0.8 application starting in
In Ruby 2.4, there was a unification of integer types (i.e. Fixnum
and Bignum
are now the very same thing: Integer
). This results on quite a few incompatibilities with existing gems which relied on the distinction of the classes.
Older versions of ActiveSupport are among those which don't like this unification and barf over it when trying to serialize data. As such, you have one of two options: