ruby directive in the Gemfile:
ruby 'RUBY_VERSION', :engine => 'ENGINE', :engine_version => 'ENGINE_VERSION'
ruby '1.9.3', :engine => 'jruby', :engine_version => '1.6.7"
Gemfile. If things don't match, Bundler will raise an Exception explaining what doesn't match.
Your Ruby version is 1.8.7, but your Gemfile specified 1.9.3
:engine and :engine_version are optional. When these options are omitted, this means the app is compatible with a particular Ruby ABI but the engine is irrelevant. When :engine is used, :engine_version must also be specified.
platform command with the --ruby flag, you can see what ruby directive is specified in the Gemfile.
ruby 1.9.3 (jruby 1.6.7)Learn More: bundle platform
ruby directive explicitly leaves out the ability to specify a patch level. Ruby patches often include important bug and security fixes and are extremely compatible.
Many thanks to Bundler's contributors and sponsors