aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks
Commit message (Collapse)AuthorAgeFilesLines
* fixes Rake::RDocTask deprecation warnings from rake 0.9.0Vijay Dev2011-05-251-2/+2
|
* Removed ActiveSupport::SecureRandom in favour of SecureRandom from the ↵Jon Leighton2011-05-231-1/+1
| | | | standard library. (It has been deprecated in the 3-1-stable branch.)
* Replace references to ActiveSupport::SecureRandom with just SecureRandom, ↵Jon Leighton2011-05-231-1/+1
| | | | and require 'securerandom' from the stdlib when active support is required.
* 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
* Display custom asset routes in `rake routes`Peter Suschlik2011-05-051-1/+1
|
* Dont show the assets mount in rake routesDavid Heinemeier Hansson2011-05-041-1/+2
|
* Give assets access to asset_path during precompilationDavid Heinemeier Hansson2011-04-191-0/+3
|
* Add description to assets:precompile such that it shows up in rake -TDavid Heinemeier Hansson2011-04-181-1/+2
|
* Remove the ability for engines to serve assets from the public directory.José Valim2011-04-151-29/+0
|
* Fix tests.José Valim2011-04-151-1/+1
|
* Fix config.assets.precompile optionJoshua Peek2011-03-301-1/+1
|
* Precompile configured assetsJoshua Peek2011-03-291-1/+1
|
* Use sprockets precompileJoshua Peek2011-03-221-10/+2
|
* Add sprockets task to compile assetsJoshua Peek2011-03-211-0/+14
|
* Refactoring of application's task in engine.rakePiotr Sarnacki2010-12-191-20/+23
|
* Do not load all application's task in generated enginePiotr Sarnacki2010-12-191-0/+66
|
* Comment internal railties tasks.José Valim2010-10-141-1/+1
|
* Remove task for creating symlinks for railtiesPiotr Sarnacki2010-10-141-19/+0
|
* Added foo:install:assets task that copies assets from plugins public ↵Piotr Sarnacki2010-10-141-0/+28
| | | | | | | | | | | directory to application's public directory This is the most simple and naive approach: just copy every files from engine to app. The only exception is when file has changed, in that case developer will be asked if he wants to rename the field. There is no need to make this task more sophisticated as 3.1 will be shipped with better assets handling and it will be the default way to handle things.
* -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>
* Updated DOCS for engines and added a couple TODOs. Also, commented internal ↵José Valim2010-10-111-1/+1
| | | | railties rake tasks description.
* Fixed rake task description typoVesa Vänskä2010-10-081-1/+1
|
* Provide a cleaner syntax for paths configuration that does not rely on ↵José Valim2010-10-061-1/+1
| | | | method_missing.
* revision of typo: crytographically [#5566 state:resolved]ISHIKAWA Takayuki2010-09-071-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Added task for creating symlinks to engines' public directoriesPiotr Sarnacki2010-09-061-0/+20
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Remove deprecation warnings in railtiesCarlos Antonio da Silva2010-09-061-17/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Make rake routes gracefully handle routes with no nameSam Ruby2010-08-291-5/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Ensure we are not calling length on nil.José Valim2010-08-281-5/+4
|
* Read the route name directly from the route instead of looking it up in the ↵Andrew White2010-08-271-7/+1
| | | | | | named routes hash Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Remove rails info route from rake routes output [#5452 state:resolved]Andrew White2010-08-251-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Hide internal apps from rake routes [#5443 state:resolved]José Valim2010-08-241-1/+1
|
* Improve routes task code and print the application as :to => RackApp. [#5338 ↵José Valim2010-08-151-12/+24
| | | | state:resolved]
* make rake routes print the name of a Rack endpoint app [#5338 state:resolved]Mark Turner2010-08-151-3/+5
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-4/+4
| | | | 's/[ \t]*$//' -i {} \;)
* the main page of the API generated by the doc:rails task is READMEXavier Noria2010-07-301-1/+1
|
* 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>
* Change some missing README -> README.rdocSantiago Pastorino2010-07-221-8/+8
|
* Avoid calls to Rails::Application since this is not the official API.José Valim2010-07-012-2/+2
| | | | Your application should *always* reference your application const (as Blog::Application) and Rails.application should be used just internally.
* Cut down even further on rake -T noiseDavid Heinemeier Hansson2010-06-092-10/+41
|
* Cut down on tasks shown in rake -TDavid Heinemeier Hansson2010-06-095-21/+21
|
* Remove the laziness from the middleware stack.José Valim2010-06-031-1/+1
|
* 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.
* Add some comments related to Hash method check.José Valim2010-05-161-0/+3
|
* Fix Hash#index deprecated warning in 1.9.x [#4600 state:resolved]Aleksandr Koss2010-05-161-1/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* 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>
* Ensure application rake tasks and generators are loaded after the ones ↵José Valim2010-04-261-0/+2
| | | | specified in railties/engines/rails. [#4471 state:resolved]
* periods are not metacharacters within character classesXavier Noria2010-03-301-1/+1
|
* Remove if/else branch when generating the documentation since we are simply ↵José Valim2010-03-301-52/+37
| | | | inspecting the load path.
* Changed gem_path to yield the path found in $LOAD_PATH to a block.postmodern2010-03-301-15/+33
| | | | | | | * This allows gems not found in $LOAD_PATH to be safely ignored by the rails documentation task. Signed-off-by: José Valim <jose.valim@gmail.com>
* Fix syntax error and avoid the use of unless/else.Michael Koziarski2010-03-301-8/+9
|