Skip to content

Instantly share code, notes, and snippets.

@rbalman
Last active April 27, 2019 06:32
Show Gist options
  • Save rbalman/b94500b09d528c8a0fe3c5df1ea28ca2 to your computer and use it in GitHub Desktop.
Save rbalman/b94500b09d528c8a0fe3c5df1ea28ca2 to your computer and use it in GitHub Desktop.
created for the ROR training

Ruby on Rails Setup in Windows Machine 💻

Install gitbash

Download ⬇️

Verify 🚥

press Win(key) + R shortcut
type cmd then ENTER
type git then ENTER

Install ruby + devkit

Download ⬇️

Verify 🚥

press Win(key) + R shortcut
type cmd ENTER
type ruby --version ENTER

Install sqlite

Download ⬇️

Verify 🚥

press Win(key) + R shortcut
type cmd then ENTER
type sqlite3 then ENTER

Install an editor 📝

creating rails server

  • Open the cmdline
  • run following command
gem install --no-ri --no-rdoc rails
# verify
rails --version
  • Once the rails has installed let’s create first rails project
rails new blog

NOTE: when rails new command fails with sqlite error 🚫

Getting started with the rails 💪

Update this GIST

gist -u b94500b09d528c8a0fe3c5df1ea28ca2 setup.org
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment