2010-07-21 06:37:05 -04:00
|
|
|
= Railties -- Gluing the Engine to the Rails
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-08-25 02:00:43 -04:00
|
|
|
Railties is responsible for gluing all frameworks together. Overall, it:
|
2008-03-29 14:45:39 -04:00
|
|
|
|
2011-08-25 02:00:43 -04:00
|
|
|
* handles the bootstrapping process for a Rails application;
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-08-25 02:00:43 -04:00
|
|
|
* manages the +rails+ command line interface;
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-09-21 04:23:58 -04:00
|
|
|
* and provides the Rails generators core.
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
|
2010-07-21 06:37:05 -04:00
|
|
|
== Download
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-08-05 04:34:43 -04:00
|
|
|
The latest version of Railties can be installed with RubyGems:
|
2010-03-24 02:17:09 -04:00
|
|
|
|
2010-07-21 06:37:05 -04:00
|
|
|
* gem install railties
|
2010-03-24 02:17:09 -04:00
|
|
|
|
2011-10-15 15:42:00 -04:00
|
|
|
Source code can be downloaded as part of the Rails project on GitHub
|
|
|
|
|
|
|
|
* https://github.com/rails/rails/tree/master/railties
|
|
|
|
|
2011-10-15 15:30:57 -04:00
|
|
|
== License
|
2010-03-24 02:17:09 -04:00
|
|
|
|
2011-12-23 00:12:08 -05:00
|
|
|
Railties is released under the MIT license:
|
|
|
|
|
|
|
|
* http://www.opensource.org/licenses/MIT
|
2010-06-04 19:56:01 -04:00
|
|
|
|
2011-10-15 15:30:57 -04:00
|
|
|
== Support
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-10-15 15:30:57 -04:00
|
|
|
API documentation is at
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-10-15 15:30:57 -04:00
|
|
|
* http://api.rubyonrails.org
|
|
|
|
|
|
|
|
Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:
|
|
|
|
|
|
|
|
* https://github.com/rails/rails/issues
|
2011-03-03 12:50:28 -05:00
|
|
|
|