aboutsummaryrefslogtreecommitdiffstats
path: root/railties/README
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-15 09:49:33 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-15 09:49:33 +0000
commit4f4aa4a13b69d85b6a91cf5e751d550f3d0e5a7a (patch)
tree4d5e0990d74b03d463f9373c9fc2c90ab7876980 /railties/README
parent05d580dffa4fc01bb1252a1b91d1abfb660b0af7 (diff)
downloadrails-4f4aa4a13b69d85b6a91cf5e751d550f3d0e5a7a.tar.gz
rails-4f4aa4a13b69d85b6a91cf5e751d550f3d0e5a7a.tar.bz2
rails-4f4aa4a13b69d85b6a91cf5e751d550f3d0e5a7a.zip
Mention app/apis and db directories in README. Closes #1616.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3042 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/README')
-rw-r--r--railties/README7
1 files changed, 7 insertions, 0 deletions
diff --git a/railties/README b/railties/README
index cd9d0ffe58..faaaa13b51 100644
--- a/railties/README
+++ b/railties/README
@@ -128,12 +128,19 @@ app/views
app/helpers
Holds view helpers that should be named like weblog_helper.rb.
+app/apis
+ Holds API classes for web services.
+
config
Configuration files for the Rails environment, the routing map, the database, and other dependencies.
components
Self-contained mini-applications that can bundle together controllers, models, and views.
+db
+ Contains the SQL dump of your development database. db/migrate contains all
+ the sequence of Migrations for your schema.
+
lib
Application specific libraries. Basically, any kind of custom code that doesn't
belong under controllers, models, or helpers. This directory is in the load path.