Installing Ruby on Rails on Windows April 28, 2009
Posted by artiko in: Software , Web , Windows , trackbackInstalling Ruby and Rails on Windows is as easy as on Linux and MacOS. It only requires a few steps described below:
- first enter the site Ruby Forge , download the latest version of Ruby and install it,
- then pulls Ruby Gems , unpack and install, the best in the default path C: \ ruby
- Now install Rails open command line and typing:
gem install rails --include-dependencies
At this point we have already installed and running Rails framework. We can verify that it works, we can create a folder for testing purposes (for example, C: \ railsApp), at the command prompt to go to him and call the command:
rails testApp
then go to the directory created and type TestApp
ruby script/server .
Now we can open a browser and type the address http://localhost:3000/ . If all goes well we should see the new project homepage.




Comments »
[...] Installing Redmine on Windows 30 March 2009 Posted by artiko in Software, Web, Windows. Tags: Redmine, Ruby on Rails, Software, Windows trackback Due to the project this week I was faced with, as it turned out a simple task of installing Redmine on a machine with Windows XP Professional. Redmine is a web-based application supporting project management, team communication, creating a wiki, login time, integration with the repository and a few other useful things. It is written in Rubby on Rails framework, therefore, to run it we need to be installed on the machine. If you have not we recommend will proceed according to this description. [...]