Moving my gemset RVM project to another patch level

My project has a .rvmrc file with the following: rvm 1.9.2-p180@project _name . However, I just upgraded my Ruby 1.9.2 to the latest fix level (1.9.2-p290). Is there a way to transfer gems in gemset project_name to 1.9.2-p290?

+6
source share
2 answers

Link: http://ruby.about.com/od/rubyversionmanager/ss/Upgrading-To-1-9-2-Using-Rvm_6.htm

Alternatively, your gemsets can be migrated (or migrated) from one version of Ruby to another. Remember that migrate moves the gemset without leaving a copy behind. But if you want to do it this way, you can run the following command.

 rvm migrate 1.9.2-p180@project _name 1.9.2-p290@project _name 
+9
source

You can copy gemsets with the following command:

 rvm gemset copy 1.9.2-p180@project _name 1.9.2-p290@project _name 
+11
source

Source: https://habr.com/ru/post/893410/


All Articles