Hello,
Can anyone tell me how to upgrade ‘strong_parameters’ from 0.1.4 to
0.2.3
on the Terminal? When I use ‘update strong_parameters’ it tell me that
it
no longer uses update. When I say upgrade it says command not found. I
am
using RVM.
Thank you so much for your help,
Eric
On Feb 16, 2014, at 10:40 PM, Eric Jefcoat wrote:
Hello,
Can anyone tell me how to upgrade ‘strong_parameters’ from 0.1.4 to 0.2.3 on the
Terminal? When I use ‘update strong_parameters’ it tell me that it no longer uses
update. When I say upgrade it says command not found. I am using RVM.
Remember that Bundler will be doing version dependency checks to ensure
that you don’t end up with a mismatch elsewhere in your application.
What version of Rails is this project? What does your Gemfile say about
strong_parameters in particular? Do you just have the line
gem ‘strong_parameters’
with no version information defined? Or is there a version that is
specified in that same line? If there’s no version noted, then you may
be getting the latest version of SP for your version of Rails in this
project. Try these steps and just see what happens:
#cd into your project folder root
bundle update strong_parameters
Walter