Skip to main content
deleted 17 characters in body
Source Link
Pigueiras
  • 19.5k
  • 10
  • 67
  • 87
1). Install RVM            $ sudo apt-get install curl $ curl -L https://get.rvm.io | bash -s stable --ruby (Refer  https://rvm.io/rvm/install/) $ source /home/sodel/.rvm/scripts/rvm ( enable rvm) This installs latest stable ruby. To install another version run rvm install <ruby version.number> 2) rvm install 1.9.3 (it will install ruby 1.9.3) 3)rvm use 1.9.3(to use latest version of ruby) 4)Start installing gems Ex: (gem install bundle) 5)bundle install(for all gems) 
  1. Install RVM

    $ sudo apt-get install curl $ curl -L https://get.rvm.io | bash -s stable --ruby (Refer  https://rvm.io/rvm/install/) $ source /home/sodel/.rvm/scripts/rvm ( enable rvm)

This installs latest stable ruby. To install another version run rvm install

  1. rvm install 1.9.3 (it will install ruby 1.9.3)

  2. rvm use 1.9.3 (to use latest version of ruby)

  3. Start installing gems Ex: gem install bundle

  4. bundle install (for all gems)

1). Install RVM            $ sudo apt-get install curl $ curl -L https://get.rvm.io | bash -s stable --ruby (Refer  https://rvm.io/rvm/install/) $ source /home/sodel/.rvm/scripts/rvm ( enable rvm) This installs latest stable ruby. To install another version run rvm install <ruby version.number> 2) rvm install 1.9.3 (it will install ruby 1.9.3) 3)rvm use 1.9.3(to use latest version of ruby) 4)Start installing gems Ex: (gem install bundle) 5)bundle install(for all gems) 
  1. Install RVM

    $ sudo apt-get install curl $ curl -L https://get.rvm.io | bash -s stable --ruby (Refer  https://rvm.io/rvm/install/) $ source /home/sodel/.rvm/scripts/rvm ( enable rvm)

This installs latest stable ruby. To install another version run rvm install

  1. rvm install 1.9.3 (it will install ruby 1.9.3)

  2. rvm use 1.9.3 (to use latest version of ruby)

  3. Start installing gems Ex: gem install bundle

  4. bundle install (for all gems)

Source Link
Salil
  • 47.7k
  • 22
  • 127
  • 161

1). Install RVM            $ sudo apt-get install curl $ curl -L https://get.rvm.io | bash -s stable --ruby (Refer  https://rvm.io/rvm/install/) $ source /home/sodel/.rvm/scripts/rvm ( enable rvm) This installs latest stable ruby. To install another version run rvm install <ruby version.number> 2) rvm install 1.9.3 (it will install ruby 1.9.3) 3)rvm use 1.9.3(to use latest version of ruby) 4)Start installing gems Ex: (gem install bundle) 5)bundle install(for all gems)