Add some tests
[gitmo/Mouse.git] / lib / Mouse / Object.pm
2009-09-24 gfx Add some tests
2009-09-23 gfx Always load Mouse::Util first, which will be load Mouse...
2009-09-21 gfx Use throw_error() instead of confess()
2009-09-21 gfx Remove duplications and cleanup
2009-09-20 gfx Add has_x_method_modifiers, but not yet tested
2009-09-20 gfx Refactoring
2009-09-17 gfx Fix meta() and initialize() for more compatibility
2009-05-27 Shawn M Moore mro::get_linear_isa -> Mouse::Util::get_linear_isa
2009-05-27 Shawn M Moore If the metaclass has been collected, use mro::linearize...
2009-04-10 Tokuhiro Matsuno class-mop says 'The compute_all_applicable_attributes...
2009-04-01 Shawn M Moore Forbid undef passed to new for Moose compat
2009-04-01 Shawn M Moore Remove third argument to trigger
2009-03-27 Nick Woolley Implemented Moose::Object::does, borrowing from Moose...
2009-02-14 Chris Prather Add dump method from Moose::Object into Mouse::Object
2008-12-22 Shawn M Moore Rename the method to verify_against_type_constraint...
2008-12-09 Shawn M Moore Comments, style
2008-12-09 Shawn M Moore Remove pointless shebang in each module
2008-12-07 Tokuhiro Matsuno use Scalar::Util directly
2008-12-05 大沢 和宏 set instance to attributes default code
2008-12-05 Shawn M Moore Fix for default in a constructor reported and tested...
2008-12-03 Tokuhiro Matsuno - inject object constructor when call meta->make_immutable.
2008-12-02 大沢 和宏 fixed bug, problem of coercer feature is moose compat
2008-12-02 大沢 和宏 added to coerce feature
2008-09-28 Shawn M Moore weaken for Mouse::Util which will load up Scalar::Util
2008-09-11 Shawn M Moore Remove blessed from Mouse::Object because it's not...
2008-09-11 Shawn M Moore Remove MRO::Compat from Mouse::Object, it now uses...
2008-09-11 Shawn M Moore Remove before/around triggers
2008-07-16 Shawn M Moore More consistent header
2008-07-16 Shawn M Moore Implement around triggers in the constructor
2008-07-16 Shawn M Moore Support before and after triggers in the constructor
2008-06-28 Yuval Kogman silence BUILD used only once warning
2008-06-27 Shawn M Moore Document BUILDARGS
2008-06-26 Yuval Kogman BUILDARGS
2008-06-13 Shawn M Moore Add support for undef init_arg
2008-06-11 Shawn M Moore Use compute_all_applicable_attributes instead of get_at...
2008-06-11 Shawn M Moore Add support for ->new({...})
2008-06-10 Shawn M Moore Fix the order that BUILD methods are called in (thanks...
2008-06-10 Shawn M Moore Use the correct hash keys with init_arg in the constructor
2008-06-10 Shawn M Moore Moose compat: init_arg is not used for the hash key...
2008-06-10 Shawn M Moore Moose compat: the weak_ref reader is spelled is_weak_re...
2008-06-10 Shawn M Moore Moose compat: Remove Mouse::Class->attributes method...
2008-06-10 Shawn M Moore Moose compat: required error message tweak
2008-06-10 Shawn M Moore Little nits
2008-06-10 Shawn M Moore Use Scalar::Util/Carp imports for brevity
2008-06-10 Shawn M Moore More methodification, change some names to be what...
2008-06-10 Shawn M Moore Use methods on attribute instead of poking directly...
2008-06-04 Shawn M Moore builder now called in the constructor
2008-06-04 Shawn M Moore Verify type constraints in the constructor
2008-06-03 Shawn M Moore Import Mouse