ruby rake
ruby is make like utility.Make utility makes a install with all the options and config you want .Rake is similar to Make
within a rails application go to that directory ask the rake to tell about itself
rake -T
rake rails:freeze:gems
rake doc:rails : will install the rdoc for the rails –> the activerecord#find etc…in the html format in the doc folder
rdoc *.rb *.c -o I:\sites\music_library\doc would generate the ruby style documentation in html for all the .rb files and .c files and output to the -o directory mentioned.
gem install “rspec”
ruby script/plugin install svn://rubyforge.org/var/svn/rspec/tags/REL_1_0_8/rspec_on_rails
ruby script/generate rspec
rake spec