- Fix: don't replace Array#flatten, as it breaks Rails 3 (see #8)
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.4.3...v0.4.4
- Fix: prevent Array#flatten from attempting to flatten Hash (thanks @moser!)
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.4.2...v0.4.3
- revert change which confused Array#map with Array#flat_map
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.4.1...v0.4.2
- fixed behavior of #flatten called with optional depth parameter
- thanks Martin Mauch (@nightscape)!
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.4.0...v0.4.1
- added scala-like extensions to Hash
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.3.0...v0.4.0
- added Either#lift_to_a (and #lift)
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.2.2...v0.3.0
- added Either#+ to allow combining validations
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.2.1...v0.2.2
- fixed Option#map to disallow becoming None on a nil result
- other fixes and documentation updates
- See full list @ https://github.com/ms-ati/rumonade/compare/v0.2.0...v0.2.1
- added a scala-like Either class w/ LeftProjection and RightProjection monads
- progress towards Either class
- changed documentation to yard from rdoc
- added a first stab at documentation for Option
- fixed certain errors with #map
- added #select
- Initial Feature Set
- general implementation and testing of monadic laws based on
unit
andbind
- scala-like Option class w/ Some & None
- scala-like extensions to Array
- general implementation and testing of monadic laws based on