Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Warnings removed for "assert_match /" Please do | Arun Agrawal | 2011-09-04 | 1 | -3/+3 | |
| | | | | not add more.! | |||||
* | Improve formatting of route to Rack application in rake routes. | Hendy Tanata | 2011-07-17 | 1 | -0/+21 | |
| | | | | | | | | | | This route: match 'foo/:id' => RackApp, :id => /[A-Z]\d{5}/ is shown as: /foo/:id(.:format) RackApp {:id=>/[A-Z]\d{5}/} | |||||
* | Better formatting of route requirements in rake:routes. | Hendy Tanata | 2011-07-16 | 1 | -2/+65 | |
| | | | | | | | | | | Previously it was: {:controller=>"photos", :action=>"show", :id=>/[A-Z]\d{5}/} Now it becomes: photos#show {:id=>/[A-Z]\d{5}/} | |||||
* | Don't raise on mass assignment for test | José Valim | 2011-07-07 | 1 | -6/+15 | |
| | ||||||
* | Add test to rake test for error messages | Wen-Tien Chang | 2011-06-30 | 1 | -0/+26 | |
| | ||||||
* | Solve the RAILS_ENV problem in the railties tests in a more generic way | Jon Leighton | 2011-06-06 | 1 | -1/+5 | |
| | ||||||
* | Parenthesize arguments when the first one is a Regexp literal. | Sebastian Martinez | 2011-05-23 | 1 | -9/+9 | |
| | | | | This fixes 'warning: ambiguous first argument; put parentheses or even spaces'. | |||||
* | Add test to verify production rake tasks flush logger on exit | Jason Rudolph | 2011-05-06 | 1 | -0/+13 | |
| | ||||||
* | Display custom asset routes in `rake routes` | Peter Suschlik | 2011-05-05 | 1 | -0/+9 | |
| | ||||||
* | fix db:fixtures:load with FIXTURES specified [#6061 state:resolved] | John Hawthorn | 2011-02-06 | 1 | -0/+17 | |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | |||||
* | Add test cases for model and migration generators which use `change` method. | Prem Sichanugrist | 2011-01-04 | 1 | -0/+19 | |
| | ||||||
* | Ensure that initializers are executed before loading rake tasks | Piotr Sarnacki | 2010-11-18 | 1 | -0/+16 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Strip regexp anchors from rake routes output [#5934 state:resolved] | Andrew White | 2010-11-09 | 1 | -0/+9 | |
| | ||||||
* | Fix typo and add sanity test for code statistics rake task. | Emilio Tagua | 2010-09-24 | 1 | -1/+6 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -1/+1 | |
| | | | | 's/[ \t]*$//' -i {} \;) | |||||
* | Avoid calls to Rails::Application since this is not the official API. | José Valim | 2010-07-01 | 1 | -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é Valim | 2010-06-19 | 1 | -1/+1 | |
| | ||||||
* | The rake task :environment now loads config/environment.rb instead of ↵ | José Valim | 2010-04-29 | 1 | -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é Valim | 2010-04-26 | 1 | -0/+23 | |
specified in railties/engines/rails. [#4471 state:resolved] |