[Rails] Re: patch levels and ruby

2013-05-14 Thread Robert Walker
John Merlino wrote in post #1108958: How do you know which patch level to use for ruby? I have one project that uses ruby-1.9.3-p0. When I cd into another project, it says: ruby-1.9.3-p392 is not installed. So which to use: ruby-1.9.3-p0 or ruby-1.9.3-p392? What are you using to manage your

[Rails] Re: patch levels and ruby

2013-05-14 Thread John Merlino
I'm using capistrano. I added this to the recipe: set :rvm_ruby_string, 'ruby-1.9.3-p0@online_store' # use the same ruby as used locally for deployment set :rvm_autolibs_flag, read-only# more info: rvm help autolibs set :rvm_type, :system set :rvm_install_with_sudo, true

[Rails] Re: patch levels and ruby

2013-05-14 Thread John Merlino
My /usr/local/rvm/gems looks like this (on ubuntu server): cache ruby-1.9.3-p0@globalruby-1.9.3-p194 ruby-1.9.3-p194@TrackingSystem ruby-1.9.3-p0 ruby-1.9.3-p0@online_store ruby-1.9.3-p194@global ruby-1.9.3-p392@TrackingSystem Is this normal to be using so many patch levels?