On Jul 19, 11:19 am, cipher_neo <[email protected]> wrote:
> If I had of ran
>
> bundle install --deployment
>
> on the new machine, would that mean that it would not have specified 
> dependencies as >= (which seems to be breaking the app as the newer gems are 
> being downloaded and are incompatible with my code)

When you run bundle install --deployment it is supposed to use exactly
the versions in Gemfile.lock (if you look further down in the
Gemfile.lock file it lists the set of versions it picked that matched
the requirements of your gemfile), so that you get exactly the same
version on any machine you run it on. You can run bundle show to see
what versions bundler is actually pulling in for your two versions.

This is an odd problem though - params have always been an
HashWithIndifferentAccess and continue to be so - it feels to me that
you must be doing something to them that causes them to revert to
being normal hashes.

Fred

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to