Reputation: 609
How do I install Ruby on Rails in my PC? What files do I need to download and what is the installation procedure?
Upvotes: 1
Views: 333
Reputation: 13438
cmd
. Try ruby -v
and gem -v
to check for installed Ruby and RubyGems and ensure they work;gem install rails
and check it using rails -v
;rails myapp
;cd myapp
, run script/server
, and develop, develop, develop.Upvotes: 1