diff options
author | Xavier Noria <fxn@hashref.com> | 2015-11-29 01:59:42 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2015-11-29 01:59:42 +0100 |
commit | 127a87cf6569f02d3e1b377b23e075e4dcecaac8 (patch) | |
tree | 8f20810d15f5edc11a363a976f6f690c94b5ad3a | |
parent | 312485f3e88af3966b586275ae5097198bfef6a0 (diff) | |
parent | c395a53081a8419784bae6d59d36cd32fef3b8a1 (diff) | |
download | rails-127a87cf6569f02d3e1b377b23e075e4dcecaac8.tar.gz rails-127a87cf6569f02d3e1b377b23e075e4dcecaac8.tar.bz2 rails-127a87cf6569f02d3e1b377b23e075e4dcecaac8.zip |
Merge pull request #22443 from Wasserschlange/added_dollarsign_to_readme
Added dollarsign to the README.md for consistancy [ci skip]
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -46,18 +46,18 @@ and may also be used independently outside Rails. 1. Install Rails at the command prompt if you haven't yet: - gem install rails + $ gem install rails 2. At the command prompt, create a new Rails application: - rails new myapp + $ rails new myapp where "myapp" is the application name. 3. Change directory to `myapp` and start the web server: - cd myapp - rails server + $ cd myapp + $ rails server Run with `--help` or `-h` for options. |