Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge commit 'mainstream/master' | Pratik Naik | 2009-04-30 | 28 | -243/+550 |
|\ | |||||
| * | Work around Float faux precision | Jeremy Kemper | 2009-04-30 | 3 | -15/+15 |
| | | |||||
| * | Prefer behavior check to RUBY_VERSION to catch 1.8 backports | Jeremy Kemper | 2009-04-29 | 3 | -5/+5 |
| | | |||||
| * | Refactor ActionView::Template | Yehuda Katz + Carl Lerche | 2009-04-27 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | ActionView::Template is now completely independent from template storage, which allows different back ends such as the database. ActionView::Template's only responsibility is to take in the template source (passed in from ActionView::Path), compile it, and render it. | ||||
| * | Use __send__ for BasicObject friendliness | Jeremy Kemper | 2009-04-26 | 1 | -1/+1 |
| | | |||||
| * | Now that we have a separate internal rails_to_json, use a separate circular ↵ | Jeremy Kemper | 2009-04-26 | 16 | -26/+27 |
| | | | | | | | | reference stack instead of sticking it in the options hash | ||||
| * | Convert encoding before escaping | Jeremy Kemper | 2009-04-26 | 1 | -5/+6 |
| | | |||||
| * | add JRuby-JDOM backend for XmlMini | Stephen Bannasch | 2009-04-26 | 2 | -0/+315 |
| | | | | | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
| * | Don't undefine object_id | Jeremy Kemper | 2009-04-26 | 1 | -1/+1 |
| | | |||||
| * | Privatize rails_to_json | Jeremy Kemper | 2009-04-26 | 16 | -157/+171 |
| | | |||||
| * | Extract json string escaping | Jeremy Kemper | 2009-04-26 | 2 | -38/+33 |
| | | |||||
| * | Only Object to_json alias is needed. Prefer nil options. | Jeremy Kemper | 2009-04-26 | 14 | -33/+12 |
| | | |||||
| * | Track object ids so the objects needn't respond to == | Jeremy Kemper | 2009-04-26 | 1 | -2/+2 |
| | | |||||
* | | Merge commit 'mainstream/master' | Pratik Naik | 2009-04-23 | 86 | -187/+423 |
|\| | |||||
| * | * Add pluggable JSON backends with support for the JSON gem. [rick] | rick | 2009-04-23 | 24 | -149/+285 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: ActiveSupport::JSON.backend = "JSONGem" All internal Rails JSON encoding is now handled by ActiveSupport::JSON.encode(). Use of #to_json is not recommended, as it may clash with other libraries that overwrite it. However, you can recover Rails specific functionality if you really want to use #to_json. gem 'json' ActiveSupport::JSON.backend = "JSONGem" class ActiveRecord::Base alias to_json rails_to_json end | ||||
| * | Fix dependencies revealed by testing in isolation | Jeremy Kemper | 2009-04-22 | 61 | -32/+127 |
| | | |||||
| * | new_callbacks core extensions | Jeremy Kemper | 2009-04-22 | 2 | -5/+8 |
| | | |||||
| * | Fix tests on 1.9 | Jeremy Kemper | 2009-04-22 | 2 | -1/+3 |
| | | |||||
* | | Merge commit 'mainstream/master' | Pratik Naik | 2009-04-23 | 169 | -3621/+3249 |
|\| | |||||
| * | Merge branch 'master' into cherry | Jeremy Kemper | 2009-04-22 | 2 | -1/+1 |
| |\ | | | | | | | | | | | | | Conflicts: activesupport/lib/active_support.rb | ||||
| | * | Opt in to JSON | Jeremy Kemper | 2009-04-22 | 2 | -1/+1 |
| | | | |||||
| * | | Opt in to Dependencies | Jeremy Kemper | 2009-04-22 | 7 | -10/+16 |
| |/ | |||||
| * | No more free lunch | Jeremy Kemper | 2009-04-22 | 4 | -4/+6 |
| | | |||||
| * | stdlib autoloads were hanging on 1.9.1 | Jeremy Kemper | 2009-04-22 | 3 | -9/+6 |
| | | |||||
| * | Divert CoreExtensions mention in docs | Jeremy Kemper | 2009-04-22 | 1 | -1/+1 |
| | | |||||
| * | Convert string extension modules to class reopens | Jeremy Kemper | 2009-04-22 | 6 | -291/+247 |
| | | |||||
| * | ActiveSupport.core_ext bridge util no longer used | Jeremy Kemper | 2009-04-22 | 1 | -10/+0 |
| | | |||||
| * | Switch last module core extension to class reopen | Jeremy Kemper | 2009-04-22 | 2 | -21/+6 |
| | | |||||
| * | Merge branch 'master' into cherry | Jeremy Kemper | 2009-04-20 | 33 | -95/+1402 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: activesupport/CHANGELOG activesupport/lib/active_support/core_ext/class/delegating_attributes.rb activesupport/lib/active_support/core_ext/hash/conversions.rb activesupport/lib/active_support/core_ext/module/attribute_accessors.rb activesupport/lib/active_support/core_ext/string/multibyte.rb activesupport/lib/active_support/core_ext/time/calculations.rb activesupport/lib/active_support/deprecation.rb | ||||
| | * | Clearer String#first and #last edge cases. Fix that 'foo'.first(0) == 'foo' ↵ | Jeremy Kemper | 2009-04-20 | 1 | -2/+14 |
| | | | | | | | | | | | | instead of '' | ||||
| | * | Treating strings as enumerable is deprecated | Jeremy Kemper | 2009-04-20 | 1 | -6/+6 |
| | | | |||||
| | * | Clearer String#first and #last edge cases. Fix that foo.first(0) == instead ↵ | Jeremy Kemper | 2009-04-17 | 2 | -3/+17 |
| | | | | | | | | | | | | of foo. | ||||
| * | | Move AS::Duration autoload to core/time/autoload | Jeremy Kemper | 2009-04-20 | 2 | -1/+1 |
| | | | |||||
| * | | Autoload I18n simple backend | Jeremy Kemper | 2009-04-17 | 3 | -5/+11 |
| | | | |||||
| * | | Autoload YAML and StringScanner for JSON decoding | Jeremy Kemper | 2009-04-17 | 1 | -2/+2 |
| | | | |||||
| * | | Autoload StringScanner for pre-1.9 String#each_char | Jeremy Kemper | 2009-04-17 | 1 | -1/+1 |
| | | | |||||
| * | | Remove rarely-used DRb cache store | Jeremy Kemper | 2009-04-17 | 4 | -24/+8 |
| | | | |||||
| * | | Eliminate Pathname extensions | Jeremy Kemper | 2009-04-17 | 4 | -30/+12 |
| | | | |||||
| * | | Dice up ActiveSupport::Deprecation | Jeremy Kemper | 2009-04-17 | 6 | -185/+204 |
| | | | |||||
| * | | Fix core/all require of adjacent core features | Jeremy Kemper | 2009-04-17 | 1 | -1/+1 |
| | | | |||||
| * | | Fix core/time require of DateTime core extensions | Jeremy Kemper | 2009-04-17 | 1 | -1/+1 |
| | | | |||||
| * | | Insert in sorted order to avoid TimeZone sort | Jeremy Kemper | 2009-04-07 | 1 | -2/+1 |
| | | | |||||
| * | | autoload Pathname | Jeremy Kemper | 2009-04-07 | 1 | -1/+5 |
| | | | |||||
| * | | Unneeded require | Jeremy Kemper | 2009-04-07 | 1 | -1/+0 |
| | | | |||||
| * | | Encapsulate date/time core extensions and constant autoloads in ↵ | Jeremy Kemper | 2009-03-31 | 6 | -13/+25 |
| | | | | | | | | | | | | active_support/core/time | ||||
| * | | Feature detection for Range#step extension | Jeremy Kemper | 2009-03-29 | 1 | -7/+10 |
| | | | |||||
| * | | Convert Range step and include extension modules to class reopen | Jeremy Kemper | 2009-03-29 | 3 | -58/+40 |
| | | | |||||
| * | | JRuby doesn't have UnboundMethod#name | Jeremy Kemper | 2009-03-29 | 1 | -1/+1 |
| | | | |||||
| * | | Explicit test dependencies | Jeremy Kemper | 2009-03-29 | 1 | -0/+1 |
| | | | |||||
| * | | Explicit BigDecimal extension dependency | Jeremy Kemper | 2009-03-29 | 1 | -1/+1 |
| | | |