Move validate_args out into a separate method
[gitmo/Mouse.git] / lib /
2008-06-15 Shawn M Moore Move validate_args out into a separate method
2008-06-13 Shawn M Moore Bump to 0.04
2008-06-13 Shawn M Moore 0.03
2008-06-13 Shawn M Moore Add support for undef init_arg
2008-06-11 Shawn M Moore Add has_attribute, rewrite Changes to be Moosier :)
2008-06-11 Shawn M Moore Use compute_all_applicable_attributes instead of get_at...
2008-06-11 Shawn M Moore Add compute_all_applicable_attributes
2008-06-11 Shawn M Moore Doc updates
2008-06-11 Shawn M Moore Add support for ->new({...})
2008-06-11 Shawn M Moore Use Class::Method::Modifiers 1.00 for before/after...
2008-06-11 Shawn M Moore Prepare for release 0.02
2008-06-11 Shawn M Moore Bit more doc
2008-06-11 Shawn M Moore Improve test code coverage of Squirrel
2008-06-10 Shawn M Moore Fix the order that BUILD methods are called in (thanks...
2008-06-10 Yuval Kogman more explaining
2008-06-10 Yuval Kogman i speak english, i learn it from a book
2008-06-10 Yuval Kogman use teh Squirrel
2008-06-10 Yuval Kogman v string not portable
2008-06-10 Shawn M Moore Some final touches on the doc. This is 0.01.
2008-06-10 Shawn M Moore Lots of doc
2008-06-10 Shawn M Moore Some errors for auto_deref
2008-06-10 Shawn M Moore Implementation of auto_deref
2008-06-10 Shawn M Moore Invalid class names should throw an exception
2008-06-10 Shawn M Moore Various is_class_loaded/load_class nits
2008-06-10 Shawn M Moore Replace is_class_loaded with version from Class::MOP
2008-06-10 Shawn M Moore Some ClassName simplification and fixes
2008-06-10 Shawn M Moore have ClassName check use is_class_loaded
2008-06-10 Shawn M Moore Finish moving Mouse::Attribute and Mouse::Class into...
2008-06-10 Shawn M Moore Begin moving Moose::Attribute and Moose::Class into...
2008-06-10 Shawn M Moore Finish the use of overload::StrVal, in verify_type_cons...
2008-06-10 Shawn M Moore use overload::StrVal in type-constraint errors
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: the details of load_class. Check whether...
2008-06-10 Shawn M Moore Moose compat: handles are not canonicalized in the...
2008-06-10 Shawn M Moore Moose compat: Remove Mouse::Class->attributes method...
2008-06-10 Shawn M Moore Moose compat: no longer an error to have a trigger...
2008-06-10 Shawn M Moore Moose compat: lazy-no-default error message
2008-06-10 Shawn M Moore Moose compat: required error message tweak
2008-06-10 Shawn M Moore Moose compat: throw an error on $self->reader(value)
2008-06-10 Shawn M Moore Tests and implementation for builder with lazy and...
2008-06-10 Shawn M Moore Improve coverage of TypeRegistry
2008-06-10 Shawn M Moore Little nits
2008-06-10 Shawn M Moore Fix type_constraint always being set to undef
2008-06-10 Shawn M Moore Factor out canonicalize_handles into a separate method
2008-06-10 Shawn M Moore Improve doc coverage, remove some needless methods
2008-06-10 Shawn M Moore Unknown type constraints are now interpreted as blessed...
2008-06-10 Shawn M Moore Some doc updates
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-10 Shawn M Moore If we re-import Mouse, don't thrash the class's supercl...
2008-06-10 Shawn M Moore Implementation of ClassName, borrowed from Moose
2008-06-10 Shawn M Moore Implementations for all of the types except ClassName
2008-06-09 Shawn M Moore Use "undef" and avoid uninitialized warnings when the...
2008-06-09 Shawn M Moore Tests and implementation for Undef/Defined types
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-04 Shawn M Moore Add predicates to the informational Mouse::Attribute...
2008-06-04 Shawn M Moore Check type constraint in the setter
2008-06-04 Shawn M Moore Begin adding Mouse::TypeRegistry. All that's there...
2008-06-04 Shawn M Moore isa -> type_constraint
2008-06-04 Shawn M Moore Future-proof init_arg => undef, that needs tests though
2008-06-04 Shawn M Moore Add the attribute to the metaclass before installing...
2008-06-03 Shawn M Moore Import Mouse