From f44a0b1d524064a2e919cd10d3013db680af9b17 Mon Sep 17 00:00:00 2001 From: RomD Date: Sat, 6 Feb 2010 17:18:10 +0100 Subject: fix usage examples and more to use new invocations Signed-off-by: Carl Lerche --- railties/README | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'railties/README') diff --git a/railties/README b/railties/README index 64dea89585..e4de4a5cb2 100644 --- a/railties/README +++ b/railties/README @@ -29,14 +29,14 @@ link:files/vendor/rails/actionpack/README.html. 1. At the command prompt, start a new Rails application using the rails command and your application name. Ex: rails myapp -2. Change directory into myapp and start the web server: script/server (run with --help for options) +2. Change directory into myapp and start the web server: rails server (run with --help for options) 3. Go to http://localhost:3000/ and get "Welcome aboard: You're riding the Rails!" 4. Follow the guidelines to start developing your application == Web Servers -By default, Rails will try to use Mongrel if it's installed when started with script/server, otherwise +By default, Rails will try to use Mongrel if it's installed when started with rails server, otherwise Rails will use WEBrick, the webserver that ships with Ruby. But you can also use Rails with a variety of other web servers. @@ -45,7 +45,7 @@ suitable for development and deployment of Rails applications. If you have Ruby getting up and running with mongrel is as easy as: gem install mongrel. More info at: http://mongrel.rubyforge.org -Other ruby web servers exist which can run your rails application, however script/server does +Other ruby web servers exist which can run your rails application, however rails server does not search for them or start them. These include {Thin}[http://code.macournoyer.com/thin/], {Ebb}[http://ebb.rubyforge.org/], and Apache with {mod_rails}[http://www.modrails.com/]. For production use, often a web/proxy server such as {Apache}[http://apache.org], {Nginx}[http://nginx.net/], {LiteSpeed}[http://litespeedtech.com/], {Lighttpd}[http://www.lighttpd.net/] or {IIS}[http://www.iis.net/] is @@ -168,22 +168,22 @@ model. Here you'll have all parts of the application configured, just like it is application is running. You can inspect domain models, change values, and save to the database. Starting the script without arguments will launch it in the development environment. -To start the console, just run script/console from the application directory. +To start the console, just run rails console from the application directory. Options: * Passing the -s, --sandbox argument will rollback any modifications made to the database. * Passing an environment name as an argument will load the corresponding environment. - Example: script/console production. + Example: rails console production. More information about irb can be found at link:http://www.rubycentral.com/pickaxe/irb.html == dbconsole -You can go to the command line of your database directly through script/dbconsole. +You can go to the command line of your database directly through rails dbconsole. You would be connected to the database with the credentials defined in database.yml. Starting the script without arguments will connect you to the development database. Passing an -argument will connect you to a different database, like script/dbconsole production. +argument will connect you to a different database, like rails dbconsole production. Currently works for mysql, postgresql and sqlite. == Description of Contents @@ -250,7 +250,7 @@ app/views/layouts app/helpers Holds view helpers that should be named like weblogs_helper.rb. These are generated - for you automatically when using script/generate for controllers. Helpers can be used to + for you automatically when using rails generate for controllers. Helpers can be used to wrap functionality for your views into methods. config @@ -277,7 +277,7 @@ script Helper scripts for automation and generation. test - Unit and functional tests along with fixtures. When using the script/generate scripts, template + Unit and functional tests along with fixtures. When using the rails generate scripts, template test files will be generated for you and placed in this directory. vendor -- cgit v1.2.3