Questions tagged [rvm]

RVM (Ruby Version Manager) is a command line tool which allows users to install, manage and work with multiple Ruby environments from interpreters to sets of gems easily in the various Unix-like systems (such as Linux and Mac OS X).

Ruby Version Manager (RVM) is written by Wayne E. Seguin. RVM is a tool that lets you have multiple independent Ruby installations on the same machine. You can switch between them using a single command. This is wonderful, because you can experiment with new versions of Ruby while still keeping the old ones on your system.

RVM allows users to deploy each project with its own completely self-contained and dedicated environment — from the specific version of Ruby all the way down to the precise set of required gems to run the application.

A lot of questions are answered on the RVM site.

See Also

4104 questions
2
votes
3 answers

Installation error with RVM stable version

I want to install RVM along with Ruby 1.9.3 and Rails 3.2.9. I have tried to install rvm using the following command, \curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled # Or, --ruby=1.9.3 But, I am getting the following…
Rajesh Omanakuttan
  • 6,788
  • 7
  • 47
  • 85
2
votes
3 answers

Installing Ruby - RVM - Mac OSX Mountain Lion

So I'm trying to install Ruby 1.9.3 on my Mac running Mountain Lion. I have xCode installed and up to date. I've installed RVM and now am trying to install Ruby using rvm install 1.9.3 When I run this it looks like it's going to install but gives me…
user1172897
  • 99
  • 1
  • 4
  • 8
2
votes
2 answers

Call a shell script using a different ruby within a rails app

I have a Rails application that runs on Ruby 1.9 and a shell script (Podcast Producer) that depends on Ruby 1.8. I need to call the shell script from within the application. The Ruby Version Manager I use is rvm and the app runs within passenger.…
Beffa
  • 915
  • 1
  • 8
  • 18
2
votes
3 answers

Homebrew (Mac): cannot install libksba or dependency libgpg-error

I'm setting up a new Mac for development with Ruby on Rails. I have installed XCode (including command line tools), Homebrew, and RVM properly. However, when I try to install the 2.0.0 Ruby version via RVM, I keep having to install libksba, which…
Dan L
  • 4,319
  • 5
  • 41
  • 74
2
votes
1 answer

Installing RVM getting errors with configure

I'm getting errors installing RVM, I have installed Ruby 2.0.0 with brew, and now I'm trying to run the RVM command at http://www.rvm.io Error running './configure --prefix=/Users/name/.rvm/rubies/ruby-2.0.0-p0…
hellomello
  • 8,219
  • 39
  • 151
  • 297
2
votes
2 answers

Can't install Ruby using RVM

I'm running Debian Wheezy with kernel 2.6.32-028stab101.1. I just installed Ruby and RVM. The current installed version is ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux], however, I need version 1.8.7-p371 for my current code. I tried…
cherrun
  • 2,102
  • 8
  • 34
  • 51
2
votes
1 answer

(CRON) error (grandchild #26321 failed with exit status 127)

I am using whenever gem my schedule.rb content is every 2.minutes do runner "Refinery::Page.update_publishing_date_to_list_in_menu" end I get this by crontab -l # Begin Whenever generated tasks for: /home/harssh/Documents/Aptana Studio 3…
Grey
  • 676
  • 8
  • 23
2
votes
2 answers

Issues installing ruby on osx 10.8

Guys i am try to install ruby on mac using guides from this site http://www.moncefbelyamani.com/how-to-install-xcode-homebrew-git-rvm-ruby-on-mac/ but when i issues following commands on mac terminal: \curl -L https://get.rvm.io | bash -s stable…
Saraswathi Apavoo
  • 263
  • 2
  • 4
  • 18
2
votes
3 answers

Error to install Ruby 1.9.3 in RVM - Make error

I have an error to compile Ruby 1.9.3 with RVM in my OSX. I already searched a lot of solutions but is not the common error. I think its a permission error, but I don't know how to solve. See my make.log file: [2013-04-03 09:37:41] make CC =…
squiter
  • 5,711
  • 4
  • 24
  • 24
2
votes
1 answer

Upgrade to ruby 1.9.3 with rvm or brightbox gems

I currently use rvm on my dev box (osx) but I use the system ruby on my server (1.8.7 on Ubuntu 10.04) I want to upgrade the server to 1.9.3 and have been researching the best way to do it. The server is running about four Rails applications all on…
giorgio
  • 2,115
  • 5
  • 23
  • 39
2
votes
1 answer

Error install rvm 1.9.3

Trying to solve this error.... $ rvm install 1.9.3 Searching for binary rubies, this might take some time. No binary rubies available for: osx/10.8/x86_64/ruby-1.9.3-p392. Continuing with compilation. Please read 'rvm mount' to get more information…
user2012677
  • 5,465
  • 6
  • 51
  • 113
2
votes
1 answer

Installing Ruby 2.0.0 on Mac 10.7.5 "requirements_port_libs_install"

I originally installed ruby 1.9.3 with an installer from here: http://railsinstaller.org/ Now I want to install Ruby 2.0 and Rails 4 so I used rvm witch that installer had already installed rvm install 2.0.0 but that failed with: Searching for…
2
votes
1 answer

capistrano error msg: Please install the pg adapter: `gem install activerecord-pg-adapter` (cannot load such file --

I am using capistrano and get this error message: Please install the pg adapter: `gem install activerecord-pg-adapter` (cannot load such file -- active_record/connection_adapters/pg_adapter) I have removed the gem 'pg' from my Gemfile and bundle…
timpone
  • 19,235
  • 36
  • 121
  • 211
2
votes
2 answers

RVM bundler installed ERROR: Gem bundler is not installed, run `gem install bundler` first

I get to work with a new project and it's based on ruby 1.8.7, I'm using rvm to manage my ruby versions and I have installed 1.8.7 and 1.9.2. The thing is when I do: rvm use 1.8.7 and try to run: bundle install I get: ERROR: Gem bundler is not…
Adrian Matteo
  • 987
  • 1
  • 10
  • 28
2
votes
2 answers

rvm install via capistrano is flooding output

I'm running a shell script via capistrano to install rvm and ruby. When running rvm install ruby-${RUBY_VERSION} 2>&1 > ../log/ruby_install.log in my script, all output seems to be going to the log file, except for the scrollbar output. that…
josef.van.niekerk
  • 11,941
  • 20
  • 97
  • 157
1 2 3
99
100