aboutsummaryrefslogtreecommitdiffstats
path: root/railties/README
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-12 16:14:20 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-12 16:14:20 +0000
commit8e1f1ee44241838c2b701ad2622d98c9c41ea268 (patch)
tree2e9613082d40152c0303f5b95bdd238cd7a1b36f /railties/README
parentb141bdbb32cb58e493e6f52e4f1baa2a9d28680d (diff)
downloadrails-8e1f1ee44241838c2b701ad2622d98c9c41ea268.tar.gz
rails-8e1f1ee44241838c2b701ad2622d98c9c41ea268.tar.bz2
rails-8e1f1ee44241838c2b701ad2622d98c9c41ea268.zip
Moved require_association to associations.rb and added methods for resetting the inheritable attributes on subclasses
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@125 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/README')
-rw-r--r--railties/README12
1 files changed, 5 insertions, 7 deletions
diff --git a/railties/README b/railties/README
index 4702f8a6c8..c8446e4e55 100644
--- a/railties/README
+++ b/railties/README
@@ -34,15 +34,13 @@ link:files/vendor/actionpack/README.html.
* Apache 1.3.x or 2.x (or any FastCGI-capable webserver with a
mod_rewrite-like module)
-* FastCGI (or mod_ruby) for production performance (CGI is used for
- development)
+* FastCGI (or mod_ruby) for better performance on Apache
== Getting started
-1a. Setup Apache for the Rails application (see "Example for Apache conf")
-1b. Run the WEBrick servlet: <tt>ruby public/dispatch.servlet --help</tt>
-2. Go to http://rails/ (or whatever is your ServerName) and check
- that you get the "Congratulations, you're on Rails!" screen
+1. Run the WEBrick servlet: <tt>ruby public/dispatch.servlet</tt>
+ (run with --help for options)
+2. Go to http://localhost:3000/ and get "Congratulations, you've put Ruby on Rails!"
3. Follow the guidelines on the "Congratulations, you're on Rails!" screen
@@ -50,7 +48,7 @@ link:files/vendor/actionpack/README.html.
<VirtualHost *:80>
ServerName rails
- DocumentRoot /path/tapplication/public/
+ DocumentRoot /path/application/public/
ErrorLog /path/application/log/apache.log
<Directory /path/application/public/>