2010-07-21 10:37:05 +00:00
|
|
|
= Railties -- Gluing the Engine to the Rails
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2011-08-25 06:00:43 +00:00
|
|
|
Railties is responsible for gluing all frameworks together. Overall, it:
|
2008-03-29 18:45:39 +00:00
|
|
|
|
2011-08-25 06:00:43 +00:00
|
|
|
* handles the bootstrapping process for a Rails application;
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2011-08-25 06:00:43 +00:00
|
|
|
* manages the +rails+ command line interface;
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2011-09-21 08:23:58 +00:00
|
|
|
* and provides the Rails generators core.
|
2004-11-24 01:04:44 +00:00
|
|
|
|
|
|
|
|
2010-07-21 10:37:05 +00:00
|
|
|
== Download
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2011-08-05 08:34:43 +00:00
|
|
|
The latest version of Railties can be installed with RubyGems:
|
2010-03-24 06:17:09 +00:00
|
|
|
|
2010-07-21 10:37:05 +00:00
|
|
|
* gem install railties
|
2010-03-24 06:17:09 +00:00
|
|
|
|
2011-10-15 19:42:00 +00: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 19:30:57 +00:00
|
|
|
== License
|
2010-03-24 06:17:09 +00:00
|
|
|
|
2011-12-23 05:12:08 +00:00
|
|
|
Railties is released under the MIT license:
|
|
|
|
|
|
|
|
* http://www.opensource.org/licenses/MIT
|
2010-06-04 23:56:01 +00:00
|
|
|
|
2011-10-15 19:30:57 +00:00
|
|
|
== Support
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2011-10-15 19:30:57 +00:00
|
|
|
API documentation is at
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2011-10-15 19:30:57 +00:00
|
|
|
* http://api.rubyonrails.org
|
|
|
|
|
2014-06-02 02:11:39 +00:00
|
|
|
Bug reports can be filed for the Ruby on Rails project here:
|
2011-10-15 19:30:57 +00:00
|
|
|
|
|
|
|
* https://github.com/rails/rails/issues
|
2011-03-03 17:50:28 +00:00
|
|
|
|
2014-06-02 02:11:39 +00:00
|
|
|
Feature requests should be discussed on the rails-core mailing list here:
|
|
|
|
|
|
|
|
* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
|
|
|
|
|