honey ruby
2011-Dec-26 06:23 UTC
Documentation to Installation Ruby on rails on Ubuntu 11.04
hey can any one help me out in install the ruby on rails on ubuntu 11.04. i need documentation how to do this i am new bee for ubutu . Thanks in advance -- 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.
Gautam Pai
2011-Dec-26 08:33 UTC
Re: Documentation to Installation Ruby on rails on Ubuntu 11.04
check this link. It has worked for me on ubuntu 10.04, 10.10, 11.04 and 11.10 You might want to install ruby version 1.9.3 though. http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/ Gautam Pai On Mon, Dec 26, 2011 at 11:53 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> hey can any one help me out in install the ruby on rails on ubuntu > 11.04. i need documentation how to do this i am new bee for ubutu . > > > > Thanks in advance > > -- > 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 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.
Vell
2011-Dec-26 16:08 UTC
Re: Documentation to Installation Ruby on rails on Ubuntu 11.04
Is this for a development environment? or a production environment? If it development then you can use the following steps to install: 1. install RVM (single user) -- http://beginrescueend.com/rvm/install/ -- Follow the directions carefully. 2. Use RVM to install the ruby environment that you want. -- rvm install 1.9.3 (as an example) --This also takes a while to compile and install rvm use 1.9.3 rvm --default use 1.9.3 3. Install rails on that rvm installation -- gem install rails -- no need for sudo with rvm that should have your dev envrionment up and running. If you need a production setup I can post the steps that I used that I had to compile from a few places as well as help from this forum (I am also new to Ubuntu). -- 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.