You can have multiple versions of Rails on the same machine.
You can tell your app which version of Rails to use by adjusting
You can also freeze all the plugins etc that you use into your code tree before deployment
You can tell your app which version of Rails to use by adjusting
RAILS_GEM_VERSION
in config/environment.rb
You can also freeze all the plugins etc that you use into your code tree before deployment
rake rails:freeze:gems
.
Comments
Post a Comment