aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/benchmarker.rb
Commit message (Collapse)AuthorAgeFilesLines
* fixes in api docsVijay Dev2012-01-131-1/+1
|
* Remove trailing white-spacesGuillermo Iguaran2011-06-051-3/+3
|
* benchmarker and profiler now use the new performance testing tools (support ↵Gonçalo Silva2011-05-101-19/+28
| | | | for Rubinius and JRuby and high configurability)
* Remove `#among?` from Active SupportPrem Sichanugrist2011-04-131-1/+1
| | | | | | After a long list of discussion about the performance problem from using varargs and the reason that we can't find a great pair for it, it would be best to remove support for it for now. It will come back if we can find a good pair for it. For now, Bon Voyage, `#among?`.
* Change Object#either? to Object#among? -- thanks to @jamesarosen for the ↵David Heinemeier Hansson2011-04-121-1/+1
| | | | suggestion!
* Using Object#in? and Object#either? in various placesPrem Sichanugrist2011-04-111-1/+3
| | | | There're a lot of places in Rails source code which make a lot of sense to switching to Object#in? or Object#either? instead of using [].include?.
* The rake task :environment now loads config/environment.rb instead of ↵José Valim2010-04-291-0/+23
initializing the application on its own. This fixes [#4492 state:resolved] and also avoids the application being initialized twice in some rake tasks.