aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.