I'm going to try to be brief but complete ;) I'm on Mac OSX Snow Leopard. I've tried to post a similar question to the RVM google group but it does not seem to get posted.
I'm worried that I've done something fundamentally wrong with my rvm install that's causing these errors, that seem to be related to paths, at each step of the way. Have any of you seen this behavior before?
I've started to teach myself rails programming as of about two months ago. I started out with a working environment of ruby 1.9.1 and rails 3.0.3, based on a hivelogic install tutorial that had me modify my ~/.profile file and install the relevant bits to ~/usr/local/src/. For reference, the line in my ~/.profile file was this when I installed RVM, if that makes any difference:
export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/local/src:$PATH"
I went to my terminal app and installed rvm as a user using the standard user github bash script.
I tried to install ruby 1.9.2, which kept running into a weird crash error about a libfile somewhere. After much googling I found someone on stackoverflow that recommended renaming the ~/usr/local directory while performing the ruby install -- I did this, and the install complete.
Then i did gem install rails and tried to do bundle install in my app, which gave an error when trying to install sqlite3 gem (even though I already had sqlite3 installed & working). Again spent a day googling this and eventually found another suggestion on stack overflow (http://stackoverflow.com/questions/3520347/unable-to-install-sqlite3-ruby-gem) that if I used Macports to "sudo port install sqlite3" it would work.
I tried that from the base directory, and macports did it's thing but it didn't fix the problem. Then I did the same thing from my app directory and it fixed the sqlite3 error I was getting.
Now I am able to run "rails server" and "rails generate" again, which is great, but then I tried to "annotate" my new model, and I get this error:
I have not yet solved this issue, and have looked at many many threads of similar issues. This, for example, did not solve my problem:
(https://github.com/james2m/annotate_models/commit/5997da9692c9b222e8d1be22dfad6ed8638c16a1)
I even tried copying my source code directly into the rvm/user/ directory in case that relative path was causing problems, but it doesn't seem to have fixed anything. Maybe I need to uninstall rvm and re-install it as root instead of a user level thing?
What do you think is the best way to get annotate to work and hopefully get rvm to play nice with my gems going forward?
I'm unfortunately REALLY new to terminal, code, etc, so any help would be much appreciated.
which ruby? Should be something like/Users/username/.rvm/rubies/ruby-1.9.1-p378/bin/ruby. – Bob Aman Jan 20 '11 at 23:14rvm -v. – the Tin Man Jan 21 '11 at 3:11