aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit 'mainstream/master'Pratik Naik2008-06-25161-1227/+1819
|\ | | | | | | | | | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/javascript_helper.rb activesupport/lib/active_support/dependencies.rb activesupport/lib/active_support/inflector.rb activesupport/lib/active_support/values/time_zone.rb
| * Include cache key in ModelNameJeremy Kemper2008-06-241-2/+3
| |
| * Performance: minor Array#to_param and #to_query speedupsJeremy Kemper2008-06-241-2/+3
| |
| * Revert "Check for mocha gem without requiring the lib. [#403 state:resolved]"Jeremy Kemper2008-06-231-2/+2
| | | | | | | | This reverts commit 4d5ac3f3d2e1667971752c9a4e536de1a5bec364.
| * Check for mocha gem without requiring the lib. [#403 state:resolved]Jeremy Kemper2008-06-221-2/+2
| |
| * Everything responds to #to_paramJeremy Kemper2008-06-211-3/+1
| |
| * Don't assume RubyProf constants are definedJeremy Kemper2008-06-201-5/+5
| |
| * Added block-handling to Enumerable#many? (Damian Janowski) [#452 state:resolved]David Heinemeier Hansson2008-06-201-1/+3
| |
| * true#to_param => true, so be sure to #to_s expanded cache keysJeremy Kemper2008-06-201-9/+9
| |
| * Tired of seeing <foo>/runJeremy Kemper2008-06-201-1/+1
| |
| * Don't profile GC runs/time by defaultJeremy Kemper2008-06-201-1/+1
| |
| * Fall back to #to_s for cache key expansionJeremy Kemper2008-06-201-1/+3
| |
| * Performance: add GC metrics for # of runs and total runtimeJeremy Kemper2008-06-181-10/+48
| |
| * Oops, include metric name in csv filenameJeremy Kemper2008-06-181-1/+1
| |
| * Performance: tweak unsupported metric error messageJeremy Kemper2008-06-181-1/+1
| |
| * Write benchmark output to separate files per test+metric. Support Lloyd ↵Jeremy Kemper2008-06-181-5/+35
| | | | | | | | Hilaiel's GC.heap_info patch for current heap size.
| * Added Array#second through Array#tenth as aliases for Array#[1] through ↵David Heinemeier Hansson2008-06-171-0/+45
| | | | | | | | Array#[9] [DHH]
| * process time for benchmarks (quicker), wall time for profiling (lower overhead)Jeremy Kemper2008-06-161-10/+14
| |
| * Merge branch 'master' of git@github.com:rails/railsJeremy Kemper2008-06-16137-109/+115
| |\
| | * Updated bundled TZInfo gem to version 0.3.9 for Ruby 1.9 compatJoshua Peek2008-06-14137-109/+115
| | |
| * | missed . joining rails version and git revisionJeremy Kemper2008-06-161-1/+1
| | |
| * | Metrics::Memory measures in fractional KB alsoJeremy Kemper2008-06-161-3/+3
| | |
| * | Extract environment. Hardcode some git info so I can start working with it now.Jeremy Kemper2008-06-161-8/+24
| | |
| * | Force runs to be an integer. Start and stop RubyProf in same scope. Expect ↵Jeremy Kemper2008-06-151-12/+21
| | | | | | | | | | | | memory measurements in fractional KB now instead of bytes. Convert object allocation measurements to integer. Wrap up measure_mode in Metric instance method.
| * | Delegate run_test to @harnessJeremy Kemper2008-06-151-3/+3
| | |
| * | Metrics::[] escues NameError only. Fix MODE typo.Jeremy Kemper2008-06-151-2/+2
| | |
| * | Extract Metric and Performer. Simplify and refactor.Jeremy Kemper2008-06-151-138/+212
| | |
| * | Pass printer class to output_filenameJeremy Kemper2008-06-141-8/+8
| | |
| * | Performance: integration test benchmarking and profiling. [Jeremy Kemper]Jeremy Kemper2008-06-141-0/+226
| |/
| * Change Enumberal#several? to Enumberal#many?David Heinemeier Hansson2008-06-131-1/+1
| |
| * Ruby 1.9 compat: instance_methods are symbols instead of strings. Use the ↵Jeremy Kemper2008-06-121-5/+6
| | | | | | | | quicker instance_method(sym) rescue false check.
| * Added test/do declaration style testing to ActiveSupport::TestCase [DHH via ↵David Heinemeier Hansson2008-06-121-1/+9
| | | | | | | | Jay Fields]
| * Revert "Ensure MemCacheStore is required when using CompressedMemCacheStore ↵David Heinemeier Hansson2008-06-121-2/+0
| | | | | | | | | | | | since they are lazy load now." This reverts commit dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669.
| * Revert "Lazy load cache and session stores"David Heinemeier Hansson2008-06-122-4/+6
| | | | | | | | This reverts commit 19895f087c338d8385dff9d272d30fb87cb10330.
| * Added Object#present? which is equivalent to !Object#blank? [DHH]David Heinemeier Hansson2008-06-121-0/+5
| |
| * Merge branch 'master' of git@github.com:rails/railsDavid Heinemeier Hansson2008-06-1213-50/+111
| |\
| | * Ensure MemCacheStore is required when using CompressedMemCacheStore since ↵Joshua Peek2008-06-121-0/+2
| | | | | | | | | | | | they are lazy load now.
| | * Performance: speed up Hash#except. [#382 state:resolved]Grant Hollingworth2008-06-111-3/+4
| | |
| | * Rubinious: setup/teardown override for miniunitJeremy Kemper2008-06-101-7/+31
| | |
| | * Rubinious: work around h[k] ||= v returning []= result instead of vJeremy Kemper2008-06-102-3/+15
| | |
| | * Lazy load cache and session storesPratik Naik2008-06-102-6/+4
| | |
| | * Performance: faster Object.subclasses_ofJeremy Kemper2008-06-081-8/+9
| | |
| | * No need to build a Set since we're iterating instead of checking for ↵Jeremy Kemper2008-06-071-4/+2
| | | | | | | | | | | | inclusion now
| | * Remove 1.9's String#chars alsoJeremy Kemper2008-06-061-13/+11
| | |
| | * Qualify Inflector in rdoc examples also. [#356 state:resolved]Jeremy Kemper2008-06-061-2/+2
| | |
| | * Move Class::ModelName to Active Support module core_extJeremy Kemper2008-06-062-0/+27
| | |
| | * Fix doc typo. Move extend self so it's more immediately obvious. Require ↵Jeremy Kemper2008-06-061-4/+4
| | | | | | | | | | | | inflections from load path.
| * | Added Enumberable#several? to encapsulate collection.size > 1 [DHH]David Heinemeier Hansson2008-06-121-0/+5
| |/
| * Renamed StringQuestioneer to StringInquirer.Joshua Peek2008-06-042-2/+2
| |
| * Namespaced StringQuestioneer under ActiveSupport.Joshua Peek2008-06-041-7/+9
| |