| Commit message (Expand) | Author | Age | Files | Lines |
* | Moved all JSON core extensions into core_ext/object/json | Godfrey Chan | 2013-09-13 | 1 | -1/+1 |
* | refactor order hash test | Vipul A M | 2013-04-11 | 1 | -5/+1 |
* | Missing require extract_options | Akira Matsuda | 2013-01-31 | 1 | -0/+1 |
* | Ruby 2 compat. Hash[] now raises on bad elements rather than ignoring them. N... | Jeremy Kemper | 2012-10-06 | 1 | -1/+0 |
* | Don't test language-level exception messages | John Firebaugh | 2012-07-27 | 1 | -5/+1 |
* | use AS::TestCase as the base class | Aaron Patterson | 2012-01-05 | 1 | -1/+1 |
* | No need to require psych since require yaml does that. | Rafael Mendonça França | 2012-01-04 | 1 | -1/+0 |
* | No need to use rescue block to require psych | Rafael Mendonça França | 2012-01-04 | 1 | -13/+9 |
* | Initial pass at removing dead 1.8.x code from Active Support. | José Valim | 2011-12-20 | 1 | -9/+4 |
* | Make `ActiveSupport::OrderedHash` extractable when using `Array#extract_optio... | Prem Sichanugrist | 2011-09-03 | 1 | -0/+5 |
* | Fixes minor ruby 1.8 inconsistency | Andrew Radev | 2011-05-27 | 1 | -0/+23 |
* | Add missing requires | Santiago Pastorino | 2011-05-11 | 1 | -0/+1 |
* | indifferent access should recurse Hash subclasses | David Lee | 2011-05-08 | 1 | -0/+5 |
* | just < 1.9 is fine and 1.9.1 is not supported | Santiago Pastorino | 2011-02-03 | 1 | -3/+3 |
* | fix OrderedHash#each* methods to return Enumerators when called without a blo... | Gabriel Horner | 2011-02-03 | 1 | -0/+6 |
* | OrderedHash#each* methods return self like Hash does [#6364 state:resolved] | Gabriel Horner | 2011-02-02 | 1 | -3/+3 |
* | test that the custom ordered hash can be round-tripped | Aaron Patterson | 2011-01-04 | 1 | -0/+17 |
* | use dots for method calls | Aaron Patterson | 2011-01-04 | 1 | -3/+8 |
* | OrderedHash#select now preserves order [#5843 state:resolved] | James A. Rosen | 2010-11-07 | 1 | -0/+8 |
* | Exception handling more readable | Thiago Pradi | 2010-09-19 | 1 | -2/+2 |
* | Removes unused vars | Santiago Pastorino | 2010-07-24 | 1 | -1/+1 |
* | AS json refactor, move to_json implementation to core_ext and a cleanup a bit... | Santiago Pastorino | 2010-07-01 | 1 | -0/+1 |
* | Oops. Make previous commit pass on 1.9.2. | José Valim | 2010-06-26 | 1 | -1/+2 |
* | Tidy up tests in previous commit since they did not assure an OrderedHash is ... | José Valim | 2010-06-26 | 1 | -3/+2 |
* | Add OrderedHash#invert to preserve order in ruby 1.8 [#4875] | chaitanyav | 2010-06-26 | 1 | -0/+6 |
* | Work around the fact the JSON gem was overwriting to_json implementation for ... | José Valim | 2010-06-26 | 1 | -0/+7 |
* | Alias ActiveSupport::OrderedHash#update to ActiveSupport::OrderedHash.merge! | Paul Mucur | 2010-06-25 | 1 | -0/+6 |
* | revises implementation of AS::OrderedHash#merge! | Xavier Noria | 2010-06-13 | 1 | -16/+17 |
* | Revert "hash merging with a block ignores non-existing keys altogether" | Xavier Noria | 2010-06-13 | 1 | -16/+17 |
* | hash merging with a block ignores non-existing keys altogether | Xavier Noria | 2010-06-13 | 1 | -17/+16 |
* | re-organized test for merge into separate tests | Paul Barry | 2010-06-13 | 1 | -13/+21 |
* | Support passing a block to ActiveSupport::OrderedHash's merge and merge! [#48... | Paul Mucur | 2010-06-13 | 1 | -0/+13 |
* | Adding custom yaml (de-)serialization for OrderedHash | Gregor Schmidt | 2010-01-27 | 1 | -0/+24 |
* | Fix OrderedHash#replace | Chris Hapgood | 2009-11-05 | 1 | -0/+7 |
* | Fixed ActiveSupport::OrderedHash::[] work identically to ::Hash::[] in ruby 1... | Brian Abreu | 2009-07-02 | 1 | -1/+24 |
* | ActiveSupport::OrderedHash[1,2,3,4] creates an OrderedHash instead of a Hash. | Douglas F Shearer | 2009-05-11 | 1 | -0/+6 |
* | ActiveSupport::OrderedHash#to_a method returns an ordered set of arrays. Matc... | Ken Collins | 2009-05-10 | 1 | -0/+4 |
* | Fix OrderedHash#inspect recursion | Jeremy Kemper | 2009-03-04 | 1 | -1/+7 |
* | Fix OrderedHash#to_hash to return self instead of a new hash with self as def... | Jeremy Kemper | 2009-03-03 | 1 | -1/+5 |
* | Dup keys in OrderedHash to prevent them from being modified [#1676 state:reso... | Brandon Keepers | 2009-01-16 | 1 | -1/+9 |
* | Make delete_if/reject faster and fix other mutators | Frederick Cheung | 2008-12-15 | 1 | -0/+37 |
* | Fixed ActiveSupport::OrderedHash #delete_if, #reject!, and #reject, which did... | Eloy Duran | 2008-12-11 | 1 | -1/+21 |
* | Rework ActiveSupport::OrderedHash to make lookups faster | Frederick Cheung | 2008-12-10 | 1 | -0/+10 |
* | Added ActiveSupport::OrderedHash#each_key and ActiveSupport::OrderedHash#each... | Christoffer Sawicki | 2008-11-26 | 1 | -0/+12 |
* | Add more standard Hash methods to ActiveSupport::OrderedHash [#314 state:reso... | Steve Purcell | 2008-06-03 | 1 | -0/+19 |
* | Create a seperate file for ActiveSupport::OrderedHash. | Joshua Peek | 2008-05-14 | 1 | -0/+45 |