warning: constant ::Fixnum is deprecated When generating new model

This warnings appear because you are using ruby 2.4.0. This version introduced this change: Unify Fixnum and Bignum into Integer See here for the announcement: https://www.ruby-lang.org/en/news/2016/12/25/ruby-2-4-0-released/ The warnings come from the activesupport gem which is part of rails and will be fixed in an upcoming release. For now you can just ignore those warnings. Update: … Read more

Bundler: You must use Bundler 2 or greater with this lockfile

I had a similar experience. Here’s how I solved it Display a list of all your local gems for the bundler gem N/B: The command above is for rbenv version manager, the one for rvm might be different This will display the versions of the bundler gem installed locally Note: Your versions might differ from … Read more