How to install rails without gems?!

i have install ruby on my computer. but what if i want to install
rails manually without install gem first?!

What is Gem ?>…

On Tue, Mar 2, 2010 at 2:22 PM, janita kinsi [email protected] wrote:

For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.


Thanks:
Rajeev sharma

gems is a kind of packet manager for ruby’s 3rd party application. we
can download rails with that. but i can download it with that. is
there any other solution?

On Tue, Mar 2, 2010 at 12:52 AM, janita kinsi [email protected] wrote:

i have install ruby on my computer. but what if i want to install
rails manually without install gem first?!

Hi, you’ll need to download the sources from github.com. For example,
you’ll need to do the following:

$ git clone git://gitbub.com/rails/rails.git
$ cd rails
$ git submodule init
$ git submodule update
$ sudo rake install
$ rails -v

However, I would recommend embracing gems for the installation of 3rd
pary Ruby packages. Why? It simply makes life much easier for both
development and deployment. However, in the end, it’s your choice and
I wish you all the best.

Good luck,

-Conrad

well… thanks for the advice… :smiley: