Comments, style
[gitmo/Mouse.git] / lib / Mouse / Object.pm
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