mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #25130 from xhpwn/master
Improved commands in README with markdown formatting
This commit is contained in:
commit
c5b766a9a2
2 changed files with 5 additions and 5 deletions
|
@ -121,8 +121,8 @@ class Build
|
|||
def env
|
||||
if activesupport? && !isolated?
|
||||
# There is a known issue with the listen tests that causes files to be
|
||||
# incorrectly GC'ed even when they are still in-use. The current is to
|
||||
# only run them in isolation to avoid randomly failing our test suite.
|
||||
# incorrectly GC'ed even when they are still in-use. The current solution
|
||||
# is to only run them in isolation to avoid randomly failing our test suite.
|
||||
{ 'LISTEN' => '0' }
|
||||
else
|
||||
{}
|
||||
|
|
|
@ -35,17 +35,17 @@ can read more about Action Pack in its {README}[link:files/actionpack/README_rdo
|
|||
|
||||
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 <tt>--help</tt> or <tt>-h</tt> for options.
|
||||
|
||||
|
|
Loading…
Reference in a new issue