aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks/framework.rake
Commit message (Collapse)AuthorAgeFilesLines
* Introduce ./bin for your app's executables: bin/bundle, bin/rails, bin/rake. ↵Jeremy Kemper2013-01-061-5/+5
| | | | Executable scripts are versioned code like the rest of your app. To generate a stub for a bundled gem: 'bundle binstubs unicorn' and 'git add bin/unicorn'
* Use Ruby 1.9 Hash syntax in railtiesRobin Dupret2012-10-141-5/+5
|
* fix stylesheet template dirSugino Yasuhiro2012-06-091-1/+1
|
* Improve rails:template undefined LOCATION variable error message fixedRaghunadh2011-07-231-3/+3
|
* remove update:javascripts rake taskAkira Matsuda2011-05-131-7/+2
| | | | because javascript libraries are not bundled anymore, and create_javascript_files generator was already removed
* -j parameter added to rails new command.siong19872010-10-111-1/+1
| | | | | | | | Now you can start your apps with jquery with rails new myapp -j jquery, the default is still prototype [#5613 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Remove deprecation warnings in railtiesCarlos Antonio da Silva2010-09-061-17/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Fix app generator so that it uses the right app_name during rails:update ↵rohit2010-07-271-1/+1
| | | | | | rake task. [#5207 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com>
* Cut down on tasks shown in rake -TDavid Heinemeier Hansson2010-06-091-9/+9
|
* Removing Metal from Rails 3.wycats2010-06-031-1/+1
| | | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed.
* Added Rake task rails:templates:copy to copy templates for customization ↵Jeroen van Dijk + Rodrigo Urubatan2010-05-151-0/+22
| | | | | | [#4574 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Do not check for a valid const name in Rails 3.0 applications. [#4200 ↵José Valim2010-03-271-1/+2
| | | | state:resolved]
* rake tasks should use the new app generator path [#4257 state:resolved]Sebastian Martinez2010-03-231-2/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Deprecated framework rake tasks should exit with non-zero exit code [#4177 ↵Chris Griego2010-03-161-3/+3
| | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Also check if application is a valid constant in rake rails:update.José Valim2010-02-211-5/+11
|
* Deprecated freeze rake tasks and cleaned up annotations.rakeMikel Lindsaar2010-02-031-68/+7
|
* Rake tasks should load generators from new paths.José Valim2010-01-181-2/+2
|
* Fixes rake:template task [#3714 status:resolved]Rizwan Reza2010-01-171-2/+3
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* rails:update:configs updates boot.rb and the rest of config/*Jeremy Kemper2009-12-011-0/+1
|
* Reinstate rails:update:configs task removed in e1fdc8bJeremy Kemper2009-12-011-0/+5
|
* Fix rails:update:scriptsJeremy Kemper2009-12-011-1/+1
|
* Remove config.gem in favor of using the bundler. This makes config/boot.rb ↵Carl Lerche2009-10-161-5/+0
| | | | | | obsolete. The bundler library is at: http://github.com/wycats/bundler/ and is a rubygem.
* Deprecate RAILS_ROOT in favor of Rails.root (which proxies to the ↵Carl Lerche2009-10-161-4/+4
| | | | application's object root)
* Yank FCGI Handler from coreJoshua Peek2009-10-051-5/+0
| | | http://github.com/rails/fcgi_handler
* Move railties/lib/* into railties/lib/*Yehuda Katz + Carl Lerche2009-09-241-0/+133