The Bundler documentation for the version 1.5says that I should specify patchlevel as follows:
ruby '1.9.3', :patchlevel => 448
When I follow the instructions and run bundle install, I get:
The Ruby patchlevel in your Gemfile must be a string
If i do
ruby '2.0.0', :patchlevel => '353'
Bundler He speaks:
ruby-2.0.0,:patchlevel=>353 is not installed.
To install do: 'rvm install ruby-2.0.0,:patchlevel=>353'
Is it even possible to specify a ruby version with a patch level of Gemfile?
source
share