Bundler documentation for version 1.5
says that I should specify patchlevel as follows:
ruby '1.9.3', :patchlevel => 448
When I follow the instruction 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
says:
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 ruby version with patchlevel in Gemfile
?