aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/hash_ext_test.rb
Commit message (Expand)AuthorAgeFilesLines
* MaKe Hash#slice! return removed values, akin to Array [#971 state:resolved]trans2008-12-261-3/+17
* Added a :camelize option to ActiveRecord and Hash to_xml serialization and fr...Bruce Krysiak2008-12-101-0/+7
* Explicitly require Builder in test that uses itJeremy Kemper2008-11-241-0/+1
* Revert "Hack builder to look for fast_xs instead of insisting on its own Stri...Jeremy Kemper2008-11-241-1/+0
* Hack builder to look for fast_xs instead of insisting on its own String#to_xsJeremy Kemper2008-11-231-0/+1
* Require mocha >= 0.9.0 for AS testsJeremy Kemper2008-11-221-6/+4
* Adds failed test case for slicing hash with indifferent access with symbol keysadam2008-09-231-0/+10
* Ensure Hash#except is allowed on a frozen hash. References #382Mislav Marohnić2008-09-131-0/+14
* Merge rexml-expansion-fix gem into activesupport.Michael Koziarski2008-09-021-0/+21
* Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ...Jeremy Kemper2008-08-311-4/+4
* Add extra tests to ensure Hash#slice works with an array as a key. #613MatthewRudy2008-07-171-0/+21
* Revert "Hash#slice supports an array of keys [#613 state:resolved]"Pratik Naik2008-07-171-35/+21
* Allow deep merging of hash values for nested with_options. [#490 state:resolved]Lawrence Pit2008-07-171-0/+10
* Hash#slice supports an array of keys [#613 state:resolved]Josh Owens2008-07-161-21/+35
* Hash.from_xml: datetime xml types overflow to Ruby DateTime class when out of...gbuesing2008-05-181-0/+38
* Revert [9209] Use Hash#exceptPratik Naik2008-04-021-32/+0
* Adding Hash#without Closes #7369 [eventualbuddha]Pratik Naik2008-04-021-0/+32
* Use a decorator module for Files instantiated by Hash.from_xml. Add test cove...Jeremy Kemper2008-01-061-3/+31
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-051-1/+1
* Hash#symbolize_keys skips keys that can't be symbolized. Closes #10500.Jeremy Kemper2007-12-201-3/+9
* Ruby 1.9 compat: shadowed vars, kcodeJeremy Kemper2007-12-151-3/+3
* Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has...Rick Olson2007-12-081-0/+8
* Fix that empty collections should be treated as empty arrays regardless of wh...David Heinemeier Hansson2007-11-251-0/+11
* Hash#to_xml handles symbol values. Closes #9954.Jeremy Kemper2007-10-231-2/+5
* Hash#symbolize_keys behaves well with integer keys. Closes #9890.Jeremy Kemper2007-10-161-0/+6
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-3/+3
* Ruby 1.9 compat for hash_ext_testJeremy Kemper2007-09-291-1/+1
* Hash#to_xml doesn't double-unescape. Closes #8806.Jeremy Kemper2007-09-171-0/+28
* Support for non heterogeneous arrays when serializing to xml. Unless guessabl...Tobias Lütke2007-07-091-0/+17
* Added Hash#except which is the inverse of Hash#slice -- return the hash excep...David Heinemeier Hansson2007-07-091-0/+13
* Added proper handling of arrays. Closes #8537 [hasmanyjosh]Rick Olson2007-06-211-4/+39
* revert [6924]Rick Olson2007-06-051-37/+2
* Added proper handling of arrays (closes #8537) [hasmanyjosh]David Heinemeier Hansson2007-06-011-2/+37
* Pull file from xml value only if it's a Hash. Closes #8190.Jeremy Kemper2007-04-261-0/+6
* Use XSD-compatible type names for Hash#to_xml and make the converters extenda...David Heinemeier Hansson2007-04-211-1/+29
* Added yielding of builder in Hash#to_xml [DHH]David Heinemeier Hansson2007-04-191-0/+11
* Fixed that parameters from XML should also be presented in a hash with indiff...David Heinemeier Hansson2007-04-161-0/+5
* Hash#to_xml supports YAML attributes; ActiveRecord::Base#to_xml support seria...Jeremy Kemper2007-03-181-3/+5
* Array#to_query preserves its ordering. References #7756.Jeremy Kemper2007-03-111-2/+7
* Hash#to_query CGI-escapes its keys.Jeremy Kemper2007-02-111-8/+22
* Don't test for hash sort order.Jeremy Kemper2007-02-111-6/+7
* Added Hash#to_query to turn a hash of values into a form-encoded query string...David Heinemeier Hansson2007-01-241-0/+21
* Hash#slice(*keys) returns a new hash with only the given keys. #slice! replac...Jeremy Kemper2006-12-171-0/+29
* HashWithIndifferentAccess#to_hash converts to a Hash with String keys and the...Jeremy Kemper2006-12-161-9/+37
* Hash#to_xml handles keys with the same name as Kernel methods. Closes #6613.Jeremy Kemper2006-11-141-0/+11
* Hash#to_xml supports Bignum and BigDecimal. Closes #6313.Jeremy Kemper2006-09-291-1/+7
* Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist unti...David Heinemeier Hansson2006-09-201-4/+4
* Fix cases where empty xml nodes weren't being translated to nil in Hash.creat...Rick Olson2006-09-011-0/+24
* Strip boolean XML content before checking for 'true' [Rick Olson]Rick Olson2006-07-211-2/+2
* Correctly convert <foo nil=true> to nil when using Hash.create_from_xml. [Rick]Rick Olson2006-07-131-1/+1