If you are only interested in the config files, those are discussed usually throughout a Rails book, such as database.yml in the introduction chapter, and routes.rb in the Routing chapter.
The other important ones are: environment.rb
and the 3 files under environments
folder, one for each of production
, development
, and test
. These six files are some of the most often used ones.
A Rails Guide section that talks about config is:
http://guides.rubyonrails.org/configuring.html
It may be good to learn it step by step to get a good foundation. A free online tutorial is at
http://railstutorial.org/book
http://railstutorial.org/
There are lots of high quality Ruby on Rails screencast too:
http://railscasts.com/
http://rubyonrails.org/screencasts
To get a complete folder from GitHub, you can first install git
, and then do a
git clone http://github.com/nex3/haml.git
and you will see a new folder in the current directory on your hard drive, with everything in the project in that folder.