I'm running Ruby 2.0.0 and I installed it correctly. Just loaded up a gem 'devise' and as I tried to migrate my database changes, it wouldn't work:
$ rake db:migrate rake aborted!
attr_accessible
is extracted out of Rails into a gem. Please use new recommended protection model for params(strong_parameters) or addprotected_attributes
to your Gemfile to use old one.
Then, following another Stackoverflow post, they recommended installing Bundler. I did that successfully and got this:
$ bundle exec rake db:migrate rake aborted!
attr_accessible
is extracted out of Rails into a gem. Please use new recommended protection model for params(strong_parameters) or addprotected_attributes
to your Gemfile to use old one.
Is anyone up to the challenge to help?