Created
August 30, 2010 04:50
-
-
Save amokan/557022 to your computer and use it in GitHub Desktop.
my rails3 setup for windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install ruby 1.9.2-p0 - http://rubyforge.org/frs/download.php/72170/rubyinstaller-1.9.2-p0.exe | |
install documentation - http://rubyforge.org/frs/download.php/72161/ruby-1.9.2-p0-doc-chm.7z | |
download and extract devkit to c:\DevKit\ - http://github.com/downloads/oneclick/rubyinstaller/DevKit-4.5.0-20100819-1536-sfx.exe | |
setup devkit (http://wiki.github.com/oneclick/rubyinstaller/development-kit) | |
-command line into C:\DevKit and verify rubygems: gem update --system | |
-init devkit via dk.rb: ruby dk.rb init | |
-check config.yml file for path: ruby dk.rb review | |
-install devkit: ruby dk.rb install | |
(optional) verify install: gem install rdiscount --platform=ruby | |
:ruby -rubygems -e "require 'rdiscount'; puts RDiscount.new('**Hello RubyInstaller**').to_html" | |
install rails3: gem install rails --version 3.0.0 | |
install sqlite: gem install sqlite3-ruby | |
install heroku: gem install heroku | |
download sqlite dll and copy into C:\Ruby192\bin - http://sqlite.org/sqlitedll-3_7_2.zip | |
download sqlite exe and copy into C:\Ruby192\bin - http://www.sqlite.org/sqlite-3_6_23_1.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment