Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/astechedu/rails

RubyOnRails Framework
https://github.com/astechedu/rails

rails-application rails-tutorial ruby ruby-on-rails rubyonrails

Last synced: 3 days ago
JSON representation

RubyOnRails Framework

Awesome Lists containing this project

README

        

# Rials Installation

To develop a web application using Ruby on Rails Framework, you need to install the following software −

Ruby
The Rails Framework
A Web Server
A Database System

Rails Installation on Windows

Step 1: Check Ruby Version. First, check if you already have Ruby installed. ...
Step 2: Install Ruby
Step 3: Install Rails
Step 4: Check Rails Version

# Step 1: Check Ruby Version

ruby -v
gem --version

# Step 2: Install Ruby

Download rubyinstaller-2.2.2.x.exe (According to requirement)

# Step 3: Install Rails

C:\> gem install rails
C:\> rails --version

# Step 4: Check Rails Version

C:\> rails -v

## Creating the Blog Application

C:\> rails new blog
C:\> cd blog

## Starting up the Web Server

C:\> bin/rails server

OR

Read Document RubyOnRails Framework Installation

:+1: