Reputation: 1197
I am new one for Ruby on Rails.
Please tell the requirements for Ruby on Rails.
I am using windows 8 (64bit) operating system.
And tell which SDK is suitable for RoR in windows8.
Upvotes: 3
Views: 5605
Reputation: 1
If you can track down an old version of instant rails...you may be ok! It seems to be somewhat self-contained and builds apps within its own little world! Unfortunately it has Ruby version 187, Instant Rails 2.0 It seems to work ok!
Upvotes: 0
Reputation: 6542
Refer Link : Rails Installer
Link One : Install ROR in Windows 8
Link Two : ROR for Windows 8
Avoid windows as your development server because windows does not have to much library support for Rails application.
Playing at Ubuntu with Rails is like driving Ferrari .... I am agree with @Pavling suggestion about VM having Ubuntu12.04 LTS. I am also using the same way.
Limitations In Running Rails on Windows
Upvotes: 0
Reputation: 5363
The ruby/rails/rubyinstaller has many bugs in Windows 8. Today still the best choice, but:
I made a video explaining how to install Rails 4 in Windows 8. It's in portuguese, but I believe that you can follow what it's on screen: http://www.youtube.com/watch?v=SPM9nwUQqZ0
Upvotes: 2
Reputation: 10285
You don't need any SDK. Install ruby itself:
This will also install RubyGems (which is the dependency manager) and finally install Rails using RubyGems:
gem install rails
And you're good to go!
Upvotes: 0