download and install ruby
-------------------------
rubyinstaller-2.1.6-x64
(check all options)
test ruby version
-----------------
ruby -v
ruby 2.1.6p336 (2015-04-13 revision 50298) [x64-mingw32]
to install DevKit
-----------------
download it, run it to extract it somewhere (permanent).
then cd to it, run ruby dk.rb init and ruby dk.rb install
to bind it to ruby installations in your path
extract to C:\DevKit
edit C:\DevKit\config.yml
and add ruby path - C:/Ruby21-x64
install rails
-------------
gem install rails
test rails version
------------------
rails -v
Rails 4.2.1
make a rubyonrails project
--------------------------
rails new path/to/your/new/application
run rubyonrails
-------------------
cd path/to/your/new/application
rails server
http://localhost:3000
to install missing gems
-----------------------
bundle install
to see where a bundled gem is installed
----------------------------------------
bundle show sqlite3