diff options
author | Sandip Ransing <sandip@joshsoftware.com> | 2012-04-04 02:38:37 +0530 |
---|---|---|
committer | Sandip Ransing <sandip@joshsoftware.com> | 2012-04-04 02:38:37 +0530 |
commit | ecb4a649c2a9548a3e4725663c295b164c73a678 (patch) | |
tree | 44b9368847c6dadbe17fec83dc1045f9736f2511 /guides/source/getting_started.textile | |
parent | 0a35acb8b89603a3135852742f206af82ed61b57 (diff) | |
download | rails-ecb4a649c2a9548a3e4725663c295b164c73a678.tar.gz rails-ecb4a649c2a9548a3e4725663c295b164c73a678.tar.bz2 rails-ecb4a649c2a9548a3e4725663c295b164c73a678.zip |
typo mistake fixed
correction to server stop statement added
Diffstat (limited to 'guides/source/getting_started.textile')
-rw-r--r-- | guides/source/getting_started.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index 0a85c84155..d12606c5de 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -152,11 +152,11 @@ $ rails server TIP: Compiling CoffeeScript to JavaScript requires a JavaScript runtime and the absence of a runtime will give you an +execjs+ error. Usually Mac OS X and Windows come with a JavaScript runtime installed. Rails adds the +therubyracer+ gem to Gemfile in a commented line for new apps and you can uncomment if you need it. +therubyrhino+ is the recommended runtime for JRuby users and is added by default to Gemfile in apps generated under JRuby. You can investigate about all the supported runtimes at "ExecJS":https://github.com/sstephenson/execjs#readme. -This will fire up an instance of a webserver built into Ruby called WEBrick by default. To see your application in action, open a browser window and navigate to "http://localhost:3000":http://localhost:3000. You should see Rails' default information page: +This will fire up an instance of a webserver built into Ruby called WEBrick by default. To see your application in action, open a browser window and navigate to "http://localhost:3000":http://localhost:3000. You should see the Rails default information page: !images/rails_welcome.png(Welcome Aboard screenshot)! -TIP: To stop the web server, hit Ctrl+C in the terminal window where it's running. In development mode, Rails does not generally require you to stop the server; changes you make in files will be automatically picked up by the server. +TIP: To stop the web server, hit Ctrl+C in the terminal window where it's running. In development mode, Rails does not generally require you to restart the server; changes you make in files will be automatically picked up by the server. The "Welcome Aboard" page is the _smoke test_ for a new Rails application: it makes sure that you have your software configured correctly enough to serve a page. You can also click on the _About your application’s environment_ link to see a summary of your application's environment. |