aboutsummaryrefslogtreecommitdiffstats
path: root/railties/railties.gemspec
Commit message (Collapse)AuthorAgeFilesLines
...
* make turn a soft dependency. generate a Gemfile that contains turn and ↵Aaron Patterson2011-04-081-1/+0
| | | | require turn if it is available
* Gem::Specification#has_rdoc= is deprecated since rubygems 1.7.0Santiago Pastorino2011-04-021-1/+0
|
* Moved Turn activation/dependency to railtiesDavid Heinemeier Hansson2011-03-311-0/+1
|
* Add `config.force_ssl` configuration which will load `Rack::SSL` middleware ↵Prem Sichanugrist2011-03-271-0/+1
| | | | | | | | if set to true This will allow user to be able to force all requests to be under HTTPS protocol. This commit was a request from DHH. Special thanks to Josh Peek as well for making `Rack::SSL`.
* Update to latest thor.José Valim2010-11-041-1/+1
|
* Update to Thor 0.14.3.José Valim2010-10-041-1/+1
|
* Bump up some depsSantiago Pastorino2010-09-261-1/+1
|
* Bump thor version requirement.José Valim2010-09-241-1/+1
|
* Bump rake dependency to 0.8.4. [#5279 state:resolved]Aaron Suggs2010-08-241-1/+1
| | | | | | | This rake version adds the Rake::RDocTask#rdoc_task_name method, used in railties/lib/rails/tasks/documentation.rake Signed-off-by: José Valim <jose.valim@gmail.com>
* Update to latest thor.José Valim2010-07-261-1/+1
|
* Change some missing README -> README.rdocSantiago Pastorino2010-07-221-1/+1
|
* bump erubis version to 2.6.6 and thor version to 0.13.7Santiago Pastorino2010-07-021-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Update generators to use thor 0.13.6 with simpler source_root handling.José Valim2010-04-301-1/+1
|
* Update thor dependency to 0.13.5José Valim2010-04-291-1/+1
|
* moved rails binary to rails gem, so rubygems can find specific versions of ↵Felipe Rodrigues2010-04-121-3/+0
| | | | | | rails [#4382 state:resolved] Signed-off-by: wycats <wycats@gmail.com>
* Move railties/builtin into libJoshua Peek2010-03-201-1/+1
|
* Load RAILS_VERSION relative to the gemspec file.Stefan Penner2010-03-061-1/+1
|
* Read Rails version from a file instead of modifying the load path and doing ↵Bryan Helmkamp2010-03-041-5/+4
| | | | | | requires Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Wordsmith gem descriptionsJeremy Kemper2010-03-021-2/+2
|
* Leverage VERSION constants from gemspecs to avoid tedious updates when releasingBryan Helmkamp2010-03-021-3/+6
|
* Update thor dependency.José Valim2010-02-261-1/+1
|
* Add readme as method in Rails::Generators::Actions (as we had in 2.3)José Valim2010-02-171-1/+1
|
* Merge master.José Valim2010-02-171-1/+1
|
* Adding ruby version spec to all gemspec files to at least 1.8.7Mikel Lindsaar2010-02-081-0/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Bump git versions to 3.0.0.beta1 since we've releasedJeremy Kemper2010-02-051-3/+3
|
* Homogenize gemspecs and remove the deprecated autorequireDavid Heinemeier Hansson2010-02-031-21/+19
|
* Move to 3.0.0.betaDavid Heinemeier Hansson2010-02-031-3/+3
|
* Simplify descriptionDavid Heinemeier Hansson2010-02-031-2/+1
|
* No more vendored thor.José Valim2010-02-031-2/+3
|
* Break up rails and railties:Carlhuda2009-12-021-0/+28
* rails is now a metagem (gem install rails works as it does now) * railties includes the glue layer, so you can easily declare dependencies on railties, actionpack, and actionmailer and not get ActiveRecord's rake tasks, initializers, etc.