Questions tagged [rvmrc]

rvmrc is the configuration file of Ruby Version Manager (RVM) that is parsed and applied when RVM initializes.

rvmrc is the configuration file of Ruby Version Manager (RVM) that is parsed and applied when RVM initializes.

41 questions
0
votes
1 answer

Gemsets file isn't working

I have a folder which contains a file named gemsets.rvmrc. The file contains this: rvm use @pa Running this code in the terminal successfully switches over to the correct gemset. I'd heard that putting this file in the folder would do that…
Andrew
  • 15,935
  • 28
  • 121
  • 203
0
votes
1 answer

Want To Stop Using .ruby-version In My Rails Applications

When I first started writing Rails applications I used .ruby-version because I read about it on the RVM website. I did this for two of my Rails applications. It was so long ago that I do not remember the commands that I typed to activate this. I…
0
votes
2 answers

where go gems installed by rails command when i create a specified gemset later

i generate my app with rails new app and then i go to the home directory of my app like this : cd app, and i create a .rvmrc file to specify the gemset to use with this project and there will go all my gems instead of default gemset created by…
medBouzid
  • 7,484
  • 10
  • 56
  • 86
0
votes
1 answer

I do not have access to the rails command in my application folder

I have rails installed on a machine (Ubuntu 12.04) and have used for a couple of Rails projects. I have access to the rails command in my home folder and any other folder I create on my machine. I created a new directory for a project. I also…
jhamm
  • 24,124
  • 39
  • 105
  • 179
0
votes
2 answers

.rvmrc syntax error

I am trying to work with a web app made by someone else. I cloned that repo and when I cd'ed into it, the .rvmrc executed. But I am getting the following error in it: : command not found : command not found : command not found : command not…
sleeping_dragon
  • 701
  • 1
  • 10
  • 27
0
votes
1 answer

.rvmrc is not read in gnome-terminal

In one directory I have these files: $ ls -1a . .. Gemfile Gemfile.lock .rvmrc test.rb but .rvmrc file is not read when we change to this directory. I have configured gnome-terminal as this page say: https://rvm.io/integration/gnome-terminal/ It…
Israel
  • 3,252
  • 4
  • 36
  • 54
0
votes
2 answers

Why have Rails & Bundler package have dissapeared?

I'm following Michael Hartl's Ruby on Rails tutorial & everything has been working fine until I reached this stage. For some reason when I try to run a bundler or the rails command it says they are not installed even though they were working before…
Holly
  • 7,462
  • 23
  • 86
  • 140
0
votes
1 answer

How to configure independent rvmrc files across code lifecycle

We have multiple developers contribute to source code, so it would be preferable to have multiple .rvmrc files for each developer. How should I automate this? e.g. dev1 uses rvm use 1.9.3@app-dev1 dev2 uses rvm use 1.9.3@app-dev2 dev3 uses rvm use…
Sam
  • 8,387
  • 19
  • 62
  • 97
0
votes
1 answer

Skip RubyGems install in .rvmrc if current version

My .rvmrc file's contents are as follows: rvm --install use 1.9.3@my_gemset && rvm rubygems 1.8.6 && gem list Unfortunately, this causes rubygems to reinstall even if my current rubygems version is 1.8.6. It's not a major problem, but a minor…
Chuck Callebs
  • 16,293
  • 8
  • 56
  • 71
0
votes
1 answer

svn unignore rvmrc

I am trying to commit .rvmrc to svn svn list >> Gemfile >> Gemfile.lock >> config.rb >> config.ru >> source/ svn status svn propedit svn:ignore . (delete ".rvmrc") svn status >> M . >> ? .rvmrc echo "#" >> .rvmrc svn status >> M . >>…
puchu
  • 3,294
  • 6
  • 38
  • 62
-1
votes
1 answer

TextMate doesn't work with .rvmrc anymore after collegue changed it

Some while ago, our .rvmrc file looked like this (pretty default): #!/usr/bin/env bash # This is an RVM Project .rvmrc file, used to automatically load the ruby # development environment upon cd'ing into the directory # First we specify our…
Joshua Muheim
  • 12,617
  • 9
  • 76
  • 152
1 2
3