Reputation: 215
Could someone be kind enough to point me to a comprehensive manual (preferably a book) that would give me basic, step-by-step instructions to setting up and using ruby in a windows environment?
I'm a complete noob at Ruby, gems and Rails. Is it possible for me to get all-inclusive ground-up instructions on how to make web apps with Ruby in Windows?
So far I've read that rubyInstaller and Bash are a good way to use ruby in Windows; so inclusion of these tools would be a much appreciated bonus!
My biggest difficulty so far is simply getting bash set up so I can install gems and start coding apps against them (again I'm a complete noob!)
Also, what text editor/IDE for windows would be best for me to code in?
I would love an A-Z guide to installing Ruby/gems and making a Ruby-on-Rails app.
Thanks all!
Upvotes: 1
Views: 2860
Reputation: 6417
Well, personally I would suggest you to develop Ruby on Rails applications on a Mac or Linux machine. But if you really want it on Windows, there's a one-click installer for Ruby.
After installing it, you can install gems through the command prompt that comes with the installation. If however, you want a quick start with Ruby on Rails, I suggest you try out rails installer.
There are a lot of good beginner books for Ruby:
And for Rails:
Agile Web Development with Rails
As for the text editor, I wouldn't recommend heavy or expensive IDE's, especially when you're just starting out. I would suggest you try out notepad++ which is free and lightweight, or you can try sublime text 2, which has a free evaluation copy, it's a very nice editor and looks like TextMate for Mac.
Upvotes: 2