aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2009-12-02 14:34:42 +0800
committerPratik <pratiknaik@gmail.com>2009-12-03 23:22:28 +0800
commit02ae6d392786669d2d54946ad96e28903d5ef501 (patch)
tree2c6ab9739c209debf73922c6f51177e00134260a
parent716ac913af2a2a236134a45b512df780d286507b (diff)
downloadrails-02ae6d392786669d2d54946ad96e28903d5ef501.tar.gz
rails-02ae6d392786669d2d54946ad96e28903d5ef501.tar.bz2
rails-02ae6d392786669d2d54946ad96e28903d5ef501.zip
Adding the directory tree of a generated Rails app.
-rw-r--r--railties/README37
1 files changed, 37 insertions, 0 deletions
diff --git a/railties/README b/railties/README
index 6fd7436e3c..64dea89585 100644
--- a/railties/README
+++ b/railties/README
@@ -188,6 +188,43 @@ Currently works for mysql, postgresql and sqlite.
== Description of Contents
+The default directory structure of a generated Ruby on Rails applicartion:
+
+ |-- app
+ | |-- controllers
+ | |-- helpers
+ | |-- models
+ | `-- views
+ | `-- layouts
+ |-- config
+ | |-- environments
+ | |-- initializers
+ | `-- locales
+ |-- db
+ |-- doc
+ |-- lib
+ | `-- tasks
+ |-- log
+ |-- public
+ | |-- images
+ | |-- javascripts
+ | `-- stylesheets
+ |-- script
+ | `-- performance
+ |-- test
+ | |-- fixtures
+ | |-- functional
+ | |-- integration
+ | |-- performance
+ | `-- unit
+ |-- tmp
+ | |-- cache
+ | |-- pids
+ | |-- sessions
+ | `-- sockets
+ `-- vendor
+ `-- plugins
+
app
Holds all the code that's specific to this particular application.