TooManyCooks
TooManyCooks

Reputation: 497

Where can I download ruby on rails?

Might sound like a stupid question I guess but rubyonrails.org is just an advert right now, which isn't a good sign.

Upvotes: 0

Views: 224

Answers (8)

darcy
darcy

Reputation: 465

You can find the rails gems and download here: http://rubyforge.org/frs/?group_id=307

Upvotes: 0

Reuben Mallaby
Reuben Mallaby

Reputation: 5767

First you need to download Ruby www.ruby-lang.org Rails is a Ruby gem, so after installing Ruby, in a console you would enter gem install rails

Check out http://guides.rails.info/3_0_release_notes.html#orm-abstraction-and-action-pack-interface to get started with the latest beta release of Rails 3

Or http://www.railstutorial.org/book#sec:up_and_running or similar for basics on Rails 2.X

Upvotes: 0

zetetic
zetetic

Reputation: 47548

Or if you have Rubygems installed:

gem install rails

Upvotes: 1

Donut
Donut

Reputation: 112835

Looks like the site is currently having problems with its domain registrar, see here. Hopefully they should be resolved before too long and these links should work.

Upvotes: 0

Matt Briggs
Matt Briggs

Reputation: 42218

install rubygems, they type "gem install rails" from the commandline. There were some domain name issues with the hosting provider today, should be cleared up in the next few hours.

Upvotes: 3

rlb.usa
rlb.usa

Reputation: 15041

You're right, they are down (today?).

Upvotes: 1

kingjeffrey
kingjeffrey

Reputation: 15290

http://rubyonrails.org

Except that they are having some domain registration problems today. It should be back up within 24 hours.

Until that is back up, it looks like http://rubyonrails.com will work for you.

See http://twitter.com/dhh

Upvotes: 6

Related Questions