Skip to main content

Rails on Windows 10 . A journey - Part 1

I have no experience with Ruby by keep hearing about RubyOnRails a lot when checking for server apps. I have some experience in Python/django/Postgres and want to see other options too.
Most of the installers are linux based but I wanted to try a pure windows experience without the linux shell for windows. I want to create a online appointment manager and reminder for my personal use.

This is the one that worked
http://railsinstaller.org/en

Installation was straight forward.

Following the article here
http://guides.rubyonrails.org/getting_started.html


RoR follows the MVC architecture. ( Model View Controller)

The model is the db schema
The View is the ruby based html
The controller is the main component which handles the application



Comments