RVM: How to use gems from a different ruby?

前端 未结 4 1278
故里飘歌
故里飘歌 2021-02-04 10:56

I have been using RVM to manage my Rubies and gems.

When I first installed RVM, the Ruby version that I installed was 1.9.2-p0. I recently installed Ruby <

相关标签:
4条回答
  • 2021-02-04 11:04

    You can copy a gemset from one ruby to another. rvm copy

    $ rvm gemset copy 2.1.1@rails4 2.1.2@rails4
    
    0 讨论(0)
  • 2021-02-04 11:05

    This might help: http://rvm.io/gemsets/initial/

    Basically, if you setup a global gemset configuration, those gems will be used for every ruby version you install.

    0 讨论(0)
  • 2021-02-04 11:27

    You need to check out gemsets and export your current gems.

    rvm gemset export
    

    Read the gemset docs for more information.

    0 讨论(0)
  • 2021-02-04 11:29

    You can use copy in rvm

    $ rvm gemset copy 1.9.2-p0 1.9.2-p136
    

    See more about the rvm copy command

    This is the fastest way to get your gems moved over and it wont reinstall everything, just copy them over. But once you've got that squared away I'd do as the others are suggesting and start using gemsets. It's a nice way to group the gems you use in your projects.

    0 讨论(0)
提交回复
热议问题