A postmodern object system for Perl 5
http://search.cpan.org/dist/Moose/
Moose is an extension of the Perl 5 object system.
The main goal of Moose is to make Perl 5 Object Oriented programming
easier, more consistent, and less tedious. With Moose you can think more
about what you want to do and less about the mechanics of OOP.
Additionally, Moose is built on top of the Class::MOP manpage, which is a
metaclass system for Perl 5. This means that Moose not only makes building
normal Perl 5 objects better, but it provides the power of metaclass
programming as well.
- Developed at devel:languages:perl
- Sources inherited from project openSUSE:Factory
-
3
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Backports:SLE-15-SP4:FactoryCandidates/perl-Moose && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
Moose-2.0401.tar.gz | 0000678472 663 KB | |
perl-Moose-apply_role.patch | 0000000422 422 Bytes | |
perl-Moose-old_Test-More.patch | 0000171221 167 KB | |
perl-Moose.changes | 0000015807 15.4 KB | |
perl-Moose.spec | 0000005131 5.01 KB |
Revision 13 (latest revision is 50)
Stephan Kulow (coolo)
accepted
request 94194
from
Stephan Kulow (coolo)
(revision 13)
- fix requires - update to 2.0401: * attributes with weak_ref now weaken their associated slot when they are initialized through a lazy default or builder - changes from 2.0302: * make make_immutable return value consistent and document it to be true - changes from 2.0301: * a custom error class caused a warning when the class that used it was made immutable * the enum type will now allow single value enumerations; previously, two or more values were required - changes from 2.0300: * the optimize_as option for type constraints has been deprecated; use the inline_as option to provide inlining code instead * methods to introspect a class's methods will now return methods defined in UNIVERSAL (isa, can, etc.); this also means that you can wrap these methods with method modifiers; RT#69839 * the ->parent and ->parents method for a union now return the nearest common ancestor of that union's component types; see Moose::Manual::Delta for more details * the ->parents method used to return an arrayref for union types, and a list of one or more types for all other types; now they all return lists * the ->is_subtype_of and ->is_a_type_of methods have changed their behavior for union types: previously, they returned true if any of their member types returned true for a given type; now, all of the member types must return true; RT#67731 * the Moose::Exporter module now has a "meta_lookup" option when creating an importer: allows you to specify an alternate method for determining the
Comments 0