I am trying to run an application removed from Github.
I performed bundle install to install the necessary gems from the Gemfile . However, when the application starts, an error message tells me that the gems installed are the wrong version.
When checking Gemfile.lock I note that the versions are older than the installed gems. (i.e., I have newer versions of gems installed, and the application requires old gems.)
Is there a quick way to set all the stones according to the versions described in the Gemfile.lock file? Alternatively, is there a way to ignore this file?
Gemfile:
source 'http://rubygems.org' gem 'rails', "3.0.9" gem "sass" ..
Gemfile.lock:
sass (3.1.1) ..
In the above example, even if sass is installed, the application specifically requires version 3.1.1.
source share