aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake_test.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix typo and add sanity test for code statistics rake task.Emilio Tagua2010-09-241-1/+6
| | | | 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-1/+1
| | | | 's/[ \t]*$//' -i {} \;)
* Avoid calls to Rails::Application since this is not the official API.José Valim2010-07-011-2/+2
| | | | Your application should *always* reference your application const (as Blog::Application) and Rails.application should be used just internally.
* Clear DescendantsTracker on each request.José Valim2010-06-191-1/+1
|
* The rake task :environment now loads config/environment.rb instead of ↵José Valim2010-04-291-0/+14
| | | | initializing the application on its own. This fixes [#4492 state:resolved] and also avoids the application being initialized twice in some rake tasks.
* Ensure application rake tasks and generators are loaded after the ones ↵José Valim2010-04-261-0/+23
specified in railties/engines/rails. [#4471 state:resolved]