I''ve previously used Macports to manage ruby. Now I''ve installed rvm and installed ruby 1.9.2. Seems to be ok. But I''m a bit confused of where the gems are. So 2 questions: 1) I have my gems in .gem. This is the "old" location. With rvm they should be in .rvm. I''ve created a gemset global. Will this then be available for all apps on the server? 2) When trying to install mail with "gem install mail" I get "ERROR: While executing gem ... (Errno::EACCES) Permission denied - /Users/me/.gem/specs". Why (besides the permission issue)? Is it still trying to install in .gem? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Paul Bergstrom wrote in post #964914:> I''ve previously used Macports to manage ruby. Now I''ve installed rvm and > installed ruby 1.9.2. Seems to be ok. But I''m a bit confused of where > the gems are. So 2 questions: > > 1) I have my gems in .gem. This is the "old" location. With rvm they > should be in .rvm. I''ve created a gemset global. Will this then be > available for all apps on the server? > > 2) When trying to install mail with "gem install mail" I get "ERROR: > While executing gem ... (Errno::EACCES) Permission denied - > /Users/me/.gem/specs". Why (besides the permission issue)? Is it still > trying to install in .gem?This is probably better asked on the Ruby or RVM list. It certainly has nothing to do with Rails. Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
You''re really a funny guy Marnen. I thought Rails was based on Ruby. :-) I''m trying to install Rails 3. Besides this hopeless linear behavior from Marnen, anyone who can assist me with an answer? Or should I ask in the Ruby list instead and say that I''m trying to install Rails using rvm and gem but be asked to jump over to Rails list instead as I happen to mention Rails? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Paul Bergstrom wrote in post #964948:> You''re really a funny guy Marnen. I thought Rails was based on Ruby. :-)Of course it is. This list, however, is not for basic Ruby or RVM questions, but only for issues specific to Rails. So your question is off topic here. Please take it where it is on topic -- that way it will get seen by more people who can help.> > I''m trying to install Rails 3. Besides this hopeless linear behavior > from Marnen, anyone who can assist me with an answer? Or should I ask in > the Ruby list instead and say that I''m trying to install Rails using rvm > and gem but be asked to jump over to Rails list instead as I happen to > mention Rails?Your problem is with RVM, not with Ruby or Rails. Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org Sent from my iPhone -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Maybe your RVM is not running as a function that is causing gem env confusion. Check out the manual, Post Install section. Run "type rvm | head -n1" and check if the return is "rvm is a function". And if it''s not, follow the instructions given in the manual. Hope this helps. On Nov 30, 9:11 am, Marnen Laibow-Koser <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Paul Bergstrom wrote in post #964948: > > > You''re really a funny guy Marnen. I thought Rails was based on Ruby. :-) > > Of course it is. This list, however, is not for basic Ruby or RVM > questions, but only for issues specific to Rails. So your question is > off topic here. Please take it where it is on topic -- that way it will > get seen by more people who can help. > > > > > I''m trying to install Rails 3. Besides this hopeless linear behavior > > from Marnen, anyone who can assist me with an answer? Or should I ask in > > the Ruby list instead and say that I''m trying to install Rails using rvm > > and gem but be asked to jump over to Rails list instead as I happen to > > mention Rails? > > Your problem is with RVM, not with Ruby or Rails. > > Best, > -- > Marnen Laibow-Koserhttp://www.marnen.org > mar...-sbuyVjPbboAdnm+yROfE0A@public.gmane.org > > Sent from my iPhone > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
tundrax wrote in post #964969:> Maybe your RVM is not running as a function that is causing gem env > confusion. > Check out the manual, Post Install section. > > Run "type rvm | head -n1" and check if the return is "rvm is a > function". And if it''s not, follow the instructions given in the > manual. > Hope this helps.Thanks. :-) -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Marnen Laibow-Koser wrote in post #964957:> Your problem is with RVM, not with Ruby or Rails.And what is yours? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hello, I''m not sure if I got it well, but I''ll try my best. So have you installed RVM already? It''s wise to install Ruby 1.9, then set it as default, then install the gem - but not as super user! So without sudo! This way it won''t be in your system files, it will be "Ruby- vesrion-specific". Also it''s a good idea, hogy uninstall, reinstall rubygems, since sometimes it''s wokring well around updates. May I ask you to write here the output of theese commands: ruby -v gem -v rvm -v rails -v gem list and your OS? and which Rails are you using/would you like to use? I think alost every info is here: http://rvm.beginrescueend.com/ but feel free to ask here, or almost every other mailing list... don''t care if others are not really helpful! ;) cheers, good luck, Zoltán On nov. 29, 22:29, Paul Bergstrom <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I''ve previously used Macports to manage ruby. Now I''ve installed rvm and > installed ruby 1.9.2. Seems to be ok. But I''m a bit confused of where > the gems are. So 2 questions: > > 1) I have my gems in .gem. This is the "old" location. With rvm they > should be in .rvm. I''ve created a gemset global. Will this then be > available for all apps on the server? > > 2) When trying to install mail with "gem install mail" I get "ERROR: > While executing gem ... (Errno::EACCES) Permission denied - > /Users/me/.gem/specs". Why (besides the permission issue)? Is it still > trying to install in .gem? > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Zoltan Gero wrote in post #965261:> Hello, > > I''m not sure if I got it well, but I''ll try my best. So have you > installed RVM already? It''s wise to install Ruby 1.9, then set it as > default, then install the gem - but not as super user! So without > sudo! This way it won''t be in your system files, it will be "Ruby- > vesrion-specific".Yes. But I had to use sudo as I got an error of some sort and a reference to my previous gem, the .gemrc. Not sure what that was.> Also it''s a good idea, hogy uninstall, reinstall rubygems, since > sometimes it''s wokring well around updates.Perhaps it''s a good idea to uninstall and start over.> May I ask you to write here the output of theese commands: > ruby -vruby 1.9.2p0 (2010-08-18 revision 29036) [i386-darwin10.5.0]> gem -v1.3.7> rvm -vrvm 1.1.1 by Wayne E. Seguin (wayneeseguin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org) [http://rvm.beginrescueend.com/]> rails -vRails 3.0.3> gem listabstract (1.0.0) actionmailer (3.0.3) actionpack (3.0.3) activemodel (3.0.3) activerecord (3.0.3) activeresource (3.0.3) activesupport (3.0.3) arel (2.0.4) builder (2.1.2) bundler (1.0.7) daemon_controller (0.2.5) erubis (2.6.6) fastthread (1.0.7) file-tail (1.0.5) i18n (0.5.0) mail (2.2.11) mime-types (1.16) mysql (2.8.1) passenger (3.0.0) polyglot (0.3.1) rack (1.2.1) rack-mount (0.6.13) rack-test (0.5.6) rails (3.0.3) railties (3.0.3) rake (0.8.7) spruz (0.2.2) thor (0.14.6) treetop (1.4.9) tzinfo (0.3.23)> > and your OS? and which Rails are you using/would you like to use? >I''m working on Mac OS 10.6.5 locally, using nginx and passenger. Then I have a VPS with Debian 5 where I will host my apps.> I think alost every info is here: > http://rvm.beginrescueend.com/I''ve seen that. Thanks.> > but feel free to ask here, or almost every other mailing list... don''t > care if others are not really helpful! ;) > cheers, good luck, > ZoltnThank you very much. Feels really good to read a post like yours. I appreciate your effort to help. :-) I''ve used Rails for a few years now, but I''m not the natural programmer and I can get stuck on technical stuff, even though I feel at home in the Terminal and such. This thing with rvm was new to me, and yes, a bit confusing. What I don''t understand is how my old Rails 2 apps will deal with rvm. Will they use my old gems and run as before even though I''ve set rvm with 1.9.2 as --default? Well, it looks like they do but I''m not sure which gem is used and where. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Did you install rvm using sudo? If you sudo install it, it''ll make it so you have to use sudo to install any gems. If you want to tell which ruby you''re running (on a mac) type: which ruby shouldn''t be /usr/bin/ruby -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Chris Lemcke wrote in post #965274:> Did you install rvm using sudo? If you sudo install it, it''ll make it > so you have to use sudo to install any gems. If you want to tell which > ruby you''re running (on a mac) type:I can''t remember but I don''t think so. I stand as owner for the .rvm directory.> which ruby > > shouldn''t be /usr/bin/rubyIt''s the ruby installed by rvm. Maybe I should start over. If I uninstall rvm will that mean I get rid of the installed rvm gems as well? I presume so. Can I just delete the .rvm directory? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I recently had to reinstall rvm when I was upgrading from rails 3.0.0 to rails 3.0.3 (maybe too harsh but it worked), so in order to remove the cached gems (on a single user install), I removed all the stuff in $HOME/.rvm/gems Btw, I don''t think you should''ve used sudo in the first place so maybe just doing a fresh single user install without sudo will help you. AFAIK, deleting .rvm is the recommended way on rvm''s site to delete a single user install. Martin On Dec 1, 10:45 am, Paul Bergstrom <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Chris Lemcke wrote in post #965274: > > > Did you install rvm using sudo? If you sudo install it, it''ll make it > > so you have to use sudo to install any gems. If you want to tell which > > ruby you''re running (on a mac) type: > > I can''t remember but I don''t think so. I stand as owner for the .rvm > directory. > > > which ruby > > > shouldn''t be /usr/bin/ruby > > It''s the ruby installed by rvm. > > Maybe I should start over. If I uninstall rvm will that mean I get rid > of the installed rvm gems as well? I presume so. Can I just delete the > .rvm directory? > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Paul Bergstrom wrote in post #965326:> Maybe I should start over. If I uninstall rvm will that mean I get rid > of the installed rvm gems as well? I presume so. Can I just delete the > .rvm directory?AFAIK everything related to RVM is stored inside ~/.rvm. I''ve reinstalled before by simply deleting the directory and reinstalling. If you want to know details about your RVM environment use... rvm info It will tell you where to find the gem folder and exactly what gemset you''re using. All of this information can be found in the RVM docs on their web site. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Wed, Dec 1, 2010 at 11:16 AM, Robert Walker <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Paul Bergstrom wrote in post #965326: > > Maybe I should start over. If I uninstall rvm will that mean I get rid > > of the installed rvm gems as well? I presume so. Can I just delete the > > .rvm directory? > > AFAIK everything related to RVM is stored inside ~/.rvm. I''ve > reinstalled before by simply deleting the directory and reinstalling. >I think this is right... also I would recommend you trying to use gemsets -- I have found that making a gemset for each of my apps has been working nicely, and makes them easy to find, i.e. .rvm/gems/ruby-1.9.2-p0@wavelineup3/gems Where wavelineup3 is the gemset I created under ruby-1.9.2-p0 installation for one of my apps. See: http://rvm.beginrescueend.com/gemsets/creating/> > If you want to know details about your RVM environment use... > > rvm info > > It will tell you where to find the gem folder and exactly what gemset > you''re using. All of this information can be found in the RVM docs on > their web site. > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Robert Walker wrote in post #965446:> Paul Bergstrom wrote in post #965326: >> Maybe I should start over. If I uninstall rvm will that mean I get rid >> of the installed rvm gems as well? I presume so. Can I just delete the >> .rvm directory? > > AFAIK everything related to RVM is stored inside ~/.rvm. I''ve > reinstalled before by simply deleting the directory and reinstalling. >I was able to delete all in my previous location. Now I can start over using rvm.> If you want to know details about your RVM environment use... > > rvm info > > It will tell you where to find the gem folder and exactly what gemset > you''re using. All of this information can be found in the RVM docs on > their web site.Thanks. Everything seems to be ok now, kept in rvm. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
David Kahn wrote in post #965487:> I think this is right... also I would recommend you trying to use > gemsets --Yes, I''ve realized that''s the way to go. Trying to figure out how to do it. Thanks. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Paul Bergstrom wrote in post #965521:> David Kahn wrote in post #965487: > >> I think this is right... also I would recommend you trying to use >> gemsets -- > > Yes, I''ve realized that''s the way to go. Trying to figure out how to do > it. Thanks.Once you get your gemsets configured look into using .rvmrc files in your projects to automate the switching of your environment. rvm gemset create my_gemset rvm use 1.9.2@my_gemset my_project --> .rvmrc ------------------ rvm 1.9.2@my_gemset http://rvm.beginrescueend.com/workflow/rvmrc/ And don''t forget to set your default interpreter: http://rvm.beginrescueend.com/rubies/default/ -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Robert Walker wrote in post #965531:> > Once you get your gemsets configured look into using .rvmrc files in > your projects to automate the switching of your environment. > > rvm gemset create my_gemset > > rvm use 1.9.2@my_gemset > > my_project > --> .rvmrc > ------------------ > rvm 1.9.2@my_gemset > > http://rvm.beginrescueend.com/workflow/rvmrc/ > > And don''t forget to set your default interpreter: > > http://rvm.beginrescueend.com/rubies/default/Thanks. :-) -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Wed, Dec 1, 2010 at 2:58 PM, Robert Walker <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Paul Bergstrom wrote in post #965521: > > David Kahn wrote in post #965487: > > > >> I think this is right... also I would recommend you trying to use > >> gemsets -- > > > > Yes, I''ve realized that''s the way to go. Trying to figure out how to do > > it. Thanks. > > Once you get your gemsets configured look into using .rvmrc files in > your projects to automate the switching of your environment. > > rvm gemset create my_gemset > > rvm use 1.9.2@my_gemset > > my_project > --> .rvmrc > ------------------ > rvm 1.9.2@my_gemset >Nice! Then that is my next step.... and I am getting tired of typing rvm etc.... in every terminal window I open.> > http://rvm.beginrescueend.com/workflow/rvmrc/ > > And don''t forget to set your default interpreter: > > http://rvm.beginrescueend.com/rubies/default/ > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Besides rvm and the gem directory there I have a .gemrc in my home directory and a .gem directory. Not sure why I have it there. It stops my installation of Rails 3, complaining about permissions of the .gemrc. Is that something I''ve created or has it to do with Mac OS Snow Leopard? That is, can I delete them? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Paul Bergstrom wrote in post #965553:> Besides rvm and the gem directory there I have a .gemrc in my home > directory and a .gem directory. Not sure why I have it there. It stops > my installation of Rails 3, complaining about permissions of the .gemrc. > Is that something I''ve created or has it to do with Mac OS Snow Leopard? > That is, can I delete them?It sounds to me like you have permission issues with your home folder. Anything in your own home folder should be fully accessible by you. I don''t think this issue is directly related to rvm or RubyGems itself. I think you may have basic OS permission issues on your machine. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Robert Walker wrote in post #965736:> It sounds to me like you have permission issues with your home folder. > Anything in your own home folder should be fully accessible by you. I > don''t think this issue is directly related to rvm or RubyGems itself. I > think you may have basic OS permission issues on your machine.True. Got it working now. I removed everything and reinstalled rvm. No complaints about permissions anymore. Now I''m on track with Rails 3. :-) -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.