From 6a75102e02d5248b5095890061c71dd52b992d53 Mon Sep 17 00:00:00 2001 From: Mo Al Amin Date: Tue, 28 Nov 2017 22:54:55 -0500 Subject: [PATCH] Made changes suggested by agnivade. --- pages/common/rails.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pages/common/rails.md b/pages/common/rails.md index 2d33d31f6..3e7d39e86 100644 --- a/pages/common/rails.md +++ b/pages/common/rails.md @@ -1,23 +1,23 @@ # rails -> Ruby on Rails, or Rails, is a server-side MVC framework written in Ruby under the MIT License. +> A server-side MVC framework written in Ruby + +- Create a new rails project: + +`rails new "{{project_name}}"` + +- Start local server for current project on port 3000: + +`rails server` + +- Start local server for current project on a specified port: + +`rails server -p "{{port}}"` + +- Open console to interact with application from command line: + +`rails console` - Check current version of rails: `rails --version` - -- Create a new rails project: - -`rails new "{{name_of_project}}"` - -- Start local server for current project on port 3000 (while in projects root directory): - -`rails server` - -- Start local server for current project on a specified port (while in projects root directory): - -`rails server -p "{{port_number}}"` - -- Open console to interact with applicaiton from command line (while in projects root directory): - -`rails console`