I am just getting started on RoR and I encounter errors like - "already activated xxxxx, but your Gemfile requires yyyyy", etc. I tried searching for information to better understand the RoR gem, plug-ins loading process, but couldn't find any. Could somebody point to good resources/book which can help understand RoR mechanics.
p.s.: I am a 10+ years .Net guy making a move to RoR, interested in learning the RoR mechanics instead of just how-tos.
bundle install
orbundle update
locked the gem (in your Gemfile.lock file) to the current version of the gem on your system. Since then you updated the gem on your system to a newer version, so when Rails starts up it loads the newer version which does not match the version specified in Gemfile.lock. This isn't a big deal, just runbundle update
again so that Gemfile.lock reflects the updated gems. – Wizard of Ogz