view release on metacpan or search on metacpan
Also see Moose::Manual::Delta for more details of, and workarounds
for, noteworthy changes.
2.4000 2025-07-04
[DOCUMENTATION]
- clarified some wording regarding the interactions between attribute
configuration options "init_arg" and "required". (Christian Walde, #187)
[OTHER]
- the release schedule and numbering scheme has changed; see
Moose::Manual::Support
2.2207 2024-01-21
[TESTS]
- remove test dependency on Test::CleanNamespaces (#184, Graham Knop)
2.2206 2023-07-23
[TESTS]
- fix parsing error in test in 2.2205 release.
2.2205 2023-07-23
[TESTS]
- fix error in test in 2.2204 release.
2.2204 2023-07-23
[TESTS]
- adjust the expected list of UNIVERSAL methods, to account for changes in
perl 5.39.1 (some things, like the import method, could end up existing
based on the perl version or based on a prerequite loading UNIVERSAL.pm).
(#183, Graham Knop)
2.2203 2023-01-22
[TESTS]
- increased the required version of Test::Needs (#182, Graham Knop)
2.2202 2023-01-14
[TESTS]
- switched from Test::Requires to Test::Needs. (#181, Graham Knop)
2.2201 2021-11-07
[OTHER]
- remove remaining traces of Sub::Name
2.2200 2021-10-31
- no changes since 2.2100
2.2100 2021-04-13 (TRIAL RELEASE)
[OTHER]
- Replaced all uses of Sub::Name with Sub::Util, since the latter is part of
core as of Perl 5.22.
2.2015 2021-03-31
[TESTS]
- a test has been rewritten so as to remove IO::String from the prerequisite
list (#179, thanks Ricardo Signes!)
[OTHER]
- optional prereq on List::SomeUtils has been replaced with List::Util 1.56.
2.2014 2020-12-19
[ENHANCEMENTS]
- Include details about expected values when Enum type checks fail (#174;
thanks sherrardb)
[DOCUMENTATION]
- fix misleading missing semicolon in exceptions example (#170; thanks
Perlover)
[OTHER]
- allow internal packages to be indexed by PAUSE. This avoids their
permissions being captured (possibly unintentionally) by others.
- Sub::Identify prerequisite removed, in favour of already-existing local
code.
2.2013 2020-07-21
[DOCUMENTATION]
- improved some documentation wording in Moose and Class::MOP::Class
(PR#162; thanks Tom Hukins!)
[OTHER]
- updated bundled ExtUtils::HasCompiler, for msys2 support (RT#133022)
2.2012 2019-11-22
[TESTS]
- adjust test of missing package to accomodate new diagnostic message in
perl 5.31.6 (RT#130929)
2.2011 2018-05-16
[BUG FIXES]
- Various native trait methods would refuse "0" where they expected a
string. They have been fixed to allow all defined, non-reference values,
and all objects with string, number, or boolean overloads.
[DOCUMENTATION]
- Moose::Manual::Construction now notes that roles can modify the BUILD sub.
(thanks, E. Choroba!)
[OTHER]
- adjustments have been made to the Makefile for 'bmake', so it now works
when not run in compatibility mode (Leon Timmermans).
2.2010 2018-02-16
[OTHER]
- A performance improvement with operator overloads has been made by making
use of a new Devel::OverloadInfo interface (thanks, ilmari!)
2.2009 2017-11-29
[BUG FIXES]
- Some hash native trait methods (notably clear and delete) were broken in
various ways when the associated attribute's type allowed for coercion of
the hash values and coercion was enabled for the hash. Reported by Ralf
Bartel in RT #123737.
[TESTS]
- fixed tests (new in 2.2008) that sometimes fail under Windows.
2.2008 2017-11-21
[BUG FIXES]
- fixed empty exception messages under -d (new issue in 2.2007)
2.2007 2017-11-12
[DOCUMENTATION]
- The Moose::Manual::Attributes pod has been amended to clarify that
'required' attributes can be satisfied with a 'default' or 'builder' sub,
and that 'ro' attributes can be set through the constructor.
- The Moose::Manual::Types pod has been amended to recommend
Params::ValidationCompiler and Moops instead of older modules (which are
slow and/or deprecated).
- other small documentation fixes (thanks to Chris Weyl and Anirvan
Chatterjee!)
[OTHER]
- some dead code has been removed (thanks, Jens Berthold!)
- all Moose exception classes have been made immutable.
2.2006 2017-07-12
[BUG FIXES]
- Passing roles as a mix of role names and role objects to
Moose::Meta::class->create_anon_class could throw a bogus exception about
'Roles with parameters cannot be cached ...'. Fixed by Olivier
Mengué. Based on PR #117.
2.2005 2017-05-03
[OTHER]
- increased minimum required version of Test::More, to ensure a reliable
subtest.
2.2004 2017-01-31
[BUG FIXES]
- When an attribute was specified as 'rw' and you also provided an accessor
name matching the attribute and there was an explicit writer, Moose would
try to make an additional reader access with the same name as the
attribute. Then Moose would warn about overwriting an accessor with a
reader. This is related to the bugs reported in RT #120040.
2.2003 2017-01-30
[BUG FIXES]
- Moose could die when attempting to warn about overwriting an attribute's
access method in some cases (since version 2.1902) (RT #120040)
2.2002 2017-01-30
[BUG FIXES]
- Creating a Moose subclass of a Moo class with an attribute with a
delegation would cause a warning (since version 2.1902).
2.2001 2017-01-29
[TESTS]
- fixed variable interpolation in filename in test (RT#120033)
2.2000 2017-01-29
[OTHER]
- increased minimum required version of Sub::Name.
2.1905 2017-01-07 (TRIAL RELEASE)
[ENHANCEMENTS]
- Added support for __no_BUILD__ as a constructor argument to skip calling
any BUILD subs (used internally by modules like Moo that have their own
implementation of calling BUILD) (PR#142, Graham Knop)
2.1904 2016-12-22 (TRIAL RELEASE)
[BUG FIXES]
- Slight tweaks to the syntax used for hashes in a few tests, that were
broken by a recent Test::More release that started using a new namespace
that clashes with a (bareword) type name in these tests. (PR#141,
D.Maestro)
2.1903 2016-11-22 (TRIAL RELEASE)
[ENHANCEMENTS]
- When an attribute defines two methods (say a reader and writer) with the
same name, this now generates a warning.
- The warning when attribute methods overwrite one another is now much more
informative. It includes the type of accessors involved (reader, writer,
predicate, etc.) as well as the file and line where each accessor was
defined. Fixes RT #118325.
[BUG FIXES]
- Brought back the Moose::Meta::Method::Delegation->_get_delegate_accessor
method for the benefit of MooseX::CurriedDelegation.
- The definition context (package, file, & line) for attributes on
Class::MOP and Moose metaclasses was wrong in all cases.
2.1902 2016-10-23 (TRIAL RELEASE)
[ENHANCEMENTS]
- The stack trace for an inlined delegation now tells you where the
delegating attribute was declared (file and line number).
2.1901 2016-10-20 (TRIAL RELEASE)
[TESTS]
- warnings are only checked for in tests under AUTHOR_TESTING, so as to not
prevent installation when warnings occur in prerequisites.
2.1900 2016-10-09 (TRIAL RELEASE)
[ENHANCEMENTS]
- Most delegations are inlined now. This is not done for speed but rather to
improve stack traces when the delegated-to method throws an exception or
when the delegated-to method simply does not exist in the
delegatee. Previously, this stack trace and associated error were less
helpful than they could have been. Requested by Tim Bunce, Olaf Alders,
and Van de Bugger. (RT#46614, RT#98402, and RT#109631).
2.1807 2016-12-22
[BUG FIXES]
- The definition context (package, file, & line) for attributes on
Class::MOP and Moose metaclasses was wrong in all cases.
- Slight tweaks to the syntax used for hashes in a few tests, that were
broken by a recent Test::More release that started using a new namespace
that clashes with a (bareword) type name in these tests. (PR#141,
D.Maestro)
2.1806 2016-09-25
[BUG FIXES]
- A role generated on the fly (as opposed to one in a file on disk) could
not be used as a trait. Fixed by Aaron Cohen. (RT#92089, PR#47).
[ENHANCEMENTS]
- When a required attribute's init_arg differs from the attribute's name, we
now include both the attribute name and init_arg in the exception thrown
when that attribute is not provided. (RT#116814, Gordon Fisher)
- The unimport sub generated by Moose::Exporter can now be called with
parameters like { into => 'Package' } or { into_level => 1 }, just like
the import sub it generates. Requested by Dmytro Zagashev. (RT #93666).
- Moose::Meta::Attribute objects created from role attributes keep a
reference to the Moose::Meta::Role::Attribute which created
them. Moose::Meta::Attribute now has ->role_attribute and
->has_role_attribute methods. RT #84563 and #117586. (Dave Rolsky)
[DOCUMENTATION]
- Updated Moose::Manual::Roles with more detail on role consumption and how
to deal with various corner cases involving required methods, multiple
roles, etc.
2.1805 2016-08-19
[BUG FIXES]
- remove inc/Config.pm that should not have appeared in the distribution (an
issue since 2.1800; RT#117071)
2.1804 2016-06-02
[OTHER]
- restrict Type::Tiny test to versions new enough to support native traits.
- restrict recipe test to perls where Regexp::Common is installable
2.1803 2016-05-31
[BUG FIXES]
- fixed type compatibility with Type::Tiny that was partially lost in
2.1802.
2.1802 2016-05-25
[BUG FIXES]
- Fixed test failures if Specio 0.14+ was installed.
[OTHER]
- updated metadata, used by moose-outdated and t/zzz-check-breaks.t,
to reflect downstream modules affected by the recent removal of
List::MoreUtils.
2.1801 2016-05-02
[OTHER]
- bundled an updated ExtUtils::HasCompiler, to support building with a
noexec $TMPDIR.
2.1800 2016-04-30
[OTHER]
- an increased Data::OptList version has been added to recommended prereqs,
for greater speed. (Olivier Mengué, PR#123)
2.1705 2016-04-21 (TRIAL RELEASE)
[OTHER]
- build-time compiler sanity checking is now done with ExtUtils::HasCompiler
instead of ExtUtils::CBuilder.
2.1704 2016-04-13 (TRIAL RELEASE)
[BUG FIXES]
- Fixed method cache regeneration when a class contains a blessed sub
(RT#113704, Graham Knop, PR#122)
[TESTS]
- restore test on perl 5.8.x when Class::C3::XS is not installed (RT#113704)
2.1703 2016-04-12 (TRIAL RELEASE)
[TESTS]
- skip dysfunctional test on perl 5.8.x when Class::C3::XS is not installed
(RT#113704)
2.1702 2016-04-08 (TRIAL RELEASE)
[DOCUMENTATION]
- Moose::Meta::Attribute::Native::Trait::Array now documents the return
value for 'first_index' when there is no match (-1).
[OTHER]
- Moose::Exception's message attribute can now be any defined value, so as
to allow for objects with a stringification overload in place of a string.
2.1701 2016-04-07 (TRIAL RELEASE)
[OTHER]
- Fixed the last remaining use of List::MoreUtils (RT#113587)
2.1700 2016-04-06 (TRIAL RELEASE)
[OTHER]
- Moose::Exception now has a boolean overload. (Graham Knop, PR#119)
- All uses of List::MoreUtils have been removed, replaced by inlined forms
or equivalents in List::Util. (Graham Knop, PR#120)
2.1605 2016-02-16
[DOCUMENTATION]
- Fixed references to test files that were renamed when their associated
documentation files were renamed in 2.0500 (RT#111898)
- Moose::Manual::Roles now contains a section on handling required
attributes in role application (thanks, Kent Fredric!)
- a few other, very minor, documentation fixes
2.1604 2015-11-07
[OTHER]
- The minimum perl requirement is now set in configure-requires, as well as
runtime-requires, to ensure that smokers bail out early enough to declare
the installation as a N/A rather than a FAIL.
2.1603 2015-08-28
- No changes from 2.1602-TRIAL (other than a minor documentation tweak).
2.1602 2015-08-14 (TRIAL RELEASE)
[BUG FIXES]
- Replaced uses of overload::Overloaded with the new
Devel::OverloadInfo::is_overloaded (thanks, ilmari!) to work around more
issues with overload handling in older versions of perl.
2.1601 2015-08-10 (TRIAL RELEASE)
[BUG FIXES]
- Explicit boolean overload handling has been added to Class::MOP::Method
and Moose::Meta::Role::Method::Required, to work around a bug with the
handling of overload fallbacks on perl 5.8.x. In particular this fixes
issues observed in MooseX::MethodAttributes.
2.1600 2015-07-31
[DOCUMENTATION]
- Made all docs use =head2 and =head3 for methods/functions so that they
appear as part of the table of contents on MetaCPAN.
2.1501 2015-07-20 (TRIAL RELEASE)
[DOCUMENTATION]
- Added a new slideshow by Shawn M. Moore (sartak) to
Moose::Manual::Resources
- Documentation for exception classes has been rewritten, with
Moose::Manual::Exceptions::Manifest changing how it describes each class's
attributes and methods. (Dave Rolsky, PR#95)
[REVERSIONS]
- The change in 2.1500 to allow DOES to check delegated options has been
reverted. This turned out to have a variety of issues both in concept and
implementation; it will be refined further in MooseX::Does::Delegated.
[CHANGED]
- The name for an anonymous sub that is used in method modifiers (that shows
up in stack traces etc) now identifies the package and method being
modified. (Philipp Gortan, PR#94)
2.1500 2015-07-01 (TRIAL RELEASE)
[ENHANCEMENTS]
- An object's DOES method now also checks roles composed by delegated
objects (Chris Prather, PR#104)
2.1405 2015-06-06
[BUG FIXES]
- The native 'Array' trait 'sort' accessor now returns the number of
elements in scalar context, instead of the undefined value (or a
different, seemingly-random, value under 5.23.x).
2.1404 2015-04-17
[BUG FIXES]
- Add Sub::Identify to prereqs. (RT #101661)
- bump List::Util prereq to avoid a memory leak (RT#101124)
[DOCUMENTATION]
- Added section to Moose::Manual::Resources to list external links related
to Moose (RT #101993, Michael LaGrasta)
2.1403 2014-12-07
[DOCUMENTATION]
- Added a section to Moose::Manual::MethodModifiers illustrating how method
modifiers work with inheritance. (Andreas Koenig, RT #98940)
- Added docs to Moose.pm on the -meta_name import option. This addresses RT
#98488.
[BUG FIXES]
- Fix a test that fails on MSWin32 systems using nmake
- fix dev build compilation error when using MSVC (A. Sinan Unur)
[OTHER]
- the modules in the git repository now have a defined $VERSION, to make it
easier to test MooseX::* and other code under development.
2.1402 2014-11-05
[BUG FIXES]
- Fix a test that was trying to load Test::Exception instead of Test::Fatal.
(Michael Schout)
2.1401 2014-11-03
[BUG FIXES]
- The core overloading support interacted badly with
MooseX::MarkAsMethods. If you used MooseX::MarkAsMethods in a role that
provided overloading, then that overloading would not be properly applied
to consuming classes, leading to very weird errors of the form:
Can't resolve method "???" overloading """" in package "Class2" ...
Note that the problems that MooseX::MarkAsMethods fixes are no longer
present if you are using Moose 2.1400+ and namespace::autoclean 0.16+. We
encourage you to upgrade both of these modules and remove
MooseX::MarkAsMethods from your code base.
2.1400 2014-11-01
[BUG FIXES]
- Moose exception classes now stringify all stack frames, to avoid issues
in global destruction (see RT#99811)
2.1307 2014-10-26 (TRIAL RELEASE)
[ENHANCEMENTS]
- Support added to Moose::Exporter for exporting subs by their fully
qualified name, as well as coderefs. This avoids internal breakage if some
other module has monkey-patched a sub to be exported and left it anonymous
(e.g. RT#88669). (Graham Knop, PR#84)
[BUG FIXES]
- Further refined the overloading fixes from 2.1306, fixing fallback
handling on older perl versions (Dave Rolsky, PR#85)
2.1306 2014-10-25 (TRIAL RELEASE)
[ENHANCEMENTS]
- Rewrote overloading implementation to use a new Class::MOP::Overload
object. This object properly captures all overloading information. The
Class::MOP::Method::Overload class has been removed. (Dave Rolsky, PR#83)
[BUG FIXES]
- If a role had method-based overloading but did not actually implement the
specified method, its overloading was simply ignored when applying
overloading to other roles or classes. Reported by rjbs. RT #98531.
2.1305 2014-10-23 (TRIAL RELEASE)
[ENHANCEMENTS]
- By default, exceptions thrown from inside Moose now remove most of the
Moose internals from their stack trace when stringifying. This makes for
much more readable error messages in most cases. Set the
MOOSE_FULL_EXCEPTION env var to true to get the complete stack trace.
2.1304 2014-09-25 (TRIAL RELEASE)
[BUG FIXES]
- closed a memory leak in Moose exception objects where captured stack
trace frames would contain circular references to the exception objects
themselves (Graham Knop, PR#81)
2.1303 2014-09-20 (TRIAL RELEASE)
[TEST FIXES]
- fix tests that fail on altered warning messages in perl 5.21.4 (RT#98987)
2.1302 2014-08-20 (TRIAL RELEASE)
[BUG FIXES]
- When a role consumes another role and they differ in their overloading
fallback settings, the consuming role now silently wins instead of
throwing an exception. This is consistent with how other
role-consumes-role conflicts are handled.
- Fixed the docs for overloading conflicts to match reality.
2.1301 2014-08-19 (TRIAL RELEASE)
[BUG FIXES]
- Conflict detection for overloading operators is now more correct. If a
class consumed two roles that both had identical overloading methods
(because they got them from some other role, for example), this caused an
error, but it shouldn't. GH #4. (rjbs)
- Similarly, when a role consumes another role, conflicts in overloading
operators are now silently resolved in favor of the consuming role, just
as they are with methods. Note that conflicts between the fallback setting
for roles are still an error.
2.1300 2014-08-11 (TRIAL RELEASE)
[ENHANCEMENTS]
- Moose now has core support for overloading in roles. When a role with
overloading is applied to classes or other roles, the overloading settings
are transferred to the consumer. Conflicts between roles are treated much
like method conflicts. This obviates the need for
MooseX::Role::WithOverloading. If you are using
MooseX::Role::WithOverloading, upgrade to version 0.15+ and it will simply
become a no-op when used with this version of Moose.
[OTHER]
- The overloading info methods for roles and classes no longer treat
"fallback" as an overloaded op. Instead, there are new
get_overload_fallback_value() and set_overload_fallback_value() methods to
deal with this explicitly. This is arguably a bug fix.
2.1213 2014-09-25
[BUG FIXES]
- closed a memory leak in Moose exception objects where captured stack
trace frames would contain circular references to the exception objects
themselves (Graham Knop, PR#81)
2.1212 2014-09-19
[TEST FIXES]
- fix tests that fail on altered warning messages in perl 5.21.4 (RT#98987)
2.1211 2014-08-12
[DOCUMENTATION]
- Updated Changes and Moose::Manual::Delta to note when we started removing
lazy_build from docs. Also added a note in the Moose::Meta::Attribute docs
stating that use of this feature is discouraged.
- Added a pointer from the auto_deref feature to
Moose::Meta::Attribute::Native. This is often a better choice.
[OTHER]
- The subs installed by Moose::Exporter->setup_import_methods are now named
using Sub::Name (Dave Rolsky, RT#97572)
2.1210 2014-07-03
[DOCUMENTATION]
- Clarify that Moose::Exception exists for internal usage and that user
code is better off using the Throwable role or Throwable::Error superclass.
- Moose::Manual::Support policy clarified regarding legacy Perl versions
[OTHER]
- logic has been removed for an alpha branch of Test::Builder that will
never see the light of day, and will break with upcoming Test::Builder
changes (Exodist)
2.1209 2014-06-05
[OTHER]
- The is_anon method now always returns false when called on
Moose::Meta::Role::Composite objects. This isn't strictly right, but for
the purposes of Moose internals, where "is_anon" really means "needs to be
cleaned up", it's correct. This fixes warnings that were seen when using
recent Moose (2.1100+) and MooseX::Role::Parameterized roles as part of a
composite role. These warnings only appear with Perl 5.16 and earlier.
2.1208 2014-06-01
[BUG FIXES]
- fix implementation of throw_exception in internal Class::MOP traits,
caused by changes in 2.1207 (ether, RT#96112)
2.1207 2014-05-26
[OTHER]
- Fixed Specio support to work with the latest Specio (0.10). This version of
Specio no longer uses Moose internally.
- exceptions in Class::MOP no longer use Moose::Util, instead using their
own private implementation of throw_exception, to avoid needless premature
loading of Moose logic.
2.1206 2014-05-14
[BUG FIXES]
- exceptions should not throw other exceptions; fixes cases where exceptions
were reporting the wrong error (Upasana, RT#92818 and RT#94795)
[OTHER]
- prereqs needed strictly for building with Dist::Zilla have been moved from
develop requires to develop recommends, to simplify automated testing on
older perls that cannot install all Dist::Zilla components
- removed instances of metaobjects in exception classes where they're not
really required
2.1205 2014-04-16
[ENHANCEMENTS]
- new utility interface: Moose::Util::is_role
[BUG FIXES]
- better error message provided when trying to load a trait class that does
not exist in @INC (Upasana, RT#94731)
[OTHER]
- new test added, to run last, which runs `moose-outdated` as a possibly
more visible mechanism to provide important information to the user
(re RT#92780)
2.1204 2014-02-07
[BUG FIXES]
- bump minimum prereq needed for optional test using MooseX::NonMoose (which
broke with new Module::Runtime, see 2.1203), so users can install Moose
and pass tests before updating MooseX::NonMoose.
2.1203 2014-02-07
[BUG FIXES]
- bump prereq on Module::Runtime to properly detect when a module fails to
load, and fix how we call these subs (Zefram, RT#92770, RT#86394, RT#92791)
[ENHANCEMENTS]
- line numbers in shipped code are now almost the same (within 3) as the
repository source, for easier debugging
2.1202 2014-01-20
[BUG FIXES]
- string comparisons are now possible with Moose exceptions (RT#92232)
2.1201 2014-01-11
[OTHER]
- re-release to index pod files (Moose::Cookbook::*, Moose::Manual::* etc).
2.1200 2014-01-06
[OTHER]
- Releasing 2.1108 as stable (last stable release was 2.1005).
2.1108 2014-01-05 (TRIAL RELEASE)
[OTHER]
- fixed distribution manifest
- minor documentation and metadata updates
2.1107 2013-11-29 (TRIAL RELEASE)
[OTHER]
- many additions to the list of conflicting modules (those that require
updates after installing Moose), reflecting recent API changes
- now failing early at build time, with a useful error message, if a
compiler is not available
2.1106 2013-11-05 (TRIAL RELEASE)
[BUG FIXES]
- throw_error import cleaned from Moose::Object after use (doy)
- resolved new circular load issue between Moose::Util and Class::MOP (Kent
Fredric, RT#89713 and PR#42)
2.1105 2013-10-31 (TRIAL RELEASE)
[BUG FIXES]
- legacy throw_error now takes multiple arguments, like confess does
(Karen Etheridge)
2.1104 2013-10-30 (TRIAL RELEASE)
[BUG FIXES]
- Class::MOP::Object::_inline_throw_error is back, used by some MooseX
modules (Upasana)
2.1103 2013-10-26 (TRIAL RELEASE)
[BUG FIXES]
- fix errors in last trial release relating to Moose::Error::Default,
Moose::Util::throw_error (Upasana)
2.1102 2013-10-20 (TRIAL RELEASE)
[BUG FIXES]
- die if a role to consume can't be found -- this restores behaviour as in
2.1005 (doy)
- fix test to accomodate Devel::PartialDump possibly not being installed
(Upasana)
2.1101 2013-10-20 (TRIAL RELEASE)
[ENHANCEMENTS]
- Moose string exceptions have been replaced by Moose::Exception objects. See
Moose::Manual::Delta for details.
2.1100 2013-09-07 (TRIAL RELEASE)
[DEPRECATIONS]
- Class::MOP::load_class, Class::MOP::is_class_loaded, and
Class::MOP::load_first_existing_class are now deprecated. See
Moose::Manual::Delta for details.
- The non-arrayref forms of enum and duck_type have been deprecated. See
Moose::Manual::Delta for details.
- Many deprecated features have now been removed:
- optimize_as for type constraints
- the "default is" and "default default" features for native delegations
- setting coerce => 1 on an attribute whose type constraint has no coercion
- the public version of Moose::Meta::Method::Destructor::initialize_body
[ENHANCEMENTS]
- Creating classes with Moose now always sets the appropriate entry in %INC,
even if it wasn't loaded from a file. This should make writing classes
inline easier, and will allow us to be more intelligent about figuring out
when classes are loaded in the future. See Moose::Manual::Delta for more
details. Note that this is slightly backwards-incompatible in some edge
cases.
- Moose now uses Module::Runtime instead of Class::Load to load classes. This
means that there are no more issues with the weird heuristics that
Class::Load does to determine if a class was previously loaded (inheriting
from an empty package is now possible, for instance). See
Moose::Manual::Delta for more details. This is also slightly
backwards-incompatible in some edge cases.
2.1005 2013-08-07
[ENHANCEMENTS]
- add_method now accepts blessed subs (Graham Knop, PR#28)
[BUG FIXES]
- If a role consumed another role, we resolve method conflicts just like a
class consuming a role, but when metaclass compat tried to fix up
metaclass roles, we were putting all methods into one composite role and
allowing methods in the metaclass roles to conflict. Now we resolve them
as we should. (Jesse Luehrs, PR#27)
- Some edge cases in tests with base.pm and non-existent module files are
handled more strictly (see also perl RT#118561) (Graham Knop, PR#25)
2.1004 2013-07-26
[BUG FIXES]
- 2.1003 was released with some bad metadata, which caused the prereq test
to fail.
2.1003 2013-07-26
[OTHER]
- Releasing 2.0901 as stable.
2.0901 2013-06-21 (TRIAL RELEASE)
[ENHANCEMENTS]
- The with_immutable() sub from Test::Moose now passes a boolean value to
the code block containing tests indicating whether or not the classes have
been made immutable. This can make for nicer test descriptions. (Dave
Rolsky)
- You can now use Specio types instead of Moose builtins or
MooseX::Types. However, this support is still experimental (as is Specio),
so use it with care. (Dave Rolsky)
2.0900 2013-05-27 (TRIAL RELEASE)
[API CHANGES]
- Fixed the Num builtin type to reject NaN, Inf, numbers with whitespace,
and other questionable strings. The MooseX::Types::LaxNum distribution
implements the old behavior. RT#70539 (Upasana)
2.0802 2013-05-07
[ENHANCEMENTS]
- fix incompatibilities with Test::Builder 1.005+ (Karen Etheridge)
- Moose::Manual::Contributing updated to reflect the change of primary
repository from git.moose.perl.org to github.com
2.0801 2013-03-28
[BUG FIXES]
- properly apply traits at compile time (error introduced in 2.0800,
RT#77974). (doy)
2.0800 2013-03-28
[ENHANCEMENTS]
- The super() subroutine now carps if you pass it arguments. These arguments
are always ignored, but we used to ignore them silently. RT #77383.
- Roles can now override methods from other roles they consume directly,
without needing to manually exclude them (just like classes can). (mst)
[BUG FIXES]
- Fix false positive when checking for circular references for modules that
use the "also" parameter with Moose::Exporter. Reported by Jon
Swartz. Fixed by Matthew Wickline. RT #63818.
- Fix memory leak in type unions. (Karen Etheridge) RT#83929.
- Fix application of traits at compile time. (doy) RT#77974.
2.0604 2012-09-19
[BUG FIXES]
- Fix nonsensical error message for inlined accessors of required attributes.
(doy)
- Stop trying to localize a lexical (blead now throws an error for this). RT
#79257, perl #114628. (sprout)
[OTHER]
- Depend on a version of Carp new enough to have caller_info. RT #79367.
(pshangov)
2.0603 2012-06-28
[BUG FIXES]
- Fix test failure in blead. RT #78085.
2.0602 2012-05-07
[BUG FIXES]
- Ensure that the Moose::Exporter-generated init_meta returns the same value
that it did previously. This isn't really a bug, since the return value has
never been tested or documented, but since the generated init_meta is
nothing more than a compatibility shim at this point, there's no reason to
not make it as compatible as possible. Reported by Moritz Onken. (doy)
[DOCUMENTATION]
- The lazy_build attribute feature was removed from
Moose::Manual::BestPractices.
2.0601 2012-05-01
[BUG FIXES]
- Fix init_meta order when multiple also packages are specified (this matters
when one of them is being used to actually initalize the metaclass,
typically with also => 'Moose'). Reported by Randy Stauner. (doy)
2.0600 2012-04-29
[OTHER]
- Releasing 2.0502 as stable.
2.0502 2012-04-25 (TRIAL RELEASE)
[OTHER]
- The Test::DependentModules test now covers a much wider range of downstream
dependents (all of them in fact, for some definition of "all"). This should
allow us to track inadvertent backwards compatibility breakages much more
effectively. (doy)
- A few test tweaks to avoid spurious failures. (doy)
2.0501 2012-04-03 (TRIAL RELEASE)
[BUG FIXES]
- Avoid syntax errors on pre-5.14. (doy)
2.0500 2012-04-03 (TRIAL RELEASE)
[NEW FEATURES]
- Class::MOP::Class now has methods for introspecting and modifying the
overloaded operators for a class. (doy)
[ENHANCEMENTS]
- The cookbook recipes have all been renamed. Instead of numbered recipes
(Basics::Recipe1), we now have descriptive names
(Basics::Point_AttributesAndSubclassing). This makes it easier for us to
add and remove recipes in the future, and makes it a little easier to
converse about them, since the name gives us some clue of what they
contain.
[BUG FIXES]
- Re-declaring a class_type or role_type constraint that has already been
declared now just returns the original type constraint, rather than
replacing the original constraint and ergo losing any coercions that were
on the original constraint. Fixes RT #73289. (t0m)
- Moose::Exporter now calls init_meta methods in the correct order, when
multiple levels of 'also' parameters are specified. Reported by Rocco
Caputo. (doy, perigrin)
- Moose::Exporter no longer generates init_meta methods in order to apply
metaroles, since the metaclass itself isn't guaranteed to exist yet at that
point. Metaroles are now applied at the end of import, after all
user-defined init_meta methods have been called. Fixes RT #51561. (doy)
- Fixed a memory leak. This occurred when creating an anonymous
class. Immutabilizing an anonymous class still leaks memory due to a bug in
Eval::Closure (which should hopefully be fixed soon). Based on code and bug
report from Carlos Lima. RT #74650.
- Fix a segfault when adding a method to a class which was defined in a
package which was deleted. (doy)
2.0403 2012-04-03
[OTHER]
- No changes, reupload to fix indexing.
2.0402 2012-02-04
[OTHER]
- Minor documentation fixes.
- Fix test failure on blead (test was unnecessarily strict). Reported by
Nicholas Clark. (doy)
2.0401 2011-11-17
[BUG FIXES]
- Attributes with weak_ref now weaken their associated slot when they are
initialized through a lazy default or builder. Reported by tome. (doy)
2.0400 2011-11-15
[OTHER]
- No changes from 2.0302 (other than a few minor documentation tweaks).
2.0302 2011-11-02 (TRIAL RELEASE)
[BUG FIXES]
- Fix test failure on 5.8. (Dave Rolsky)
- Make make_immutable return value consistent and document it to be true.
(mst)
2.0301 2011-10-21 (TRIAL RELEASE)
[BUG FIXES]
- Fix compilation on 5.8. Reported by ether. (doy)
- A custom error class caused a warning when the class that used it was made
immutable. Reported by Maroš Kollár. RT #71514. (Dave Rolsky)
[ENHANCEMENTS]
- The enum type will now allow single value enumerations. Previously, two or
more values were required. (rjbs)
2.0300 2011-09-23 (TRIAL RELEASE)
[DEPRECATIONS]
- The optimize_as option for type constraints has been deprecated. Use the
inline_as option to provide inlining code instead. (Dave Rolsky)
[API CHANGES]
- 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. Reported by Vyacheslav
Matyukhin. (Dave Rolsky)
- 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. (Dave Rolsky)
- 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. (Dave Rolsky)
- 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. (Dave Rolsky)
[ENHANCEMENTS]
- The Moose::Exporter module now has a "meta_lookup" option when creating an
importer. This allows you to specify an alternate method for determining
the metaclass of a caller. This is useful for modules like
MooseX::Role::Parameterized which generate new metaclasses on the
fly. (sartak)
- Added a Moose::Meta::Method->is_stub method. (Dave Rolsky)
[BUG FIXES]
- A subtype of a union type did not return the right results when you called
->is_subtype_of or ->is_a_type_of on it. This has been fixed. RT
#70322. (Dave Rolsky)
- An attribute accessor or delegation method can overwrite a stub method and
this will no longer throw an error. Reported by Mark-Jason Dominus. RT
#69988. (Dave Rolsky)
- The error generated by unfulfilled method requirements during role
composition now mentions how to work around imported methods not being
recognized. Reported by Michael Schwern. RT #60583. (doy)
- class_type and role_type will now throw errors if you attempt to use them
to override existing types, just like type and subtype have always done.
(doy)
- Implicitly creating class or role types by using them as the 'isa' or
'does' parameter to attribute construction will now register the type. This
means that it cannot later be redefined as something else. (doy)
- $class_type->is_subtype_of no longer returns true if passed the name of the
class that the class type represents when the class type wasn't registered.
(doy)
- Removing anonymous metaclasses prematurely no longer prevents reaping of
the associated stash. (doy)
[OTHER]
- The Class::MOP::load_class and Class::MOP::is_class_loaded subroutines are
no longer documented, and will cause a deprecation warning in the
future. Moose now uses Class::Load to provide this functionality, and you
should as well. (Dave Rolsky)
2.0205 2011-09-06
[NEW FEATURES]
- The Array and Hash native traits now provide a "shallow_clone" method,
which will return a reference to a new container with the same contents as
the attribute's reference.
[ENHANCEMENTS]
- Specifying an invalid value in a hashref 'handles' value now throws a
sensible error. Reported by Mark-Jason Dominus. RT #69990. (Dave
Rolsky)
[BUG FIXES]
- When specifying an attribute trait, passing options for the trait besides
-alias or -excludes caused a warning. However, passing other options is
totally valid when using MooseX::Role::Parameterized. Fixes RT
#70419. (sartak)
- Allow regexp objects in duck_type constraints (to bring this in line with
the Object constraint).
2.0204 2011-08-25
[BUG FIXES]
- Validating duck_type type constraint turned out to work only by accident,
and only when not running under the debugger. This has been fixed.
(Florian Ragwitz)
[OTHER]
- Loosen the dependency on ExtUtils::ParseXS.
2.0203 2011-08-23
[BUG FIXES]
- is_class_loaded now properly detects packages which have a version object
in their $VERSION.
- Fix XS compilation under blead.
2.0202 2011-07-26
[BUG FIXES]
- Be more consistent about how type constraint messages are handled.
2.0201 2011-07-22
[BUG FIXES]
- Moose::Util::does_role shouldn't call ->does on things that don't inherit
from Moose::Object.
- Make ->does initialize the metaclass, so that calling it as a class method
on a class which sets up inheritance via some method other than extends
works properly (this fixes an issue with MooseX::Types).
- Make Dist::CheckConflicts a runtime requirement, so moose-outdated always
works.
2.0200 2011-07-18
[OTHER]
- No changes from 2.0105 (other than a few minor documentation tweaks).
2.0105 2011-06-27 (TRIAL RELEASE)
[ENHANCEMENTS]
- Moose::Util::does_role now respects overridden ->does methods. (doy)
2.0104 2011-06-20 (TRIAL RELEASE)
[OTHER]
- Include changes from 2.0010.
2.0103 2011-06-20 (TRIAL RELEASE)
[DEPRECATIONS]
- Several things that have been deprecated for a while have been removed. See
the 2.0000 section in Moose::Manual::Delta for details.
[NEW FEATURES]
- New Moose::Util::TypeConstraints::union function for creating union type
constraints without having to rely on the string type constraint parsing.
This also allows for creating unions of anonymous type constraints.
(kentnl)
[OTHER]
- Include changes from Moose 2.0009.
2.0102 2011-06-18 (TRIAL RELEASE)
[ENHANCEMENTS]
- The native Array trait now has a 'first_index' method, which works just
like the version in List::MoreUtils. (Karen Etheridge)
- Clean up some internal code to help out extensions.
[OTHER]
- Include changes from Moose 2.0008.
2.0101 2011-06-06 (TRIAL RELEASE)
[OTHER]
- Various packaging issues.
2.0100 2011-06-06 (TRIAL RELEASE)
[DEPRECATIONS]
- Using a hand-optimized type constraint is now deprecated. In keeping with
our release policy, this won't actually start warning until the 2.0200
release.
[NEW FEATURES]
- Type constraints can now provide inlined versions, which should make
inlined code which uses type constraints (such as accessors) faster. This
replaces the existing hand-optimized constraint feature. (Dave Rolsky)
[ENHANCEMENTS]
- Remove a lot of cases where generated methods closed over meta objects.
Most simple cases should now only close over simple data types and
coderefs. This should make deparsing simpler.
2.0010 2011-06-20
[BUG FIXES]
- Fix regression in 2.0009 and 2.0103 when applying roles during init_meta in
an exporter that also re-exports Moose or Moose::Role. (t0m, ilmari)
2.0009 2011-06-19
[BUG FIXES]
- duck_type type constraints now report reasonable errors when given
something which isn't an instance of an object. (t0m)
- Moose::Util::apply_all_roles now works even if the applicant is a non-Moose
class. (perigrin)
- When an object is reblessed, triggers are called on attributes that are
set during the reblessing. (Karen Etheridge).
[OTHER]
- Better error message if Moose->init_meta is called with a 'metaclass'
option when that metaclass hasn't been loaded. (jasonmay)
2.0008 2011-06-16
[BUG FIXES]
- The 'accessor' native delegation for hashrefs now allows setting the value
to undef. (sugoik, doy)
[ENHANCEMENTS]
- Various generated methods have more useful context information. (doy)
2.0007 2011-05-15
[BUG FIXES]
- Make sure weak attributes remain weak when cloning. (doy, rafl)
2.0006 2011-05-09
[BUG FIXES]
- Revert the List::MoreUtils version bump, as it breaks backwards
compatibility. The dependency will be bumped with Moose 2.0200.
2.0005 2011-05-09
[BUG FIXES]
- Only sort the alias keys when determining caching.
2.0004 2011-05-09
[BUG FIXES]
- Bump the List::MoreUtils dep to avoid buggy behavior in old versions.
- Sort the list of roles and the alias and excludes parameters when
determining caching, since their order doesn't matter.
2.0003 2011-05-09
[BUG FIXES]
- Applying multiple role objects (rather than role names) at once no longer
skips every other role. (rjbs)
- Caching of anon classes now works more sanely in the presence of role
application parameters - alias and excludes options are taken into account,
and caching is disabled entirely if other parameters exist. Asking for
caching (instead of just not weakening) when parameters are given will
begin warning in Moose 2.0200. (doy, autarch)
2.0002 2011-04-28
[ENHANCEMENTS]
- Provide definition context information for constructors and destructors, so
that they will show up as something other than "generated method (unknown
origin)". Also, add the package that accessors are defined in to their
definition context.
- Use Devel::PartialDump in type constraint error messages, if it is
installed.
[BUG FIXES]
- Stop hiding warnings produced by throwing errors in DEMOLISH methods.
- The 'reset' native delegation for Counter attributes will now also respect
builders (previously, it only respected defaults).
2.0001 2011-04-22
[ENHANCEMENTS]
- Anonymous classes and roles now have a unified implementation in
Class::MOP::Package. This means that anonymous packages are now also
possible. (Shawn M Moore, doy)
[BUG FIXES]
- No longer call XSLoader from multiple places, as this causes issues on
older perls. (doy, ribasushi)
- Moose::Meta::Role->create now accepts the 'roles' parameter, as it was
documented to. (Chris Weyl)
- Depend on Eval::Closure 0.04, which fixes some issues in mod_perl
environments. (doy, mateu)
2.0000 2011-04-11
[API CHANGES]
- The RegexpRef type constraint now accepts regular expressions blessed into
other classes, such as those found in pluggable regexp engines.
Additionally the 'Object' constraint no longer rejects objects implemented
as a blessed regular expression. (David Leadbeater)
[DOCUMENTATION]
- The lazy_build attribute feature was mostly removed from the docs and is
no longer encouraged.
[OTHER]
- Moose::Manual::Support now explicitly states when major releases are
allowed to happen (January, April, July, or October).
1.9906 2011-04-04 (TRIAL RELEASE)
[OTHER]
- Update conflicts list.
- Minor pod updates.
1.9905 2011-03-28 (TRIAL RELEASE)
[NEW FEATURES]
- The Moose::Meta::Role::Attribute class now has an original_role method
which returns the role which first defined an attribute. See the docs for
details. (Dave Rolsky)
- Moose::Util::MetaRole will make sure that the class to which you're
applying metaroles or base class roles can actually have them applied. If
not (it's not a Moose class, it has a non-Moose metaclass, etc.), then it
gives a useful error message. Previously, this would just end up dying in
the MetaRole code without a useful message. (Dave Rolsky)
[BUG FIXES]
- When a role had its own applied_attribute metaclass (usually from MetaRole
application), that metaclass would get lost when that role participated in
role composition. It was also lost if that role was consumed by some other
role. Both of these cases have been fixed. Attributes are always applied
with the applied_attribute metaclass of the role which originally defined
them. (Dave Rolsky)
1.9904 2011-03-04 (TRIAL RELEASE)
[BUG FIXES]
- Reinitializing anonymous roles used to accidentally clear out the role's
stash in some circumstances. This is now fixed. (doy)
- The Int type constraint now rejects integers with trailing newlines.
(Matthew Horsfall)
1.9903 2011-02-28 (TRIAL RELEASE)
[BUG FIXES]
- Reverse the order that Moose::Exporter 'also' exports are dispatched. When
trying to re-export from a package that itself exported a modified set of
Moose sugar, you'd get the original Moose sugar instead of the overrides.
There are also now tests for this. (perigrin)
- Don't initialize lazy attributes with defaults in the constructor (for
immutable classes). (mo)
- When reinitializing meta objects for classes and roles, we failed to
preserve roles and role applications. This led to weird bugs. Many MooseX
modules end up reinitializing your class or role. (Dave Rolsky)
1.9902 2011-01-03 (TRIAL RELEASE)
[OTHER]
- Fix generation of CCFLAGS.
- Add a bit more Dist::Zilla functionality.
1.9901 2011-01-03 (TRIAL RELEASE)
[OTHER]
- Fix some indexing issues.
- Fix a few issues with the conflict checking stuff.
1.9900 2011-01-01 (TRIAL RELEASE)
[OTHER]
- The entire Class::MOP distribution has been merged with Moose. In the
future, the Class::MOP code itself will be merged into Moose, and
eventually the Class::MOP namespace will disappear entirely. For the
current release, we have simply changed how Class::MOP is
distributed. (Dave Rolsky).
- Switched to Dist::Zilla for development. However, we still have a minimal
Makefile.PL in the repository that can be used for development. (Dave
Rolsky)
[API CHANGES]
- Roles now have their own default attribute metaclass to use during
application to a class, rather than just using the class's
attribute_metaclass. This is also overridable via ::MetaRole, with the
applied_attribute key in the role_metaroles hashref (doy).
- The internal code used to generate inlined methods (accessor, constructor,
etc.) has been massively rewritten. MooseX modules that do inlining will
almost certainly need to be updated as well.
[ENHANCEMENTS]
- We now load the roles needed for native delegations only as needed. This
speeds up the compilation time for Moose itself. (doy)
1.25 2011-04-01
[BUG FIXES]
- Reinitializing anonymous roles used to accidentally clear out the role's
stash in some circumstances. This is now fixed. (doy) (backported from
1.9904)
1.24 2011-02-22
[BUG FIXES]
- Reverse the order that Moose::Exporter 'also' exports are dispatched. When
trying to re-export from a package that itself exported a modified set of
Moose sugar, you'd get the original Moose sugar instead of the overrides.
There are also now tests for this. (perigrin) (backported from 1.9903)
1.23 2011-02-13
[PACKAGING FIX]
- The 1.22 release had a bad MANIFEST. This has been fixed.
1.22 2011-02-13
[BUG FIXES]
- When reinitializing meta objects for classes and roles, we failed to
preserve roles and role applications. This led to weird bugs. Many MooseX
modules end up reinitializing your class or role. (Dave Rolsky) (backported
from 1.9903)
1.21 2010-11-24
[ENHANCEMENTS]
- The Support manual has been updated to reflect our new major/minor version
policy. (Chris Prather)
- The Contributing manual has been updated to reflect workflow changes based
on this new support policy. (doy)
[BUG FIXES]
- The role attribute metaclass did not inherit from Class::MOP::Object,
which could cause errors when trying to resolve metaclass compatibility
issues. Reported by Daniel Ruoso. (doy)
- The lazy_build feature was accidentally removed from all the docs. Now
it's listed in Moose.pm again. (Chris Prather)
1.20 2010-11-19
[BUG FIXES]
- When using native delegations, if an array or hash ref member failed a
type constraint check, Moose ended up erroring out with "Can't call method
"get_message" on unblessed reference" instead of generating a useful error
based on the failed type constraint. Reported by t0m. RT #63113. (Dave
Rolsky)
1.19 2010-11-02
[BUG FIXES]
- There was still one place in the code trying to load Test::Exception
instead of Test::Fatal. (Karen Etheridge)
1.18 2010-10-31
[ENHANCEMENTS]
- Type constraint objects now have an assert_coerce method which will either
return a valid value or throw an error. (rjbs)
- We now warn when an accessor for one attribute overwrites an accessor for
another attribute. RT #57510. (Dave Rolsky)
[BUG FIXES]
- The native Array and Hash delegation methods now coerce individual new
members if the _member type_ has a coercion. In other words, if the array
reference is defined as an ArrayRef[DateTime], and you've defined a
coercion from Int to DateTime, then pushing an integer via a delegation
method will coerce the integer to a DateTime object. Reported by Karen
Etheridge. RT #62351. (Dave Rolsky)
- An attribute using native delegations did not always properly coerce and
type check a lazily set default value. (doy and Dave Rolsky)
- Using a regexp to define delegations for a class which was not yet loaded
did not actually work, but did not explicitly fail. However, it caused an
error when the class was loaded later. Reported by Max Kanat-Alexander. RT
#60596. (Dave Rolsky)
- Attempting to delegate to a class or role which is not yet loaded will now
throw an explicit error. (Dave Rolsky)
- Attempting to set lazy_build in an inherited attribute was ignored. RT
#62057. (perigrin)
[OTHER]
- The Moose test suite now uses Test::Fatal instead of
Test::Exception. (rjbs)
1.17 2010-10-19
[BUG FIXES]
- Make native delegation inlining work with instance metaclasses where slot
access is an do {} block, like Kioku. This fixes the use of native
delegations together with Kioku. (Scott, doy)
1.16 2010-10-18
[ENHANCEMENTS]
- Almost every native delegation method which changes the attribute value
now has an explicitly documented return value. In general, this return
value matches what Perl would return for the same operation. (Dave Rolsky)
- Lots of work on native delegation documentation, including documenting
what arguments each native delegation method allows or requires. (Dave
Rolsky)
- Passing an odd number of args to ->new() now gives a more useful warning
than Perl's builtin warning. Suggested by Sir Robert Burbridge. (Dave
Rolsky)
- Allow disabling stack traces by setting an environment variable. See
Moose::Error::Default for details. This feature is considered
experimental, and may change in a future release. (Marcus Ramberg)
- The deprecation warning for using alias and excludes without a leading
dash now tells you the role being applied and what it was being applied
to. (mst).
[BUG FIXES]
- A number of native trait methods which expected strings as arguments did
not allow the empty string. This included Array->join, String->match,
String->replace, and String->substr. Reported by Whitney Jackson. RT
#61962. (Dave Rolsky)
- 'no Moose' no longer inadvertently removes imports it didn't create
itself. RT #60013. (Florian Ragwitz, doy)
- Roles now support passing an array reference of method names to method
modifier sugar functions. (doy)
- Native traits no longer use optimized inlining routines if the instance
requests it (in particular, if inline_get_slot_value doesn't return
something that can be assigned to). This should fix issues with
KiokuDB::Class. (doy)
- We now ignore all Class::MOP and Moose classes when determining what
package called a deprecated feature. This should make the deprecation
warnings saner, and make it possible to turn them off more easily. (Dave
Rolsky)
- The deprecated "default is" warning no longer happens if the attribute has
any accessor method defined (accessor, reader, writer). Also, this warning
only happens when a method that was generated because of the "default is"
gets called, rather than when the attribute is defined. (Dave Rolsky)
- The "default default" code for some native delegations no longer issues a
deprecation warning when the attribute is required or has a builder. (Dave
Rolsky)
- Setting a "default default" caused a fatal error if you used the builder
or lazy_build options for the attribute. Reported by Kent Fredric. RT
#59613. (Dave Rolsky)
1.15 2010-10-05
[API CHANGES]
- Major changes to Native Traits, most of which make them act more like
"normal" attributes. This should be mostly compatible with existing code,
but see Moose::Manual::Delta for details.
- A few native traits (String, Counter, Bool) provide default values of "is"
and "default" when you created an attribute. Allowing them to provide
these values is now deprecated. Supply the value yourself when creating
the attribute.
- New option 'trait_aliases' for Moose::Exporter, which will allow you to
generate non-global aliases for your traits (and allow your users to
rename the aliases, etc). (doy)
- 'use Moose' and 'use Moose::Role' now accept a '-meta_name' option, to
determine which name to install the 'meta' name under. Passing 'undef'
to this option will suppress generation of the meta method entirely. (doy)
- Moose now warns if it overwrites an existing method named "meta" in your
class when you "use Moose". (doy)
[ENHANCEMENTS]
- Native Trait delegations are now all generated as inline code. This should
be much faster than the previous method of delegation. In the best case,
native trait methods will be very highly optimized.
- Reinitializing a metaclass no longer removes the existing method and
attribute objects (it instead fixes them so they are correct for the
reinitialized metaclass). This should make the order of loading many
MooseX modules less of an issue. (doy)
- The Moose::Manual docs have been revised and updated. (Dave Rolsky)
[BUG FIXES]
- If an attribute was weak, setting it to a non-ref value after the object
was constructed caused an error. Now we only call weaken when the new
value is a reference.
- t/040_type_constraints/036_match_type_operator.t failed on 5.13.5+. Fixed
based on a patch from Andreas Koenig.
1.14 2010-09-21
[BUG FIXES]
- Work around what looks like a bug in List::MoreUtils::any. This bug caused
a weird error when defining the same union type twice, but only when using
MooseX::Types. Reported by Curtis Jewell. RT #61001. (Dave Rolsky)
1.13 2010-09-13
[API CHANGES]
- The deprecation warnings for alias and excludes are back, use -alias and
-excludes instead. (Dave Rolsky)
[ENHANCEMENTS]
- When composing one role into another and there is an attribute conflict,
the error message now includes the attribute name. Reported by Sam
Graham. RT #59985. (Dave Rolsky)
- When a class is made immutable, the does_role method is overridden with a
much faster version that simply looks role names up in a hash. Code which
uses lots of role-based type constraints should be faster. (Dave Rolsky)
1.12 2010-08-28
[BUG FIXES]
- Fix the MANIFEST. Fixes RT #60831, reported by Alberto Simões.
1.11 2010-08-27
[API CHANGES]
- An attribute in a subclass can now override the value of "is". (doy)
- The deprecation warnings for alias and excludes have been turned back off
for this release, to give other module authors a chance to tweak their
code. (Dave Rolsky)
[BUG FIXES]
- mro::get_linear_isa was being called as a function rather than a method,
which caused problems with Perl 5.8.x. (t0m)
- Union types always created a type constraint, even if their constituent
constraints did not have any coercions. This bogus coercion always
returned undef, which meant that a union which included Undef as a member
always coerced bad values to undef. Reported by Eric Brine. RT
#58411. (Dave Rolsky)
- Union types with coercions would always fall back to coercing the value to
undef (unintentionally). Now if all the coercions for a union type fail,
the value returned by the coercion is the original value that we attempted
to coerce. (Dave Rolsky).
1.10 2010-08-22
[API CHANGES]
- The long-deprecated alias and excludes options for role applications now
issue a deprecation warning. Use -alias and -excludes instead. (Dave
Rolsky)
[BUG FIXES]
- Inlined code no longer stringifies numeric attribute defaults. (vg, doy)
- default => undef now works properly. (doy)
- Enum type constraints now throw errors if their values are nonsensical.
(Sartak)
[ENHANCEMENTS]
- Optimizations that should help speed up compilation time (Dave Rolsky).
1.09 2010-07-25
[API CHANGES]
- You can no longer pass "coerce => 1" for an attribute unless its type
constraint has a coercion defined. Doing so will issue a deprecation
warning. (Dave Rolsky)
- Previously, '+foo' only allowed a specific set of options to be
overridden, which made it impossible to change attribute options related
to extensions. Now we blacklist some options, and anything else is
allowed. (doy, Tuomas Jormola)
- Most features which have been declared deprecated now issue a warning using
Moose::Deprecated. Warnings are issued once per calling package, not
repeatedly. See Moose::Deprecated for information on how you can shut
these warnings up entirely. Note that deprecated features will eventually
be removed, so shutting up the warnings may not be the best idea. (Dave
Rolsky)
- Removed the long-deprecated Moose::Meta::Role->alias_method method. (Dave
Rolsky).
[NEW FEATURES]
- We no longer unimport strict and warnings when Moose, Moose::Role, or
Moose::Exporter are unimported. Doing this was broken if the user
explicitly loaded strict and warnings themself, and the results could be
generally surprising. We decided that it was best to err on the side of
safety and leave these on. Reported by David Wheeler. RT #58310. (Dave
Rolsky)
- New with_traits helper function in Moose::Util. (doy)
[BUG FIXES]
- Accessors will no longer be inlined if the instance metaclass isn't
inlinable. (doy)
- Use Perl 5.10's new recursive regex features, if possible, for the type
constraint parser. (doy, nothingmuch)
[ENHANCEMENTS]
- Attributes now warn if their accessors overwrite a locally defined
function (not just method). (doy)
[OTHER]
- Bump our required perl version to 5.8.3, since earlier versions fail tests
and aren't easily installable/testable.
1.08 2010-06-15
[ENHANCEMENTS]
- Refactored a small amount of Moose::Meta::Method::Constructor to allow it
to be overridden more easily (doy).
1.07 2010-06-05
[BUG FIXES]
- Fixed a minor metaclass compatibility fixing bug dealing with immutable
classes and non-class metaclass traits (doy, dougdude).
1.06 2010-06-01
[NEW FEATURES]
- Added '0+' overloading in Moose::Meta::TypeConstraint so that we can
more uniformly compare type constraints between 'classic' Moose type
constraints and MooseX::Types based type constraints.
1.05 2010-05-20
[API CHANGES]
- Packages and modules no longer have methods - this functionality was
moved back up into Moose::Meta::Class and Moose::Meta::Role individually
(through the Class::MOP::Mixin::HasMethods mixin) (doy).
- BUILDALL is now called by Moose::Meta::Class::new_object, rather than by
Moose::Object::new. (doy)
[NEW FEATURES]
- strict and warnings are now unimported when Moose, Moose::Role, or
Moose::Exporter are unimported. (doy, Adam Kennedy)
- Added a 'consumers' method to Moose::Meta::Role for finding all
classes/roles which consume the given role. (doy)
[BUG FIXES]
- Fix has '+attr' in Roles to explode immediately, rather than when the role
is applied to a class (t0m).
- Fix type constraint validation messages to not include the string 'failed'
twice in the same sentence (Florian Ragwitz).
- New type constraints will default to being unequal, rather than equal
(rjbs).
- The tests no longer check for perl's behavior of clobbering $@, which has
been fixed in perl-5.13.1 (Florian Ragwitz).
- Metaclass compatibility fixing has been completely rewritten, and should
be much more robust. (doy)
1.04 2010-05-20
- This release was broken and has been deleted from CPAN shortly after its
upload.
1.03 2010-05-06
[NEW FEATURES]
- Allow specifying required versions when setting superclasses or applying
roles (Florian Ragwitz).
1.02 2010-05-01
[BUG FIXES]
- Stop the natatime method provided by the native Array trait from returning
an exhausted iterator when being called with a callback. (Florian Ragwitz)
- Make Moose::Meta::TypeConstraint::Class correctly reject RegexpRefs.
(Florian Ragwitz)
- Calling is_subtype_of on a Moose::Meta::TypeConstraint::Class with itself or
the class the TC represents as an argument incorrectly returned true. This
behavior is correct for is_type_of, not is_subtype_of. (Guillermo Roditi)
- Use File::Temp for temp files created during tests. Previously, files were
written to the t/ dir, which could cause problems of the user running the
tests did not have write access to that directory.. (Chris Weyl, Ãvar
Arnfjörð Bjarmason)
- Pass role arguments along when applying roles to instances. (doy, lsm)
1.01 2010-03-26
[NEW FEATURES]
- The handles option now also accepts a role type constraint in addition to a
plain role name. (Florian Ragwitz)
[OTHER]
- Record the Sartak/doy debt properly in Changes (perigrin)
1.00 2010-03-25
[BUG FIXES]
- Moose::Meta::Attribute::Native::Trait::Code no longer creates reader
methods by default. (Florian Ragwitz)
[DOCUMENTATION]
- Improve various parts of the documentation and fix many typos.
(Dave Rolsky, Mateu Hunter, Graham Knop, Robin V, Jay Hannah, Jesse Luehrs)
[OTHER]
- Paid the $10 debt to doy from 0.80 2009-06-06 (Sartak)
0.99 2010-03-08
[NEW FEATURES]
- New method find_type_for in Moose::Meta::TypeConstraint::Union, for finding
which member of the union a given value validates for. (Cory Watson)
[BUG FIXES]
- DEMOLISH methods in mutable subclasses of immutable classes are now called
properly (Chia-liang Kao, Jesse Luehrs)
[NEW DOCUMENTATION]
- Added Moose::Manual::Support that defines the support, compatiblity, and
release policies for Moose. (Chris Prather)
0.98 2010-02-10
[BUG FIXES]
- An internals change in 0.97 broke role application to an instance in some
cases. The bug occurred when two different roles were applied to different
instances of the same class. (Rafael Kitover)
0.97 2010-02-09
[BUG FIXES]
- Calling ->reinitialize on a cached anonymous class effectively uncached
the metaclass object, causing the metaclass to go out of scope
unexpectedly. This could easily happen at a distance by applying a
metarole to an anonymous class. (Dave Rolsky).
0.96 2010-02-06
[NEW FEATURES]
- ScalarRef is now a parameterized type. You can now specify a type
constraint for whatever the reference points to. (Closes RT#50857)
(Michael G. Schwern, Florian Ragwitz)
[BUG FIXES]
- ScalarRef now accepts references to other references. (Closes RT#50934)
(Michael G. Schwern)
0.95 2010-02-04
[NEW FEATURES]
- Moose::Meta::Attribute::Native::Trait::Code now provides execute_method as
a delegation option. This allows the code reference to be called as a
method on the object. (Florian Ragwitz)
[ENHANCEMENTS]
- Moose::Object::does no longer checks the entire inheritance tree, since
Moose::Meta::Class::does_role already does this. (doy)
- Moose::Util::add_method_modifier (and subsequently the sugar functions
Moose::before, Moose::after, and Moose::around) can now accept arrayrefs,
with the same behavior as lists. Types other than arrayref and regexp
result in an error. (Dylan Hardison)
0.94 2010-01-18
[API CHANGES]
- Please see the changes listed for 0.93_01 and Moose::Manual::Delta.
[ENHANCEMENTS]
- Improved support for anonymous roles by changing various APIs to take
Moose::Meta::Role objects as well as role names. This included
- Moose::Meta::Class->does_role
- Moose::Meta::Role->does_role
- Moose::Util::does_role
- Moose::Util::apply_all_roles
- Moose::Util::ensure_all_roles
- Moose::Util::search_class_by_role
Requested by Shawn Moore. Addresses RT #51143 (and then some). (Dave Rolsky)
[BUG FIXES]
- Fix handling of non-alphanumeric attributes names like '@foo'. This should
work as long as the accessor method names are explicitly set to valid Perl
method names. Reported by Doug Treder. RT #53731. (Dave Rolsky)
0.93_03 2010-01-05
[BUG FIXES]
- Portability fixes to our XS code so we compile with 5.8.8 and Visual
C++. Fixes RT #53391. Reported by Taro Nishino. (rafl)
0.93_02 2010-01-05
[BUG FIXES]
- Depend on Class::MOP 0.97_01 so we can get useful results from CPAN
testers. (Dave Rolsky)
0.93_01 2010-01-04
[API CHANGES]
See Moose::Manual::Delta for more details on backwards compatiblity issues.
- Role attributes are now objects of the Moose::Meta::Role::Attribute
class. (Dave Rolsky).
- There were major changes to how metaroles are applied. We now distinguish
between metaroles for classes vs those for roles. See the
Moose::Util::MetaRole docs for details. (Dave Rolsky)
- The old MetaRole API has been deprecated, but will continue to
work. However, if you are applying an attribute metaclass role, this may
break because of the fact that roles now have an attribute metaclass
too. (Dave Rolsky)
- Moose::Util::MetaRole::apply_metaclass_roles is now called
apply_metaroles. The old name is deprecated. (Dave Rolsky)
- The unimport subs created by Moose::Exporter now clean up re-exported
functions like blessed and confess, unless the caller imported them from
somewhere else too. See Moose::Manua::Delta for backcompat details. (rafl)
[ENHANCEMENTS AND BUG FIXES]
- Changed the Str constraint to accept magic lvalue strings like one gets from
substr et al, again. (sorear)
- Sped up the type constraint parsing regex. (Sam Vilain)
- The Moose::Cookbook::Extending::Recipe2 recipe was broken. Fix suggested by
jrey.
- Added Moose::Util::TypeConstraints exports when using oose.pm to allow
easier testing of TypeConstraints from the command line. (perigrin)
- Added a with_immutable test function to Test::Moose, to run a block of tests
with and without certain classes being immutable. (doy)
- We now use Module::Install extensions explicitly to avoid confusing errors
if they're not installed. We use Module::Install::AuthorRequires to stop
test extraction and general failures if you don't have the author side
dependencies installed.
- Fixed a grammar error in Moose::Cookbook::Basics::Recipe4. rt.cpan.org
#51791. (Amir E. Aharoni)
0.93 2009-11-19
- Moose::Object
- Calling $object->new() is no longer deprecated, and no longer
warns. (doy)
- Moose::Meta::Role
- The get_attribute_map method is now deprecated. (Dave Rolsky)
- Moose::Meta::Method::Delegation
- Preserve variable aliasing in @_ for delegated methods, so that
altering @_ affects the passed value. (doy)
- Moose::Util::TypeConstraints
- Allow array refs for non-anonymous form of enum and duck_type, not
just anonymous. The non-arrayref forms may be removed in the
future. (doy)
- Changed Str constraint to not accept globs (*STDIN or *FOO). (chansen)
- Properly document Int being a subtype of Str. (doy)
- Moose::Exporter
- Moose::Exporter using modules can now export their functions to the
main package. This applied to Moose and Moose::Role, among
others. (nothingmuch)
- Moose::Meta::Attribute
- Don't remove attribute accessors we never installed, during
remove_accessors. (doy)
- Moose::Meta::Attribute::Native::Trait::Array
- Don't bypass prototype checking when calling List::Util::first, to
avoid a segfault when it is called with a non-code argument. (doy)
- Moose::Meta::Attribute::Native::Trait::Code
- Fix passing arguments to code execute helpers. (doy)
0.92 2009-09-22
- Moose::Util::TypeConstraints
- added the match_on_type operator (Stevan)
- added tests and docs for this (Stevan)
- Moose::Meta::Class
- Metaclass compat fixing should already happen recursively, there's no
need to explicitly walk up the inheritance tree. (doy)
- Moose::Meta::Attribute
- Add tests for set_raw_value and get_raw_value. (nothingmuch)
0.91 2009-09-17
- Moose::Object
- Don't import any functions, in order to avoid polluting our namespace
with things that can look like methods (blessed, try, etc)
(nothingmuch)
- Moose::Meta::Method::Constructor
- The generated code needs to called Scalar::Util::blessed by its
fully-qualified name or else Perl can interpret the call to blessed as
an indirect method call. This broke Search::GIN, which in turn broke
KiokuDB. (nothingmuch)
0.90 2009-09-15
- Moose::Meta::Attribute::Native::Trait::Counter
- Moose::Meta::Attribute::Native::Trait::String
- For these two traits, an attribute which did not explicitly provide
methods to handles magically ended up delegating *all* the helper
methods. This has been removed. You must be explicit in your handles
declaration for all Native Traits. (Dave Rolsky)
- Moose::Object
- DEMOLISHALL behavior has changed. If any DEMOLISH method dies, we make
sure to rethrow its error message. However, we also localize $@ before
this so that if all the DEMOLISH methods success, the value of $@ will
be preserved. (nothingmuch and Dave Rolsky)
- We now also localize $? during object destruction. (nothingmuch and
Dave Rolsky)
- The handling of DEMOLISH methods was broken for immutablized classes,
which were not receiving the value of
Devel::GlobalDestruction::in_global_destruction.
- These two fixes address some of RT #48271, reported by Zefram.
- This is all now documented in Moose::Manual::Construction.
- Calling $object->new() is now deprecated. A warning will be
issued. (perigrin)
- Moose::Meta::Role
- Added more hooks to customize how roles are applied. The role
summation class, used to create composite roles, can now be changed
and/or have meta-roles applied to it. (rafl)
- The get_method_list method no longer explicitly excludes the "meta"
method. This was a hack that has been replaced by better hacks. (Dave
Rolsky)
- Moose::Meta::Method::Delegation
- fixed delegated methods to make sure that any modifiers attached to
the accessor being delegated on will be called (Stevan)
- added tests for this (Stevan)
- Moose::Meta::Class
- Moose no longer warns when a class that is being made immutable has
mutable ancestors. While in theory this is a good thing to warn about,
we found so many exceptions to this that doing this properly became
quite problematic.
0.89_02 2009-09-10
- Moose::Meta::Attribute::Native
- Fix Hash, which still had 'empty' instead of 'is_empty'. (hdp)
- Moose::Meta::Attribute::Native::Trait::Array
- Added a number of functions from List::Util and List::MoreUtils,
including reduce, shuffle, uniq, and natatime. (doy)
- Moose::Exporter
- This module will now generate an init_meta method for your exporting
class if you pass it options for
Moose::Util::MetaRole::apply_metaclass_roles or
apply_base_class_roles. This eliminates a lot of repetitive
boilerplate for typical MooseX modules. (doy).
- Documented the with_meta feature, which is a replacement for
with_caller. This feature was added by josh a while ago.
- The with_caller feature is now deprecated, but will not issue a
warning yet. (Dave Rolsky)
- If you try to wrap/export a subroutine which doesn't actually exist,
Moose::Exporter will warn you about this. (doy)
- Moose::Meta::Role::Application::ToRole
- When a role aliased a method from another role, it was only getting
the new (aliased) name, not the original name. This differed from what
happens when a class aliases a role's methods. If you _only_ want the
aliased name, make sure to also exclue the original name. (Dave
Rolsky)
0.89_01 2009-09-02
- Moose::Meta::Attribute
- Added the currying syntax for delegation from AttributeHelpers to the
existing delegation API. (hdp)
- Moose::Meta::Attribute::Native
- We have merged the functionality of MooseX::AttributeHelpers into the
Moose core with some API tweaks. You can continue to use
MooseX::AttributeHelpers, but it will not be maintained except
(perhaps) for critical bug fixes in the future. See
Moose::Manual::Delta for details. (hdp, jhannah, rbuels, Sartak,
perigrin, doy)
- Moose::Error::Croak
- Moose::Error::Confess
- Clarify documentation on how to use different error-throwing
modules. (Curtis Jewell)
- Moose
- Correct POD for builder to point to Recipe8, not 9. (gphat)
- Moose::Exporter
- When a nonexistent sub name is passed to as_is, with_caller, or
with_meta, throw a warning and skip the exporting, rather than
installing a broken sub. (doy)
- Moose::Meta::Class
- Moose now warns if you call C<make_immutable> for a class with mutable
ancestors. (doy)
0.89 2009-08-13
- Moose::Manual::Attributes
- Clarify "is", include discussion of "bare". (Sartak)
- Moose::Meta::Role::Method::Conflicting
- Moose::Meta::Role::Application::ToClass
- For the first set of roles involved in a conflict, report all
unresolved method conflicts, not just the first method. Fixes #47210
reported by Ovid. (Sartak)
- Moose::Meta::TypeConstraint
- Add assert_valid method to use a TypeConstraint for assertion (rjbs)
- Moose::Exporter
- Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
does. (doy)
- Allow specifying role options (alias, excludes, MXRP stuff) in the
arrayref passed to "use Moose -traits" (doy)
- Moose::Util
- Add functions meta_class_alias and meta_attribute_alias for creating
aliases for class and attribute metaclasses and metatraits. (doy)
- Moose::Meta::Attribute
- Moose::Meta::Method::Accessor
- A trigger now receives the old value as a second argument, if the
attribute had one. (Dave Rolsky)
- Moose::Meta::Method::Constructor
- Fix a bug with $obj->new when $obj has stringify overloading.
Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
- However, we will probably deprecate $obj->new, so please don't start
using it for new code!
- Moose::Meta::Role::Application
- Moose::Meta::Role::Application::RoleSummation
- Rename alias and excludes to -alias and -excludes (but keep the old
names for now, for backcompat) (doy)
0.88 2009-07-24
- Moose::Manual::Contributing
- Re-write the Moose::Manual::Contributing document to reflect
the new layout and methods of work for the Git repository. All
work now should be done in topic branches and reviewed by a
core committer before being applied to master. All releases
are done by a cabal member and merged from master to
stable. This plan was devised by Yuval, blame him. (perigrin)
- Moose::Meta::Role
- Create metaclass attributes for the different role application
classes. (rafl)
- Moose::Util::MetaRole
- Allow applying roles to a meta role's role application
classes. (rafl)
- Moose::Meta::Attribute
- Add weak_ref to allowed options for "has '+foo'" (mst)
- Moose::Meta::Method::Accessor
- No longer uses inline_slot_access in accessors, to support
non-lvalue-based meta instances. (sorear)
0.87 2009-07-07
- Moose::Meta::Method::Delegation
- Once again allow class names as well as objects for
delegation. This was changed in 0.86.
0.86 2009-07-03
- Moose::Meta::Class::Immutable::Trait
- Fixes to work with the latest Class::MOP.
- Moose::Meta::Method::Delegation
- Delegation now dies with a more useful error message if the
attribute's accessor returns something defined but
unblessed. (hdp)
0.85 2009-06-26
- Moose::Meta::Attribute
- The warning for 'no associated methods' is now split out into
the _check_associated_methods method, so that extensions can
safely call 'after install_accessors => ...'. This fixes a
warning from MooseX::AttributeHelpers. (hdp)
0.84 2009-06-26
- Moose::Role
- has now sets definition_context for attributes defined in
roles. (doy)
- Moose::Meta::Attribute
- When adding an attribute to a metaclass, if the attribute has
no associated methods, it will give a deprecation
warning. (hdp)
- Methods generated by delegation were not being added to
associated_methods. (hdp)
- Attribute accessors (reader, writer, accessor, predicate,
clearer) now warn if they overwrite an existing method. (doy)
- Attribute constructors now warn very noisily about unknown (or
misspelled) arguments
- Moose::Util::TypeConstraints
- Deprecated the totally useless Role type name, which just
checked if $object->can('does'). Note that this is _not_ the
same as a type created by calling role_type('RoleName').
- Moose::Util::TypeConstraints
- Moose::Meta::TypeConstraint::DuckType
- Reify duck type from a regular subtype into an actual class
(Sartak)
- Document this because Sartak did all my work for me
(perigrin)
- Moose::Meta::Attribute
- Allow Moose::Meta::TypeConstraint::DuckType in handles, since
it is just a list of methods (Sartak)
- Moose::Meta::Role
- The get_*_method_modifiers methods would die if the role had
no modifiers of the given type (Robert Buels).
0.83 2009-06-23
- Moose::Meta::Class
- Fix _construct_instance not setting the special __MOP__ object
key in instances of anon classes. (doy)
0.82 2009-06-21
- Moose::Manual::Types
- Mention MooseX::Types early to avoid users falling down the
string parsing rathole (mst)
- Moose::Manual::MooseX
- Add warnings about class-level extensions and mention considering
using plain objects instead
0.81 2009-06-07
- Bumped our Class::MOP prereq to the latest version (0.85), since
that's what we need.
0.80 2009-06-06
- Moose::Manual::FAQ
- Add FAQ about the coercion change from 0.76 because it came up
three times today (perigrin)
- Win doy $10 dollars because Sartak didn't think anybody
would document this fast enough (perigrin)
- Moose::Meta::Method::Destructor
- Inline a DESTROY method even if there are no DEMOLISH methods
to prevent unnecessary introspection in
Moose::Object::DEMOLISHALL
- Moose::*
- A role's required methods are now represented by
Moose::Meta::Role::Method::Required objects. Conflicts are now
represented by Moose::Meta::Role::Method::Conflicting
objects. The benefit for end-users in that unresolved
conflicts generate different, more instructive, errors,
resolving Ovid's #44895. (Sartak)
- Moose::Role
- Improve the error message of "extends" as suggested by Adam
Kennedy and confound (Sartak)
- Link to Moose::Manual::Roles from Moose::Role as we now have
excellent documentation (Adam Kennedy)
- Tests
- Update test suite for subname change in Class::MOP
(nothingmuch)
- Add TODO test for infinite recursion in Moose::Meta::Class
(groditi)
0.79 2009-05-13
- Tests
- More fixes for Win32 problems. Reported by Robert Krimen.
- Moose::Object
- The DEMOLISHALL method could still blow up in some cases
during global destruction. This method has been made more
resilient in the face of global destruction's random garbage
collection order.
- Moose::Exporter
- If you "also" a module that isn't loaded, the error message
now acknowledges that (Sartak)
- Moose
- When your ->meta method does not return a Moose::Meta::Class,
the error message gave the wrong output (Sartak)
0.78 2009-05-12
- Moose::Cookbook::FAQ and Moose::Cookbook::WTF
- Merged these documents into what is now Moose::Manual::FAQ
- Moose::Unsweetened
- Moved to Moose::Manual::Unsweetened
- Moose::Cookbook::Basics::Recipes 9-12
- Renamed to be 8-11, since recipe 8 did not exist
- Moose::Exporter
- Make Moose::Exporter import strict and warnings into packages
that use it (doy)
- Moose::Object
- Fix DEMOLISHALL sometimes not being able to find DEMOLISH
methods during global destruction (doy)
- Moose::Meta::Class
- Moose::Meta::Role::Application::ToClass
- Track the Role::Application objects created during class-role
consumption (Sartak)
- Moose::Meta::Class
- Fix metaclass incompatibility errors when extending a vanilla perl
class which isa Moose class with a metaclass role applied (t0m)
- Moose::Meta::Role
- Add a role-combination hook, _role_for_combination, for the
benefit of MooseX::Role::Parameterized (Sartak)
- Tests
- Some tests were failing on Win32 because they explicit checked
warning output for newlines. Reported by Nickolay Platonov.
0.77 2009-05-02
- Moose::Meta::Role
- Add explicit use of Devel::GlobalDestruction and Sub::Name
(perigrin)
- Moose::Object
- Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
or not we are currently in global destruction (doy)
- Add explicit use of Devel::GlobalDestruction and Sub::Name
(perigrin)
- Moose::Cookbook::FAQ
- Reworked much of the existing content to be more useful to
modern Moose hackers (Sartak)
- Makefile.PL
- Depend on Class::MOP 0.83 instead of 0.82_01.
0.76 2009-04-27
- Moose::Meta::TypeConstraint
- Do not run coercions in coerce() if the value already passes the type
constraint (hdp)
- Moose::Meta::TypeConstraint::Class
- In validation error messages, specifically say that the value is not
an instance of the class. This should alleviate some frustrating
forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
- Moose::Meta::Role::Application::ToClass
- Revert the class-overrides-role warning in favor of a solution outside
of the Moose core (Sartak)
- Tests
- Make Test::Output optional again, since it's only used in a few files
(Sartak)
0.75_01 2009-04-23
- Moose::Meta::Role::Application::ToClass
- Moose now warns about each class overriding methods from roles it
consumes (Sartak)
- Tests
- Warnings tests have standardized on Test::Output which is now an
unconditionally dependency (Sartak)
- Moose::Meta::Class
- Changes to immutabilization to work with Class::MOP 0.82_01+.
0.75 2009-04-20
- Moose
- Moose::Meta::Class
- Move validation of not inheriting from roles from Moose::extends to
Moose::Meta::Class::superclasses (doy)
- Moose::Util
- add ensure_all_roles() function to encapsulate the common "apply this
role unless the object already does it" pattern (hdp)
- Moose::Exporter
- Users can now select a different metaclass with the "-metaclass"
option to import, for classes and roles (Sartak)
- Moose::Meta::Role
- Make method_metaclass an attr so that it can accept a metarole
application. (jdv)
0.74 2009-04-07
- Moose::Meta::Role
- Moose::Meta::Method::Destructor
- Include stack traces in the deprecation warnings.
(Florian Ragwitz)
- Moose::Meta::Class
- Removed the long-deprecated _apply_all_roles method.
- Moose::Meta::TypeConstraint
- Removed the long-deprecated union method.
0.73_02 2009-04-06
- More deprecations and renamings
- Moose::Meta::Method::Constructor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- Moose::Object
- The DEMOLISHALL method could throw an exception during global
destruction, meaning that your class's DEMOLISH methods would
not be properly called. Reported by t0m.
- Moose::Meta::Method::Destructor
- Destructor inlining was totally broken by the change to the
is_needed method in 0.72_01. Now there is a test for this
feature, and it works again.
- Moose::Util
- Bold the word 'not' in the POD for find_meta (t0m)
0.73_01 2009-04-05
- Moose::*
- Call user_class->meta in fewer places, with the eventual goal
of allowing the user to rename or exclude ->meta
altogether. Instead uses Class::MOP::class_of. (Sartak)
- Moose::Meta::Method::Accessor
- If an attribute had a lazy default, and that value did not
pass the attribute's type constraint, it did not get the
message from the type constraint, instead using a generic
message. Test provided by perigrin.
- Moose::Util::TypeConstraints
- Add duck_type keyword. It's sugar over making sure an object
can() a list of methods. This is easier than jrockway's
suggestion to fork all of CPAN. (perigrin)
- add tests and documentation (perigrin)
- Moose
- Document the fact that init_meta() returns the target class's
metaclass object. (hdp)
- Moose::Cookbook::Extending::Recipe1
- Moose::Cookbook::Extending::Recipe2
- Moose::Cookbook::Extending::Recipe3
- Moose::Cookbook::Extending::Recipe4
- Make init_meta() examples explicitly return the metaclass and
point out this fact. (hdp)
- Moose::Cookbook::Basics::Recipe12
- A new recipe, creating a custom meta-method class.
- Moose::Cookbook::Meta::Recipe6
- A new recipe, creating a custom meta-method class.
- Moose::Meta::Class
- Moose::Meta::Method::Constructor
- Attribute triggers no longer receive the meta-attribute object
as an argument in any circumstance. Previously, triggers
called during instance construction were passed the
meta-attribute, but triggers called by normal accessors were
not. Fixes RT#44429, reported by Mark Swayne. (hdp)
- Moose::Manual::Attributes
- Remove references to triggers receving the meta-attribute object as an
argument. (hdp)
- Moose::Cookbook::FAQ
- Remove recommendation for deprecated Moose::Policy and
Moose::Policy::FollowPBP; recommend MooseX::FollowPBP
instead. (hdp)
- Many methods have been renamed with a leading underscore, and a
few have been deprecated entirely. The methods with a leading
underscore are consider "internals only". People writing
subclasses or extensions to Moose should feel free to override
them, but they are not for "public" use.
- Moose::Meta::Class
- check_metaclass_compatibility => _check_metaclass_compatibility
- Moose::Meta::Method::Accessor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- /(generate_.*_method(?:_inline)?)/ => '_' . $1
- Moose::Meta::Method::Constructor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- /(generate_constructor_method(?:_inline)?)/ => '_' . $1
- attributes => _attributes (now inherited from parent)
- meta_instance => _meta_instance (now inherited from parent)
- Moose::Meta::Role
- alias_method is deprecated. Use add_method
0.73 2009-03-27
- No changes from 0.72_01.
0.72_01 2009-03-26
- Everything
- Almost every module has complete API documentation. A few
methods (and even whole classes) have been intentionally
excluded pending some rethinking of their APIs.
- Moose::Util::TypeConstraints
- Calling subtype with a name as the only argument is now an
exception. If you want an anonymous subtype do:
my $subtype = subtype as 'Foo';
- Moose::Cookbook::Meta::Recipe7
- A new recipe, creating a custom meta-instance class.
- Moose::Cookbook::Basics::Recipe5
- Fix various typos and mistakes. Includes a patch from Radu
Greab.
- Moose::Cookbook::Basics::Recipe9
- Link to this recipe from Moose.pm's builder blurb
- Moose::Exporter
- When wrapping a function with a prototype, Moose::Exporter now
makes sure the wrapped function still has the same
prototype. (Daisuke Maki)
- Moose::Meta::Attribute
- Allow a subclass to set lazy_build for an inherited
attribute. (hdp)
- Makefile.PL
- Explicitly depend on Data::OptList. We already had this dependency
via Sub::Exporter, but since we're using it directly we're
better off with it listed. (Sartak)
- Moose::Meta::Method::Constructor
- Make it easier to subclass the inlining behaviour. (Ash
Berlin)
- Moose::Manual::Delta
- Details significant changes in the history of Moose, along
with recommended workarounds.
- Moose::Manual::Contributing
- Contributor's guide to Moose.
- Moose::Meta::Method::Constructor
- The long-deprecated intialize_body method has been removed
(yes, spelled like that).
- Moose::Meta::Method::Destructor
- This is_needed method is now always a class method.
- Moose::Meta::Class
- Changes to the internals of how make_immutable works to match
changes in latest Class::MOP.
0.72 2009-02-23
- Moose::Object
- Moose::Meta::Method::Constructor
- A mutable class accepted Foo->new(undef) without complaint,
while an immutable class would blow up with an unhelpful
error. Now, in both cases we throw a helpful error
instead. Reported by doy.
0.71_01 2009-02-22
- Moose::Cookbook
- Hopefully fixed some POD errors in a few recipes that caused
them to display weird on search.cpan.org.
- Moose::Util::TypeConstraints
- Calling type or subtype without the sugar helpers (as, where,
message) is now deprecated.
- The subtype function tried hard to guess what you meant, but
often got it wrong. For example:
my $subtype = subtype as 'ArrayRef[Object]';
This caused an error in the past, but now works as you'd
expect.
- Everywhere
- Make sure Moose.pm is loaded before calling
Moose->throw_error. This wasn't normally an issue, but could
bite you in weird cases.
0.71 2009-02-19
- Moose::Cookbook::Basics::Recipe11
- A new recipe which demonstrates the use of BUILDARGS and
BUILD. (Dave Rolsky)
- Moose::Cookbook::Roles::Recipe3
- A new recipe, applying a role to an object instance. (Dave
Rolsky)
- Moose::Exporter
- Allow overriding specific keywords from "also" packages. (doy)
- Tests
- Replace hardcoded cookbook tests with Test::Inline to ensure
the tests match the actual code in the recipes. (Dave Rolsky)
- Moose::Cookbook
- Working on the above turned up a number of little bugs in the
recipe code. (Dave Rolsky)
- Moose::Util::TypeConstraints::Optimized
- Just use Class::MOP for the optimized ClassName check. (Dave
Rolsky)
0.70 2009-02-14
- Moose::Util::TypeConstraints
- Added the RoleName type (stevan)
- added tests for this (stevan)
- Moose::Cookbook::Basics::Recipe3
- Updated the before qw[left right] sub to be a little more
defensive about what it accepts (stevan)
- added more tests to t/000_recipies/basics/003_binary_tree.t
(stevan)
- Moose::Object
- We now always call DEMOLISHALL, even if a class does not
define DEMOLISH. This makes sure that method modifiers on
DEMOLISHALL work as expected. (doy)
- added tests for this (EvanCarroll)
- Moose::Util::MetaRole
- Accept roles for the wrapped_method_metaclass (rafl)
- added tests for this (rafl)
- Moose::Meta::Attribute
- We no longer pass the meta-attribute object as a final
argument to triggers. This actually changed for inlined code a
while back, but the non-inlined version and the docs were
still out of date.
- Tests
- Some tests tried to use Test::Warn 0.10, which had bugs. Now
they require 0.11. (Dave Rolsky)
- Documentation
- Lots of small changes to the manual, cookbook, and
elsewhere. These were based on feedback from various
users, too many to list here. (Dave Rolsky)
0.69 2009-02-12
- Moose
- Make some keyword errors use throw_error instead of croak
since Moose::Exporter wraps keywords now (Sartak)
- Moose::Cookbook::*
- Revised every recipe for style and clarity. Also moved some
documentation out of cookbook recipes and into Moose::Manual
pages. This work was funded as part of the Moose docs grant
from TPF. (Dave Rolsky)
- Moose::Meta::Method::Delegation
- If the attribute doing the delegation was not populated, the
error message did not specify the attribute name
properly. (doy)
0.68 2009-02-04
- POD
- Many spelling, typo, and formatting fixes by daxim.
- Moose::Manual::Attributes
- The NAME section in the POD used "Attribute" so search.cpan
didn't resolve links from other documents properly.
- Moose::Meta::Method::Overriden
- Now properly spelled as Overridden. Thanks to daxim for
noticing this.
0.67 2009-02-03
- Moose::Manual::*
- Lots of little typo fixes and a few clarifications. Several
pages didn't have proper titles, and so weren't actually
visible on search.cpan.org. Thanks to hanekomu for a variety
of fixes and formatting improvements.
0.66 2009-02-03
- Moose::Manual
- This is a brand new, extensive manual for Moose. This aims to
provide a complete introduction to all of Moose's
features. This work was funded as part of the Moose docs grant
from TPF. (Dave Rolsky)
- Moose::Meta::Attribute
- Added a delegation_metaclass method to replace a hard-coded
use of Moose::Meta::Method::Delegation. (Dave Rolsky)
- Moose::Util::TypeConstraints
- If you created a subtype and passed a parent that Moose didn't
know about, it simply ignored the parent. Now it automatically
creates the parent as a class type. This may not be what you
want, but is less broken than before. (Dave Rolsky)
- Moose::Util::TypeConstraints
- This module tried throw errors by calling Moose->throw_error,
but it did not ensure that Moose was loaded first. This could
cause very unhelpful errors when it tried to throw an error
before Moose was loaded. (Dave Rolsky)
- Moose::Util::TypeConstraints
- You could declare a name with subtype such as "Foo!Bar" that
would be allowed, but if you used it in a parameterized type
such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
vetting on names created via the sugar functions, so that they
can only contain alphanumerics, ":", and ".". (Dave Rolsky)
0.65 2009-01-22
- Moose and Moose::Meta::Method::Overridden
- If an overridden method called super(), and then the
superclass's method (not overridden) _also_ called super(),
Moose went into an endless recursion loop. Test provided by
Chris Prather. (Dave Rolsky)
- Moose::Meta::TypeConstraint
- All methods are now documented. (gphat)
- t/100_bugs/011_DEMOLISH_eats_exceptions.t
- Fixed some bogus failures that occurred because we tried to
validate filesystem paths in a very ad-hoc and
not-quite-correct way. (Dave Rolsky)
- Moose::Util::TypeConstraints
- Added maybe_type to exports. See docs for details. (rjbs)
- Moose
- Added Moose::Util::TypeConstraints to the SEE ALSO
section. (pjf)
- Moose::Role
- Methods created via an attribute can now fulfill a "requires"
declaration for a role. (nothingmuch)
- Moose::Meta::Method::*
- Stack traces from inlined code will now report its line and
file as being in your class, as opposed to in Moose
guts. (nothingmuch).
0.64 2008-12-31
- Moose::Meta::Method::Accessor
- Always inline predicate and clearer methods (Sartak)
- Moose::Meta::Attribute
- Support for parameterized traits (Sartak)
- verify_against_type_constraint method to avoid duplication
and enhance extensibility (Sartak)
- Moose::Meta::Class
- Tests (but no support yet) for parameterized traits (Sartak)
- Moose
- Require Class::MOP 0.75+, which has the side effect of making
sure we work on Win32. (Dave Rolsky)
0.63 2008-12-08
- Moose::Unsweetened
- Some small grammar tweaks and bug fixes in non-Moose example
code. (Dave Rolsky)
0.62_02 2008-12-05
- Moose::Meta::Role::Application::ToClass
- When a class does not provide all of a role's required
methods, the error thrown now mentions all of the missing
methods, as opposed to just the first one found. Requested by
Curtis Poe (RT #41119). (Dave Rolsky)
- Moose::Meta::Method::Constructor
- Moose will no longer inline a constructor for your class
unless it inherits its constructor from Moose::Object, and
will warn when it doesn't inline. If you want to force
inlining anyway, pass "replace_constructor => 1" to
make_immutable. Addresses RT #40968, reported by Jon
Swartz. (Dave Rolsky)
- The quoting of default values could be broken if the default
contained a single quote ('). Now we use quotemeta to escape
anything potentially dangerous in the defaults. (Dave Rolsky)
0.62_01 2008-12-03
- Moose::Object
- use the method->execute API for BUILDALL
and DEMOLISHALL (Sartak)
- Moose::Util::TypeConstraints
- We now make all the type constraint meta classes immutable
before creating the default types provided by Moose. This
should make loading Moose a little faster. (Dave Rolsky)
0.62 2008-11-26
- Moose::Meta::Role::Application::ToClass
Moose::Meta::Role::Application::ToRole
- fixed issues where excluding and aliasing the
same methods for a single role did not work
right (worked just fine with multiple
roles) (stevan)
- added test for this (stevan)
- Moose::Meta::Role::Application::RoleSummation
- fixed the error message when trying to compose
a role with a role it excludes (Sartak)
- Moose::Exporter
- Catch another case where recursion caused the value
of $CALLER to be stamped on (t0m)
- added test for this (t0m)
- Moose
- Remove the make_immutable keyword, which has been
deprecated since April. It breaks metaclasses that
use Moose without no Moose (Sartak)
- Moose::Meta::Attribute
- Removing an attribute from a class now also removes delegation
(handles) methods installed for that attribute (t0m)
- added test for this (t0m)
- Moose::Meta::Method::Constructor
- An attribute with a default that looked like a number (but was
really a string) would accidentally be treated as a number
when the constructor was made immutable (perigrin)
- added test for this (perigrin)
- Moose::Meta::Role
- create method for constructing a role
dynamically (Sartak)
- added test for this (Sartak)
- anonymous roles! (Sartak)
- added test for this (Sartak)
- Moose::Role
- more consistent error messages (Sartak)
- Moose::Cookbook::Roles::Recipe1
- attempt to explain why a role that just requires
methods is useful (Sartak)
0.61 2008-11-07
- Moose::Meta::Attribute
- When passing a role to handles, it will be loaded if necessary
(perigrin)
- Moose::Meta::Class
- Method objects returned by get_method (and other methods)
Could end up being returned without an associated_metaclass
attribute. Removing get_method_map, which is provided by
Class::MOP::Class, fixed this. The Moose version did nothing
different from its parent except introduce a bug. (Dave Rolsky)
- added tests for this (jdv79)
- Various
- Added a $VERSION to all .pm files which didn't have one. Fixes
RT #40049, reported by Adam Kennedy. (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe4
- Moose::Cookbook::Basics::Recipe6
- These files had spaces on the first line of the SYNOPSIS, as
opposed to a totally empty line. According to RT #40432, this
confuses POD parsers. (Dave Rolsky)
0.60 2008-10-24
- Moose::Exporter
- Passing "-traits" when loading Moose caused the Moose.pm
exports to be broken. Reported by t0m. (Dave Rolsky)
- Tests for this bug. (t0m)
- Moose::Util
- Change resolve_metaclass alias to use the new
load_first_existing_class function. This makes it a lot
simpler, and also around 5 times faster. (t0m)
- Add caching to resolve_metaclass_alias, which gives an order
of magnitude speedup to things which repeatedly call the
Moose::Meta::Attribute->does method, notably MooseX::Storage
(t0m)
- Moose::Util::TypeConstraint
- Put back the changes for parameterized constraints that
shouldn't have been removed in 0.59. We still cannot parse
them, but MooseX modules can create them in some other
way. See the 0.58 changes for more details. (jnapiorkowski)
- Changed the way subtypes are created so that the job is
delegated to a type constraint parent. This clears up some
hardcoded checking and should allow correct subtypes of
Moose::Meta::Type::Constraint. Don't rely on this new API too
much (create_child_type) because it may go away in the
future. (jnapiorkowski)
- Moose::Meta::TypeConstraint::Union
- Type constraint names are sorted as strings, not numbers.
(jnapiorkowski)
- Moose::Meta::TypeConstraint::Parameterizable
- New parameterize method. This can be used as a factory method
to make a new type constraint with a given parameterized
type. (jnapiorkowski)
- added tests (jnapiorkowski)
0.59 2008-10-14
- Moose
- Add abridged documentation for builder/default/initializer/
predicate, and link to more details sections in
Class::MOP::Attribute. (t0m)
- Moose::Util::TypeConstraints
- removed prototypes from all but the &-based stuff (mst)
- Moose::Util::TypeConstraints
- Creating a anonymous subtype with both a constraint and a
message failed with a very unhelpful error, but should just
work. Reported by t0m. (Dave Rolsky)
- Tests
- Some tests that used Test::Warn if it was available failed
with older versions of Test::Warn. Reported by Fayland. (Dave
Rolsky)
- Test firing behavior of triggers in relation to builder/default/
lazy_build. (t0m)
- Test behavior of equals/is_a_type_of/is_subtype_of for all
kinds of supported type. (t0m)
- Moose::Meta::Class
- In create(), do not pass "roles" option to the superclass
- added related test that creates an anon metaclass with
a required attribute
- Moose::Meta::TypeConstraint::Class
- Moose::Meta::TypeConstraint::Role
- Unify behavior of equals/is_a_type_of/is_subtype_of with
other types (as per change in 0.55_02). (t0m)
- Moose::Meta::TypeConstraint::Registry
- Fix warning when dealing with unknown type names (t0m)
- Moose::Util::TypeConstraints
- Reverted changes from 0.58 related to handle parameterized
types. This caused random failures on BSD and Win32 systems,
apparently related to the regex engine. This means that Moose
can no longer parse structured type constraints like
ArrayRef[Int,Int] or HashRef[name=>Str]. This will be
supported in a slightly different way via MooseX::Types some
time in the future. (Dave Rolsky)
0.58 2008-09-20
!! This release has an incompatible change regarding !!
!! how roles add methods to a class !!
- Roles and role application
! Roles now add methods by calling add_method, not
alias_method. They make sure to always provide a method
object, which will be cloned internally. This means that it is
now possible to track the source of a method provided by a
role, and even follow its history through intermediate roles.
This means that methods added by a role now show up when
looking at a class's method list/map. (Dave Rolsky)
- Makefile.PL
- From this release on, we'll try to maintain a list of
conflicting modules, and warn you if you have one
installed. For example, this release conflicts with ...
- MooseX::Singleton <= 0.11
- MooseX::Params::Validate <= 0.05
- Fey::ORM <= 0.10
In general, we try to not break backwards compatibility for
most Moose users, but MooseX modules and other code which
extends Moose's metaclasses is often affected by very small
changes in the Moose internals.
- Moose::Meta::Method::Delegation
- Moose::Meta::Attribute
- Delegation methods now have their own method class. (Dave
Rolsky)
- Moose::Meta::TypeConstraint::Parameterizable
- Added a new method 'parameterize' which is basically a factory
for the containing constraint. This makes it easier to create
new types of parameterized constraints. (jnapiorkowski)
- Moose::Meta::TypeConstraint::Union
- Changed the way Union types canonicalize their names to follow
the normalized TC naming rules, which means we strip all
whitespace. (jnapiorkowski)
- Moose::Util::TypeConstraints
- Parameter and Union args are now sorted, this makes Int|Str
the same constraint as Str|Int. (jnapiorkowski)
- Changes to the way Union types are parsed to more correctly
stringify their names. (jnapiorkowski)
- When creating a parameterized type, we now use the new
parameterize method. (jnapiorkowski)
- Incoming type constraint strings are now normalized to remove
all whitespace differences. (jnapiorkowski)
- Changed the way we parse type constraint strings so that we now
match TC[Int,Int,...] and TC[name=>Str] as parameterized type
constraints. This lays the foundation for more flexible type
constraint implementations.
- Tests and docs for all the above. (jnapiorkowski)
- Moose::Exporter
- Moose
- Moose::Exporter will no longer remove a subroutine that the
exporting package re-exports. Moose re-exports the
Carp::confess function, among others. The reasoning is that we
cannot know whether you have also explicitly imported those
functions for your own use, so we err on the safe side and
always keep them. (Dave Rolsky)
- added tests for this (rafl)
- Moose::Meta::Class
- Changes to how we fix metaclass compatibility that are much
too complicated to go into. The summary is that Moose is much
less likely to complain about metaclass incompatibility
now. In particular, if two metaclasses differ because
Moose::Util::MetaRole was used on the two corresponding
classes, then the difference in roles is reconciled for the
subclass's metaclass. (Dave Rolsky)
- Squashed an warning in _process_attribute (thepler)
- Moose::Meta::Role
- throw exceptions (sooner) for invalid attribute names (thepler)
- added tests for this (thepler)
- Moose::Util::MetaRole
- If you explicitly set a constructor or destructor class for a
metaclass object, and then applied roles to the metaclass,
that explicitly set class would be lost and replaced with the
default.
- Moose::Meta::Class
- Moose::Meta::Attribute
- Moose::Meta::Method
- Moose
- Moose::Object
- Moose::Error::Default
- Moose::Error::Croak
- Moose::Error::Confess
- All instances of confess() changed to use overridable
C<throw_error> method. This method ultimately calls a class
constructor, and you can change the class being called. In
addition, errors now pass more information than just a string.
The default C<error_class> behaves like C<Carp::confess>, so
the behavior is not visibly different for end users.
0.57 2008-09-03
- Moose::Intro
- A new bit of doc intended to introduce folks familiar with
"standard" Perl 5 OO to Moose concepts. (Dave Rolsky)
- Moose::Unsweetened
- Shows examples of two classes, each done first with and then
without Moose. This makes a nice parallel to
Moose::Intro. (Dave Rolsky)
- Moose::Util::TypeConstraints
- Fixed a bug in find_or_parse_type_constraint so that it
accepts a Moose::Meta::TypeConstraint object as the parent
type, not just a name (jnapiorkowski)
- added tests (jnapiorkowski)
- Moose::Exporter
- If Sub::Name was not present, unimporting failed to actually
remove some sugar subs, causing test failures (Dave Rolsky)
0.56 2008-09-01
For those not following the series of dev releases, there are
several major changes in this release of Moose.
! Moose::init_meta should now be called as a method. See the
docs for details.
- Major performance improvements by nothingmuch.
- New modules for extension writers, Moose::Exporter and
Moose::Util::MetaRole by Dave Rolsky.
- Lots of doc improvements and additions, especially in the
cookbook sections.
- Various bug fixes.
- Removed all references to the experimental-but-no-longer-needed
Moose::Meta::Role::Application::ToMetaclassInstance.
- Require Class::MOP 0.65.
0.55_04 2008-08-30
- Moose::Util::MetaRole
- Moose::Cookbook::Extending::Recipe2
- This simplifies the application of roles to any meta class, as
well as the base object class. Reimplemented metaclass traits
using this module. (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe1
- This a new recipe, an overview of various ways to write Moose
extensions (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe3
- Moose::Cookbook::Extending::Recipe4
- These used to be Extending::Recipe1 and Extending::Recipe2,
respectively.
0.55_03 2008-08-29
- No changes from 0.55_02 except increasing the Class::MOP
dependency to 0.64_07.
0.55_02 2008-08-29
- Makefile.PL and Moose.pm
- explicitly require Perl 5.8.0+ (Dave Rolsky)
- Moose::Util::TypeConstraints
- Fix warnings from find_type_constraint if the type is not
found (t0m).
- Moose::Meta::TypeConstraint
- Predicate methods (equals/is_a_type_of/is_subtype_of) now
return false if the type you specify cannot be found in the
type registry, rather than throwing an unhelpful and
coincidental exception. (t0m).
- added docs & test for this (t0m)
- Moose::Meta::TypeConstraint::Registry
- add_type_constraint now throws an exception if a parameter is
not supplied (t0m).
- added docs & test for this (t0m)
- Moose::Cookbook::FAQ
- Added a faq entry on the difference between "role" and "trait"
(t0m)
- Moose::Meta::Role
- Fixed a bug that caused role composition to not see a required
method when that method was provided by another role being
composed at the same time. (Dave Rolsky)
- test and bug finding (tokuhirom)
0.55_01 2008-08-20
!! Calling Moose::init_meta as a function is now !!
!! deprecated. Please see the Moose.pm docs for details. !!
- Moose::Meta::Method::Constructor
- Fix inlined constructor so that values produced by default
or builder methods are coerced as required. (t0m)
- added test for this (t0m)
- Moose::Meta::Attribute
- A lazy attribute with a default or builder did not attempt to
coerce the default value. The immutable code _did_
coerce. (t0m)
- added test for this (t0m)
- Moose::Exporter
- This is a new helper module for writing "Moose-alike"
modules. This should make the lives of MooseX module authors
much easier. (Dave Rolsky)
- Moose
- Moose::Cookbook::Meta::Recipe5
- Implemented metaclass traits (and wrote a recipe for it):
use Moose -traits => 'Foo'
This should make writing small Moose extensions a little
easier (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe1
- Removed any examples of direct hashref access, and applied an
editorial axe to reduce verbosity. (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe1
- Also applied an editorial axe here. (Dave Rolsky)
- Moose
- Moose::Cookbook::Extending::Recipe1
- Moose::Cookbook::Extending::Recipe2
- Rewrote extending and embedding moose documentation and
recipes to use Moose::Exporter (Dave Rolsky)
- Moose
- Moose::Role
- These two modules now warn when you load them from the main
package "main" package, because we will not export sugar to
main. Previously it just did nothing. (Dave Rolsky)
- Moose::Role
- Now provide an init_meta method just like Moose.pm, and you
can call this to provide an alternate role metaclass. (Dave
Rolsky and nothingmuch)
- get_method_map now respects the package cache flag (nothingmuch)
- Moose::Meta::Role
- Two new methods - add_method and wrap_method_body
(nothingmuch)
- many modules
- Optimizations including allowing constructors to accept hash
refs, making many more classes immutable, and making
constructors immutable. (nothingmuch)
0.55 2008-08-03
- Moose::Meta::Attribute
- breaking down the way 'handles' methods are
created so that the process can be more easily
overridden by subclasses (stevan)
- Moose::Meta::TypeConstraint
- fixing what is passed into a ->message with
the type constraints (RT #37569)
- added tests for this (Charles Alderman)
- Moose::Util::TypeConstraints
- fix coerce to accept anon types like subtype can (mst)
- Moose::Cookbook
- reorganized the recipes into sections - Basics, Roles, Meta,
Extending - and wrote abstracts for each section (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe10
- A new recipe that demonstrates operator overloading
in combination with Moose. (bluefeet)
- Moose::Cookbook::Meta::Recipe1
- an introduction to what meta is and why you'd want to make
your own metaclass extensions (Dave Rolsky)
- Moose::Cookbook::Meta::Recipe4
- a very simple metaclass example (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe1
- how to write a Moose-alike module to use your own object base
class (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe2
- how to write modules with an API just like C<Moose.pm> (Dave
Rolsky)
- all documentation
- Tons of fixes, both syntactical and grammatical (Dave
Rolsky, Paul Fenwick)
0.54 2008-07-03
... this is not my day today ...
- Moose::Meta::Attribute
- fixed legal_options_for_inheritance such that
clone_and_inherit options still works for
Class::MOP::Attribute objects and therefore
does not break MooseX::AttributeHelpers
(stevan)
0.53 2008-07-03
- Whoops, I guess I should run 'make manifest' before
actually releasing the module. No actual changes
in this release, except the fact that it includes
the changes that I didn't include in the last
release. (stevan--)
0.52 2008-07-03
- Moose
- added "FEATURE REQUESTS" section to the Moose docs
to properly direct people (stevan) (RT #34333)
- making 'extends' croak if it is passed a Role since
this is not ever something you want to do
(fixed by stevan, found by obra)
- added tests for this (stevan)
- Moose::Object
- adding support for DOES (as in UNIVERSAL::DOES)
(nothingmuch)
- added test for this
- Moose::Meta::Attribute
- added legal_options_for_inheritance (wreis)
- added tests for this (wreis)
- Moose::Cookbook::Snacks::*
- removed some of the unfinished snacks that should
not have been released yet. Added some more examples
to the 'Keywords' snack. (stevan)
- Moose::Cookbook::Style
- added general Moose "style guide" of sorts to the
cookbook (nothingmuch) (RT #34335)
- t/
- added more BUILDARGS tests (stevan)
0.51 2008-06-26
- Moose::Role
- add unimport so "no Moose::Role" actually does
something (sartak)
- Moose::Meta::Role::Application::ToRole
- when RoleA did RoleB, and RoleA aliased a method from RoleB in
order to provide its own implementation, that method still got
added to the list of required methods for consumers of
RoleB. Now an aliased method is only added to the list of
required methods if the role doing the aliasing does not
provide its own implementation. See Recipe 11 for an example
of all this. (Dave Rolsky)
- added tests for this
- Moose::Meta::Method::Constructor
- when a single argument that wasn't a hashref was provided to
an immutabilized constructor, the error message was very
unhelpful, as opposed to the non-immutable error. Reported by
dew. (Dave Rolsky)
- added test for this (Dave Rolsky)
- Moose::Meta::Attribute
- added support for meta_attr->does("ShortAlias") (sartak)
- added tests for this (sartak)
- moved the bulk of the `handles` handling to the new
install_delegation method (Stevan)
- Moose::Object
- Added BUILDARGS, a new step in new()
- Moose::Meta::Role::Application::RoleSummation
- fix typos no one ever sees (sartak)
- Moose::Util::TypeConstraints
- Moose::Meta::TypeConstraint
- Moose::Meta::TypeCoercion
- Attempt to work around the ??{ } vs. threads issue
(not yet fixed)
- Some null_constraint optimizations
0.50 2008-06-12
- Fixed a version number issue by bumping all modules
to 0.50.
0.49 2008-06-12
!! This version now approx. 20-25% !!
!! faster with new Class::MOP 0.59 !!
- Moose::Meta::Attribute
- fixed how the is => (ro|rw) works with
custom defined reader, writer and accessor
options.
- added docs for this (TODO).
- added tests for this (Thanks to Penfold)
- added the custom attribute alias for regular
Moose attributes which is "Moose"
- fix builder and default both being used
(groditi)
- Moose
Moose::Meta::Class
Moose::Meta::Attribute
Moose::Meta::Role
Moose::Meta::Role::Composite
Moose::Util::TypeConstraints
- switched usage of reftype to ref because
it is much faster
- Moose::Meta::Role
- changing add_package_symbol to use the new
HASH ref form
- Moose::Object
- fixed how DEMOLISHALL is called so that it
can be overrided in subclasses (thanks to Sartak)
- added test for this (thanks to Sartak)
- Moose::Util::TypeConstraints
- move the ClassName type check code to
Class::MOP::is_class_loaded (thanks to Sartak)
- Moose::Cookbook::Recipe11
- add tests for this (thanks to tokuhirom)
0.48 2008-05-29
(early morning release engineering)--
- fixing the version in Moose::Meta::Method::Destructor
which was causing the indexer to choke
0.47 2008-05-29
(late night release engineering)--
- fixing the version is META.yml, no functional
changes in this release
0.46 2008-05-28
!! This version now approx. 20-25% !!
!! faster with new Class::MOP 0.57 !!
- Moose::Meta::Class
- some optimizations of the &initialize method
since it is called so often by &meta
- Moose::Meta::Class
Moose::Meta::Role
- now use the get_all_package_symbols from the
updated Class::MOP, test suite is now 10 seconds
faster
- Moose::Meta::Method::Destructor
- is_needed can now also be called as a class
method for immutablization to check if the
destructor object even needs to be created
at all
- Moose::Meta::Method::Destructor
Moose::Meta::Method::Constructor
- added more descriptive error message to help
keep people from wasting time tracking an error
that is easily fixed by upgrading.
0.45 2008-05-24
- Moose
- Because of work in Class::MOP 0.57, all
XS based functionality is now optional
and a Pure Perl version is supplied
- the CLASS_MOP_NO_XS environment variable
can now be used to force non-XS versions
to always be used
- several of the packages have been tweaked
to take care of this, mostly we added
support for the package_name and name
variables in all the Method metaclasses
- before/around/after method modifiers now
support regexp matching of names
(thanks to Takatoshi Kitano)
- tests added for this
- NOTE: this only works for classes, it
is currently not supported in roles,
but, ... patches welcome
- All usage of Carp::confess have been replaced
by Carp::croak in the "keyword" functions since
the stack trace is usually not helpful
- Moose::Role
- All usage of Carp::confess have been replaced
by Carp::croak in the "keyword" functions since
the stack trace is usually not helpful
- The 'has' keyword for roles now accepts the
same array ref form that Moose.pm does
(has [qw/foo bar/] => (is => 'rw', ...))
- added test for this
- Moose::Meta::Attribute
- trigger on a ro-attribute is no longer an
error, as it's useful to trigger off of the
constructor
- Moose::Meta::Class
- added same 'add_package_symbol' fix as in
Class::MOP 0.57
- Moose::Util
- does_role now handles non-Moose classes
more gracefully
- added tests for this
- added the 'add_method_modifier' function
(thanks to Takatoshi Kitano)
- Moose::Util::TypeConstraints
- subtypes of parameterizable types now are
themselves parameterizable types
- Moose::Meta::Method::Constructor
- fixed bug where trigger was not being
called by the inlined immutable
constructors
- added test for this (thanks to Caelum)
- Moose::Meta::Role::Application::ToInstance
- now uses the metaclass of the instance
(if possible) to create the anon-class
(thanks Jonathan Rockway)
- Moose::Cookbook::Recipe22
- added the meta-attribute trait recipe
(thanks to Sartak)
- t/
- fixed hash-ordering test bug that was
causing occasional cpantester failures
- renamed the t/000_recipe/*.t tests to be
more descriptive (thanks to Sartak)
0.44 2008-05-10
- Moose
- made make_immutable warning cluck to
show where the error is (thanks mst)
- Moose::Object
- BUILDALL and DEMOLISHALL now call
->body when looping through the
methods, to avoid the overloaded
method call.
- fixed issue where DEMOLISHALL was
eating the $@ values, and so not
working correctly, it still kind of
eats them, but so does vanilla perl
- added tests for this
- Moose::Cookbook::Recipe7
- added new recipe for immutable
functionality (thanks Dave Rolsky)
- Moose::Cookbook::Recipe9
- added new recipe for builder and
lazy_build (thanks Dave Rolsky)
- Moose::Cookbook::Recipe11
- added new recipe for method aliasing
and exclusion with Roles (thanks Dave Rolsky)
- t/
- fixed Win32 test failure (thanks spicyjack)
~ removed Build.PL and Module::Build compat
since Module::Install has done that.
0.43 2008-04-30
- NOTE TO SELF:
drink more coffee before
doing release engineering
- whoops, forgot to do the smolder tests,
and we broke some of the custom meta-attr
modules. This fixes that.
0.42 2008-04-28
- some bad tests slipped by, nothing else
changed in this release (cpantesters++)
- upped the Class::MOP dependency to 0.55
since we have tests which need the C3
support
0.41 2008-04-28
~~ numerous documentation updates ~~
- Changed all usage of die to Carp::croak for better
error reporting (initial patch by Tod Hagan)
** IMPORTANT NOTE **
- the make_immutable keyword is now deprecated, don't
use it in any new code and please fix your old code
as well. There will be 2 releases, and then it will
be removed.
- Moose
Moose::Role
Moose::Meta::Class
- refactored the way inner and super work to avoid
any method/@ISA cache penalty (nothingmuch)
- Moose::Meta::Class
- fixing &new_object to make sure trigger gets the
coerced value (spotted by Charles Alderman on the
mailing list)
- added test for this
- Moose::Meta::Method::Constructor
- immutable classes which had non-lazy attributes were calling
the default generating sub twice in the constructor. (bug
found by Jesse Luehrs, fixed by Dave Rolsky)
- added tests for this (Dave Rolsky)
- fix typo in initialize_body method (nothingmuch)
- Moose::Meta::Method::Destructor
- fix typo in initialize_body method (nothingmuch)
- Moose::Meta::Method::Overriden
Moose::Meta::Method::Augmented
- moved the logic for these into their own
classes (nothingmuch)
- Moose::Meta::Attribute
- inherited attributes may now be extended without
restriction on the type ('isa', 'does') (Sartak)
- added tests for this (Sartak)
- when an attribute property is malformed (such as lazy without
a default), give the name of the attribute in the error
message (Sartak)
- added the &applied_traits and &has_applied_traits methods
to allow introspection of traits
- added tests for this
- moved 'trait' and 'metaclass' argument handling to here from
Moose::Meta::Class
- clone_and_inherit_options now handles 'trait' and 'metaclass' (has
'+foo' syntax) (nothingmuch)
- added tests for this (t0m)
- Moose::Object
- localize $@ inside DEMOLISHALL to avoid it
eating $@ (found by Ernesto)
- added test for this (thanks to Ernesto)
- Moose::Util::TypeConstraints
- &find_type_constraint now DWIMs when given an
type constraint object or name (nothingmuch)
- &find_or_create_type_constraint superseded with a number of more
specific functions:
- find_or_create_{isa,does}_type_constraint
- find_or_parse_type_constraint
- Moose::Meta::TypeConstraint
Moose::Meta::TypeConstraint::Class
Moose::Meta::TypeConstraint::Role
Moose::Meta::TypeConstraint::Enum
Moose::Meta::TypeConstraint::Union
Moose::Meta::TypeConstraint::Parameterized
- added the &equals method for comparing two type
constraints (nothingmuch)
- added tests for this (nothingmuch)
- Moose::Meta::TypeConstraint
- add the &parents method, which is just an alias to &parent.
Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
- Moose::Meta::TypeConstraint::Class
- added the class attribute for introspection purposes
(nothingmuch)
- added tests for this
- Moose::Meta::TypeConstraint::Enum
Moose::Meta::TypeConstraint::Role
- broke these out into their own classes (nothingmuch)
- Moose::Cookbook::Recipe*
- fixed references to test file locations in the POD
and updated up some text for new Moose features
(Sartak)
- Moose::Util
- Added &resolve_metaclass_alias, a helper function for finding an actual
class for a short name (e.g. in the traits list)
0.40 2008-03-14
- I hate Pod::Coverage
0.39 2008-03-14
- Moose
- documenting the use of '+name' with attributes
that come from recently composed roles. It makes
sense, people are using it, and so why not just
officially support it.
- fixing the 'extends' keyword so that it will not
trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
- oose
- added the perl -Moose=+Class::Name feature to allow
monkeypatching of classes in one liners
- Moose::Util
- fixing the 'apply_all_roles' keyword so that it will not
trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
- Moose::Meta::Class
- added ->create method which now supports roles (thanks to jrockway)
- added tests for this
- added ->create_anon_class which now supports roles and caching of
the results (thanks to jrockway)
- added tests for this
- made ->does_role a little more forgiving when it is
checking a Class::MOP era metaclasses.
- Moose::Meta::Role::Application::ToInstance
- it is now possible to pass extra params to be used when
a role is applied to an the instance (rebless_params)
- added tests for this
- Moose::Util::TypeConstraints
- class_type now accepts an optional second argument for a
custom message. POD anotated accordingly (groditi)
- added tests for this
- it is now possible to make anon-enums by passing 'enum' an
ARRAY ref instead of the $name => @values. Everything else
works as before.
- added tests for this
- t/
- making test for using '+name' on attributes consumed
from a role, it works and makes sense too.
- Moose::Meta::Attribute
- fix handles so that it doesn't return nothing
when the method cannot be found, not sure why
it ever did this originally, this means we now
have slightly better support for AUTOLOADed
objects
- added more delegation tests
- adding ->does method to this so as to better
support traits and their introspection.
- added tests for this
- Moose::Object
- localizing the Data::Dumper configurations so
that it does not pollute others (RT #33509)
- made ->does a little more forgiving when it is
passed Class::MOP era metaclasses.
0.38 2008-02-15
- Moose::Meta::Attribute
- fixed initializer to correctly do
type checking and coercion in the
callback
- added tests for this
- t/
- fixed some finicky tests (thanks to konobi)
0.37 2008-02-14
- Moose
- fixed some details in Moose::init_meta
and its superclass handling (thanks thepler)
- added tests for this (thanks thepler)
- 'has' now dies if you don't pass in name
value pairs
- added the 'make_immutable' keyword as a shortcut
to make_immutable
- Moose::Meta::Class
Moose::Meta::Method::Constructor
Moose::Meta::Attribute
- making (init_arg => undef) work here too
(thanks to nothingmuch)
- Moose::Meta::Attribute
Moose::Meta::Method::Constructor
Moose::Meta::Method::Accessor
- make lazy attributes respect attr initializers (rjbs)
- added tests for this
- Moose::Util::TypeConstraints
Moose::Util::TypeConstraints::OptimizedConstraints
Moose::Meta::TypeConstraints
Moose::Meta::Attribute
Moose::Meta::Method::Constructor
Moose::Meta::Method::Accessor
- making type errors use the
assigned message (thanks to Sartak)
- added tests for this
- Moose::Meta::Method::Destructor
- making sure DESTROY gets inlined properly
with successive DEMOLISH calls (thanks to manito)
- Moose::Meta::Attribute
Moose::Meta::Method::Accessor
- fixed handling of undef with type constraints
(thanks to Ernesto)
- added tests for this
- Moose::Util
- added &get_all_init_args and &get_all_attribute_values
(thanks to Sartak and nothingmuch)
0.36 2008-01-26
- Moose::Role
Moose::Meta::Attribute
- role type tests now support when roles are
applied to non-Moose classes (found by ash)
- added tests for this (thanks to ash)
- couple extra tests to boost code coverage
- Moose::Meta::Method::Constructor
- improved fix for handling Class::MOP attributes
- added test for this
- Moose::Meta::Class
- handled the add_attribute($attribute_meta_object)
case correctly
- added test for this
0.35 2008-01-22
- Moose::Meta::Method::Constructor
- fix to make sure even Class::MOP attributes
are handled correctly (Thanks to Dave Rolsky)
- added test for this (also Dave Rolsky)
- Moose::Meta::Class
- improved error message on _apply_all_roles,
you should now use Moose::Util::apply_all_roles
and you shouldnt have been using a _ prefixed
method in the first place ;)
0.34 2008-01-21
~~~ more misc. doc. fixes ~~~
~~ updated copyright dates ~~
Moose is now a postmodern object system :)
- (see the POD for details)
- <<Role System Refactoring>>
- this release contains a major reworking and
cleanup of the role system
- 100% backwards compat.
- Role application now restructured into seperate
classes based on type of applicants
- Role summation (combining of more than one role)
is much cleaner and anon-classes are no longer
used in this process
- new Composite role metaclass
- runtime application of roles to instances
is now more efficient and re-uses generated
classes when applicable
- <<New Role composition features>>
- methods can now be excluded from a given role
during composition
- methods can now be aliased to another name (and
still retain the original as well)
- Moose::Util::TypeConstraints::OptimizedConstraints
- added this module (see above)
- Moose::Meta::Class
- fixed the &_process_attribute method to be called
by &add_attribute, so that the API is now correct
- Moose::Meta::Method::Accessor
- fixed bug when passing a list of values to
an accessor would get (incorrectly) ignored.
Thanks to Sartak for finding this ;)
- added tests for this (Sartak again)
- Moose::Meta::Method::Accessor
Moose::Meta::Method::Constructor
Moose::Meta::Attribute
Moose::Meta::TypeConstraint
Moose::Meta::TypeCoercion
- lots of cleanup of such things as:
- generated methods
- type constraint handling
- error handling/messages
(thanks to nothingmuch)
- Moose::Meta::TypeConstraint::Parameterizable
- added this module to support the refactor
in Moose::Meta::TypeConstraint::Parameterized
- Moose::Meta::TypeConstraint::Parameterized
- refactored how these types are handled so they
are more generic and not confined to ArrayRef
and HashRef only
- t/
- shortened some file names for better VMS support (RT #32381)
0.33 2007-12-14
!! Moose now loads 2 x faster !!
!! with new Class::MOP 0.49 !!
++ new oose.pm module to make command line
Moose-ness easier (see POD docs for more)
- Moose::Meta::Class
- Moose::Meta::Role
- several tweaks to take advantage of the
new method map caching in Class::MOP
- Moose::Meta::TypeConstraint::Parameterized
- allow subtypes of ArrayRef and HashRef to
be used as a container (sartak)
- added tests for this
- basic support for coercion to ArrayRef and
HashRef for containers (sartak)
- added tests for this
- Moose::Meta::TypeCoercion
- coercions will now create subtypes as needed
so you can now add coercions to parameterized
types without having to explictly define them
- added tests for this
- Moose::Meta::Method::Accessor
- allow subclasses to decide whether we need
to copy the value into a new variable (sartak)
0.32 2007-12-04
- Moose::Util::TypeConstraints
- fixing how subtype aliases of unions work
they should inherit the parent's coercion
- added tests for this
- you can now define multiple coercions on
a single type at different times instead of
having to do it all in one place
- added tests for this
- Moose::Meta::TypeConstraint
- there is now a default constraint of sub { 1 }
instead of Moose::Util::TypeConstraints setting
this for us
- Moose::Meta::TypeCoercion
- Moose::Meta::TypeCoercion::Union
- added the &has_coercion_for_type and
&add_type_coercions methods to support the
new features above (although you cannot add
more type coercions for Union types)
0.31 2007-11-26
- Moose::Meta::Attribute
- made the +attr syntax handle extending types with
parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
now works if the original foo is an ArrayRef.
- added tests for this.
- delegation now works even if the attribute does not
have a reader method using the get_read_method_ref
method from Class::MOP::Attribute.
- added tests for this
- added docs for this
- Moose::Util::TypeConstraints
- passing no "additional attribute info" to
&find_or_create_type_constraint will no longer
attempt to create an __ANON__ type for you,
instead it will just return undef.
- added docs for this
0.30 2007-11-23
- Moose::Meta::Method::Constructor
-builder related bug in inlined constructor. (groditi)
- Moose::Meta::Method::Accessor
- genereate unnecessary calls to predicates and refactor
code generation for runtime speed (groditi)
- Moose::Util::TypeConstraints
- fix ClassName constraint to introspect symbol table (mst)
- added more tests for this (mst)
- fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
with work correctly.
- added tests for this
- Moose::Cookbook
- adding the link to Recipie 11 (written by Sartak)
- adding test for SYNOPSIS code
- t/
- New tests for builder bug. Upon instantiation, if an
attribute had a builder, no value and was not lazy the
builder default was not getting run, oops. (groditi)
0.29 2007-11-13
- Moose::Meta::Attribute
- Fix error message on missing builder method (groditi)
- Moose::Meta::Method::Accessor
- Fix error message on missing builder method (groditi)
- t/
- Add test to check for the correct error message when
builder method is missing (groditi)
0.28 2007-11-13
- 0.27 packaged incorrectly (groditi)
0.27 2007-11-13
- Moose::Meta::Attribute
- Added support for the new builder option (groditi)
- Added support for lazy_build option (groditi)
- Changed slot initialization for predicate changes (groditi)
- Moose::Meta::Method::Accessor
- Added support for lazy_build option (groditi)
- Fix inline methods to work with corrected predicate
behavior (groditi)
- Moose::Meta::Method::Constructor
- Added support for lazy_build option (groditi)
- t/
- tests for builder and lazy_build (groditi)
- fixing some misc. bits in the docs that
got mentioned on CPAN Forum & perlmonks
- Moose::Meta::Role
- fixed how required methods are handled
when they encounter overriden or modified
methods from a class (thanks to confound).
- added tests for this
- Moose::Util::TypeConstraint
- fixed the type notation parser so that
the | always creates a union and so is
no longer a valid type char (thanks to
konobi, mugwump and #moose for working
this one out.)
- added more tests for this
0.26 2007-09-27
== New Features ==
- Parameterized Types
We now support parameterized collection types, such as:
ArrayRef[Int] # array or integers
HashRef[Object] # a hash with object values
They can also be nested:
ArrayRef[HashRef[RegexpRef]] # an array of hashes with regex values
And work with the type unions as well:
ArrayRef[Int | Str] # array of integers of strings
- Better Framework Extendability
Moose.pm is now "extendable" such that it is now much
easier to extend the framework and add your own keywords
and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
section of the Moose.pm docs.
- Moose Snacks!
In an effort to begin documenting some of the various
details of Moose as well as some common idioms, we have
created Moose::Cookbook::Snacks as a place to find
small (easily digestable) nuggets of Moose code.
====
~ Several doc updates/cleanup thanks to castaway ~
- converted build system to use Module::Install instead of
Module::Build (thanks to jrockway)
- Moose
- added all the meta classes to the immutable list and
set it to inline the accessors
- fix import to allow Sub::Exporter like { into => }
and { into_level => } (perigrin)
- exposed and documented init_meta() to allow better
embedding and extending of Moose (perigrin)
- t/
- complete re-organization of the test suite
- added some new tests as well
- finally re-enabled the Moose::POOP test since
the new version of DBM::Deep now works again
(thanks rob)
- Moose::Meta::Class
- fixed very odd and very nasty recursion bug with
inner/augment (mst)
- added tests for this (eilara)
- Moose::Meta::Attribute
Moose::Meta::Method::Constructor
Moose::Meta::Method::Accessor
- fixed issue with overload::Overloaded getting called
on non-blessed items. (RT #29269)
- added tests for this
- Moose::Meta::Method::Accessor
- fixed issue with generated accessor code making
assumptions about hash based classes (thanks to dexter)
- Moose::Coookbook::Snacks
- these are bits of documentation, not quite as big as
Recipes but which have no clear place in the module docs.
So they are Snacks! (horray for castaway++)
- Moose::Cookbook::Recipe4
- updated it to use the new ArrayRef[MyType] construct
- updated the accompanying test as well
+++ Major Refactor of the Type Constraint system +++
+++ with new features added as well +++
- Moose::Util::TypeConstraint
- no longer uses package variable to keep track of
the type constraints, now uses the an instance of
Moose::Meta::TypeConstraint::Registry to do it
- added more sophisticated type notation parsing
(thanks to mugwump)
- added tests for this
- Moose::Meta::TypeConstraint
- some minor adjustments to make subclassing easier
- added the package_defined_in attribute so that we
can track where the type constraints are created
- Moose::Meta::TypeConstraint::Union
- this is now been refactored to be a subclass of
Moose::Meta::TypeConstraint
- Moose::Meta::TypeCoercion::Union
- this has been added to service the newly refactored
Moose::Meta::TypeConstraint::Union and is itself
a subclass of Moose::Meta::TypeCoercion
- Moose::Meta::TypeConstraint::Parameterized
- added this module (taken from MooseX::AttributeHelpers)
to help construct nested collection types
- added tests for this
- Moose::Meta::TypeConstraint::Registry
- added this class to keep track of type constraints
0.25 2007-08-13
- Moose
- Documentation update to reference Moose::Util::TypeConstraints
under 'isa' in 'has' for how to define a new type
(thanks to shlomif).
- Moose::Meta::Attribute
- required attributes now will no longer accept undef
from the constructor, even if there is a default and lazy
- added tests for this
- default subroutines must return a value which passes the
type constraint
- added tests for this
- Moose::Meta::Attribute
- Moose::Meta::Method::Constructor
- Moose::Meta::Method::Accessor
- type-constraint tests now handle overloaded objects correctly
in the error message
- added tests for this (thanks to EvanCarroll)
- Moose::Meta::TypeConstraint::Union
- added (has_)hand_optimized_constraint to this class so that
it behaves as the regular Moose::Meta::TypeConstraint does.
- Moose::Meta::Role
- large refactoring of this code
- added several more tests
- tests for subtle conflict resolition issues
added, but not currently running
(thanks to kolibre)
- Moose::Cookbook::Recipe7
- added new recipe for augment/inner functionality
(still in progress)
- added test for this
- Moose::Spec::Role
- a formal definition of roles (still in progress)
- Moose::Util
- utilities for easier working with Moose classes
- added tests for these
- Test::Moose
- This contains Moose specific test functions
- added tests for these
0.24 2007-07-03
~ Some doc updates/cleanup ~
- Moose::Meta::Attribute
- added support for roles to be given as parameters
to the 'handles' option.
- added tests and docs for this
- the has '+foo' attribute form now accepts changes to
the lazy option, and the addition of a handles option
(but not changing the handles option)
- added tests and docs for this
- Moose::Meta::Role
- required methods are now fetched using find_method_by_name
so that required methods can come from superclasses
- adjusted tests for this
0.23 2007-06-18
- Moose::Meta::Method::Constructor
- fix inlined constructor for hierarchy with multiple BUILD methods (mst)
- Moose::Meta::Class
- Modify make_immutable to work with the new Class::MOP immutable
mechanism + POD + very basic test (groditi)
- Moose::Meta::Attribute
- Fix handles to use goto() so that caller() comes out properly on
the other side (perigrin)
0.22 2007-05-31
- Moose::Util::TypeConstraints
- fix for prototype undeclared issue when Moose::Util::TypeConstraints
loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
prototypes for functions
- added the ClassName type constraint, this checks for strings
which will respond true to ->isa(UNIVERSAL).
- added tests and docs for this
- subtyping just in name now works correctly by making the
default for where be { 1 }
- added test for this
- Moose::Meta::Method::Accessor
- coerce and lazy now work together correctly, thanks to
merlyn for finding this bug
- tests added for this
- fix reader presedence bug in Moose::Meta::Attribute + tests
- Moose::Object
- Foo->new(undef) now gets ignored, it is assumed you meant to pass
a HASH-ref and missed. This produces better error messages then
having it die cause undef is not a HASH.
- added tests for this
0.21 2007-05-03
- Moose
- added SUPER_SLOT and INNER_SLOT class hashes to support unimport
- modified unimport to remove super and inner along with the rest
- altered unimport tests to handle this
- Moose::Role
- altered super export to populate SUPER_SLOT
- Moose::Meta::Class
- altered augment and override modifier application to use *_SLOT
- modified tests for these to unimport one test class each to test
- Moose::Meta::Role
- fixed issue where custom attribute metaclasses
where not handled correctly in roles
- added tests for this
- Moose::Meta::Class
- fixed issue where extending metaclasses with
roles would blow up. Thanks to Aankhen`` for
finding this insidious error, and its solution.
~~ lots of spelling and grammer fixes in the docs,
many many thanks to rlb3 and Aankhen for these :)
0.20 2007-04-06
>> I messed up the SKIP logic in one test
so this release is just to fix that.
- Moose
- 'has' now also accepts an ARRAY ref
to create multiple attrs (see docs)
(thanks to konobi for this)
- added tests and docs
0.19 2007-04-05
~~ More documentation updates ~~
- Moose::Util::TypeConstraints
- 'type' now supports messages as well
thanks to phaylon for finding this
- added tests for this
- added &list_all_type_constraints and
&list_all_builtin_type_constraints
functions to facilitate introspection.
- Moose::Meta::Attribute
- fixed regexp 'handles' declarations
to build the list of delegated methods
correctly (and not override important
things like &new) thanks to ashleyb
for finding this
- added tests and docs for this
- added the 'documentation' attributes
so that you can actually document your
attributes and inspect them through the
meta-object.
- added tests and docs for this
- Moose::Meta::Class
- when loading custom attribute metaclasses
it will first look in for the class in the
Moose::Meta::Attribute::Custom::$name, and
then default to just loading $name.
- added tests and docs for this
- Moose::Meta::TypeConstraint
- type constraints now stringify to their names.
- added test for this
- misc.
- added tests to assure we work with Module::Refresh
- added stricter test skip logic in the Moose POOP
test, ask Rob Kinyon why.
- *cough* DBM::Deep 1.0 backwards compatibility sucks *cough* ;)
0.18 2007-03-10
~~ Many, many documentation updates ~~
- misc.
- We now use Class::MOP::load_class to
load all classes.
- added tests to show types and subtypes
working with Declare::Constraints::Simple
and Test::Deep as constraint engines.
0.18_001 2006-11-26
!! You must have Class::MOP 0.37_001 !!
!! for this developer release to work !!
This release was primarily adding the immutable
feature to Moose. An immutable class is one which
you promise not to alter. When you set the class
as immutable it will perform various bits of
memoization and inline certain part of the code
(constructors, destructors and accessors). This
minimizes (and in some cases totally eliminates)
one of Moose's biggest performance hits. This
feature is not on by default, and is 100% optional.
It has several configurable bits as well, so you
can pick and choose to your specific needs.
The changes involved in this were fairly wide and
highly specific, but 100% backwards compatible, so
I am not going to enumerate them here. If you are
truely interested in what was changed, please do
a diff :)
0.17 2006-11-14
- Moose::Meta::Method::Accessor
- bugfix for read-only accessors which
are have a type constraint and lazy.
Thanks to chansen for finding it.
0.16 2006-11-14
++ NOTE ++
There are some speed improvements in this release,
but they are only the begining, so stay tuned.
- Moose::Object
- BUILDALL and DEMOLISHALL no longer get
called unless they actually need to be.
This gave us a signifigant speed boost
for the cases when there is no BUILD or
DEMOLISH method present.
- Moose::Util::TypeConstraints
- Moose::Meta::TypeConstraint
- added an 'optimize_as' option to the
type constraint, which allows for a
hand optimized version of the type
constraint to be used when possible.
- Any internally created type constraints
now provide an optimized version as well.
0.15 2006-11-05
++ NOTE ++
This version of Moose *must* have Class::MOP 0.36 in order
to work correctly. A number of small internal tweaks have
been made in order to be compatible with that release.
- Moose::Util::TypeConstraints
- added &unimport so that you can clean out
your class namespace of these exported
keywords
- Moose::Meta::Class
- fixed minor issue which occasionally
comes up during global destruction
(thanks omega)
- moved Moose::Meta::Method::Overriden into
its own file.
- Moose::Meta::Role
- moved Moose::Meta::Role::Method into
its own file.
- Moose::Meta::Attribute
- changed how we do type checks so that
we reduce the overall cost, but still
retain correctness.
*** API CHANGE ***
- moved accessor generation methods to
Moose::Meta::Method::Accessor to
conform to the API changes from
Class::MOP 0.36
- Moose::Meta::TypeConstraint
- changed how constraints are compiled
so that we do less recursion and more
iteration. This makes the type check
faster :)
- moved Moose::Meta::TypeConstraint::Union
into its own file
- Moose::Meta::Method::Accessor
- created this from methods formerly found in
Moose::Meta::Attribute
- Moose::Meta::Role::Method
- moved this from Moose::Meta::Role
- Moose::Meta::Method::Overriden
- moved this from Moose::Meta::Class
- Moose::Meta::TypeConstraint::Union
- moved this from Moose::Meta::TypeConstraint
0.14 2006-10-09
- Moose::Meta::Attribute
- fixed lazy attributes which were not getting
checked with the type constraint (thanks ashley)
- added tests for this
- removed the over-enthusiastic DWIMery of the
automatic ArrayRef and HashRef defaults, it
broke predicates in an ugly way.
- removed tests for this
0.13 2006-09-30
++ NOTE ++
This version of Moose *must* have Class::MOP 0.35 in order
to work correctly. A number of small internal tweaks have
been made in order to be compatible with that release.
- Moose
- Removed the use of UNIVERSAL::require to be a better
symbol table citizen and remove a dependency
(thanks Adam Kennedy)
**~~ removed experimental & undocumented feature ~~**
- commented out the 'method' and 'self' keywords, see the
comments for more info.
- Moose::Cookbook
- added a FAQ and WTF files to document frequently
asked questions and common problems
- Moose::Util::TypeConstraints
- added GlobRef and FileHandle type constraint
- added tests for this
- Moose::Meta::Attribute
- if your attribute 'isa' ArrayRef of HashRef, and you have
not explicitly set a default, then make the default DWIM.
This will also work for subtypes of ArrayRef and HashRef
as well.
- you can now auto-deref subtypes of ArrayRef or HashRef too.
- new test added for this (thanks to ashley)
- Moose::Meta::Role
- added basic support for runtime role composition
but this is still *highly experimental*, so feedback
is much appreciated :)
- added tests for this
- Moose::Meta::TypeConstraint
- the type constraint now handles the coercion process
through delegation, this is to support the coercion
of unions
- Moose::Meta::TypeConstraint::Union
- it is now possible for coercions to be performed
on a type union
- added tests for this (thanks to konobi)
- Moose::Meta::TypeCoercion
- properly capturing error when type constraint
is not found
- Build.PL
- Scalar::Util 1.18 is bad on Win32, so temporarily
only require version 1.17 for Win32 and cygwin.
(thanks Adam Kennedy)
0.12 2006-09-01
- Moose::Cookbook
- Recipe5 (subtypes & coercion) has been written
- Moose
- fixed "bad meta" error message to be more descriptive
- fixed &unimport to not remove the &inner and &super
keywords because we need to localize them.
- fixed number of spelling/grammer issues, thanks Theory :)
**~~ experimental & undocumented feature ~~**
- added the method and self keywords, they are basically
just sugar, and they may not stay around.
- Moose::Object
- added &dump method to easily Data::Dumper
an object
- Moose::Meta::TypeConstraint
- added the &is_a_type_of method to check both the current
and the subtype of a method (similar to &isa with classes)
- Moose::Meta::Role
- this is now a subclass of Class::MOP::Module, and no longer
creates the _role_meta ugliness of before.
- fixed tests to reflect this change
0.11 2006-07-12
- Moose
- added an &unimport method to remove all the keywords
that Moose will import, simply add 'no Moose' to the
bottom of your class file.
- t/
- fixed some test failures caused by a forgotten test
dependency.
0.10 2006-07-06
- Moose
- improved error message when loading modules so
it is less confusing when you load a role.
- added &calculate_all_roles method to
Moose::Meta::Class and Moose::Meta::Role
NOTE:
This module has been tested against Class::MOP 0.30
but it does not yet utilize the optimizations
it makes available. Stay tuned for that ;)
0.09_03 2006-06-23
++ DEVELOPER RELEASE ++
- Moose
- 'use strict' and 'use warnings' are no longer
needed in Moose classes, Moose itself will
turn them on for you.
- added tests for this
- moved code from exported subs to private methods
in Moose::Meta::Class
- Moose::Role
- as with Moose, strict and warnings are
automatically turned on for you.
- added tests for this
- Moose::Meta::Role
- now handles an edge case for override errors
- added tests for this
- added some more edge case tests
0.09_02 2006-05-16
++ DEVELOPER RELEASE ++
- Moose
- added prototypes to the exported subs
- updated docs
- Moose::Role
- added prototypes to the exported subs
- updated docs
- Moose::Util::TypeConstraints
- cleaned up prototypes for the subs
- updated docs
0.09_01 2006-05-12
++ DEVELOPER RELEASE ++
- This release works in combination with
Class::MOP 0.29_01, it is a developer
release because it uses the a new
instance sub-protocol and a fairly
complete Role implementation. It has
not yet been optimized, so it is slower
than the previous CPAN version. This
release also lacks good updated docs,
the official release will have updated docs.
- Moose
- refactored the keyword exports
- 'with' now checks Role validaity and
accepts more than one Role at a time
- 'extends' makes metaclass adjustments as
needed to ensure metaclass compatibility
- Moose::Role
- refactored the keyword exports
- 'with' now checks Role validaity and
accepts more than one Role at a time
- Moose::Util::TypeConstraints
- added the 'enum' keyword for simple
string enumerations which can be used as
type constraints
- see example of usage in t/202_example.t
- Moose::Object
- more careful checking of params to new()
- Moose::Meta::Role
- much work done on the role composition
- many new tests for conflict detection
and composition edge cases
- not enough documentation, I suggest
looking at the tests
- Moose::Meta::Instance
- added new Instance metaclass to support
the new Class::MOP instance protocol
- Moose::Meta::Class
- some small changes to support the new
instance protocol
- some small additions to support Roles
- Moose::Meta::Attribute
- some improvements to the accessor generation code
by nothingmuch
- some small changes to support the new
instance protocol
- (still somewhat) experimental delegation support
with the 'handles' option
- added several tests for this
- no docs for this yet
0.05 2006-04-27
- Moose
- keywords are now exported with Sub::Exporter
thanks to chansen for this commit
- has keyword now takes a 'metaclass' option
to support custom attribute meta-classes
on a per-attribute basis
- added tests for this
- the 'has' keyword not accepts inherited slot
specifications (has '+foo'). This is still an
experimental feature and probably not finished
see t/038_attribute_inherited_slot_specs.t for
more details, or ask about it on #moose
- added tests for this
- Moose::Role
- keywords are now exported with Sub::Exporter
- Moose::Utils::TypeConstraints
- reorganized the type constraint hierarchy, thanks
to nothingmuch and chansen for his help and advice
on this
- added some tests for this
- keywords are now exported with Sub::Exporter
thanks to chansen for this commit
- Moose::Meta::Class
- due to changes in Class::MOP, we had to change
construct_instance (for the better)
- Moose::Meta::Attribute
- due to changes in Class::MOP, we had to add the
initialize_instance_slot method (it's a good thing)
- Moose::Meta::TypeConstraint
- added type constraint unions
- added tests for this
- added the is_subtype_of predicate method
- added tests for this
0.04 2006-04-16
- Moose::Role
- Roles can now consume other roles
- added tests for this
- Roles can specify required methods now with
the requires() keyword
- added tests for this
- Moose::Meta::Role
- ripped out much of its guts... much cleaner now
- added required methods and correct handling of
them in apply() for both classes and roles
- added tests for this
- no longer adds a does() method to consuming classes
it relys on the one in Moose::Object
- added roles attribute and some methods to support
roles consuming roles
- Moose::Meta::Attribute
- added support for triggers on attributes
- added tests for this
- added support for does option on an attribute
- added tests for this
- Moose::Meta::Class
- added support for attribute triggers in the
object construction
- added tests for this
- Moose
- Moose no longer creates a subtype for your class
if a subtype of the same name already exists, this
should DWIM in 99.9999% of all cases
- Moose::Util::TypeConstraints
- fixed bug where incorrect subtype conflicts were
being reported
- added test for this
- Moose::Object
- this class can now be extended with 'use base' if
you need it, it properly loads the metaclass class now
- added test for this
0.03_02 2006-04-12
- Moose
- you must now explictly use Moose::Util::TypeConstraints
it no longer gets exported for you automatically
- Moose::Object
- new() now accepts hash-refs as well as key/value lists
- added does() method to check for Roles
- added tests for this
- Moose::Meta::Class
- added roles attribute along with the add_role() and
does_role() methods
- added tests for this
- Moose::Meta::Role
- now adds a does() method to consuming classes
which tests the class's hierarchy for roles
- added tests for this
0.03_01 2006-04-10
- Moose::Cookbook
- added new Role recipe (no content yet, only code)
- Moose
- added 'with' keyword for Role support
- added test and docs for this
- fixed subtype quoting bug
- added test for this
- Moose::Role
- Roles for Moose
- added test and docs
- Moose::Util::TypeConstraints
- added the message keyword to add custom
error messages to type constraints
- Moose::Meta::Role
- the meta role to support Moose::Role
- added tests and docs
- Moose::Meta::Class
- moved a number of things from Moose.pm
to here, they should have been here
in the first place
- Moose::Meta::Attribute
- moved the attribute option macros here
instead of putting them in Moose.pm
- Moose::Meta::TypeConstraint
- added the message attributes and the
validate method
- added tests and docs for this
0.03 2006-03-30
- Moose::Cookbook
- added the Moose::Cookbook with 5 recipes,
describing all the stuff Moose can do.
- Moose
- fixed an issue with &extends super class loading
it now captures errors and deals with inline
packages correctly (bug found by mst, solution
stolen from alias)
- added super/override & inner/augment features
- added tests and docs for these
- Moose::Object
- BUILDALL now takes a reference of the %params
that are passed to &new, and passes that to
each BUILD as well.
- Moose::Util::TypeConstraints
- Type constraints now survive runtime reloading
- added test for this
- Moose::Meta::Class
- fixed the way attribute defaults are handled
during instance construction (bug found by chansen)
- Moose::Meta::Attribute
- read-only attributes now actually enforce their
read-only-ness (this corrected in Class::MOP as
well)
0.02 2006-03-21
- Moose
- many more tests, fixing some bugs and
edge cases
- &extends now loads the base module with
UNIVERSAL::require
- added UNIVERSAL::require to the
dependencies list
** API CHANGES **
- each new Moose class will also create
and register a subtype of Object which
correspond to the new Moose class.
- the 'isa' option in &has now only
accepts strings, and will DWIM in
almost all cases
- Moose::Util::TypeConstraints
- added type coercion features
- added tests for this
- added support for this in attributes
and instance construction
** API CHANGES **
- type construction no longer creates a
function, it registers the type instead.
- added several functions to get the
registered types
- Moose::Object
- BUILDALL and DEMOLISHALL were broken
because of a mis-named hash key, Whoops :)
- Moose::Meta::Attribute
- adding support for coercion in the
autogenerated accessors
- Moose::Meta::Class
- adding support for coercion in the
instance construction
- Moose::Meta::TypeConstraint
- Moose::Meta::TypeCoercion
- type constraints and coercions are now
full fledges meta-objects
0.01 2006-03-15
- Moooooooooooooooooose!!!
Changes.Class-MOP view on Meta::CPAN
After 1.12, Class::MOP was merged into the Moose distribution, and is no
longer released separately.
1.12 Mon, Jan 3, 2011
* Remove usage of undocumented Package::Stash APIs from the tests. This
prevents the tests from failing on Package::Stash >= 0.18.
1.11 Sun, Oct 31, 2010
[ENHANCEMENTS]
* Replace use of Test::Exception with Test::Fatal. (Karen Etheridge and Dave
Rolsky)
1.10 Mon, Oct 18, 2010
[BUG FIXES]
* Lots of fixes for edge cases with anon classes. (doy)
1.09 Tue, Oct 5, 2010
[ENHANCEMENTS]
* It's now possible to tell Class::MOP::Class->create and the metaclass
pragma to not install a 'meta' method into classes they manipulate,
or to install one under a different name. (doy)
* Reinitializing a metaclass no longer removes the existing method and
attribute objects (it instead fixes them so they are correct for the
reinitialized metaclass). (doy)
* All 'meta' methods created by Class::MOP are now of the class
Class::MOP::Method::Meta. This is overridable at the metaclass layer. (doy)
[OTHER]
* Use get_or_add_package_symbol when we intend for it to autovivify, in
preparation for changes in Package::Stash. (doy)
* We now use Module::Install::AuthorRequires to force authors to run all
tests, just like we do for Moose. (sartak)
1.08 Mon, Sep 13, 2010
[BUG FIXES]
* The get_method_list and _get_local_methods methods blew up in the face
of subroutine stubs. (Goro Fuji)
1.07 Tue, Aug 25, 2010
[BUG FIXES]
* Fix a mysterious error reported by Piers Cawley. The error showed up as
"Can't use an undefined value as a symbol reference at
/usr/local/lib/perl/5.10.1/Class/MOP/Mixin/HasMethods.pm line 167." (Dave
Rolsky)
1.06 Sun, Aug 23, 2010
[BUG FIXES]
* Version 1.05 no longer reported constants as methods, except with Perl
5.8.x, and doing so in 5.8.x caused test failures. Constants are now
_expected_ to be reported as methods, and we explicitly test this. (Dave
Rolsky)
1.05 Sun, Aug 22, 2010
[ENHANCEMENTS]
* Refactorings and improvements to how defaults are handled, particularly
for inlined code (doy).
* Optimizations that should help speed up compilation time (Dave Rolsky).
1.04 Tue, Jul 25, 2010
[ENHANCEMENTS]
* Class::MOP::Deprecated now uses Package::DeprecationManager
internally. Deprecation warnings are now only issued once for each calling
package, which cuts down on noise. When importing Class::MOP::Deprecated,
the request API version should now be passed in the "-api_version"
flag. However, the old "-compatible" flag will continue to work. (Dave
Rolsky)
1.03 Sat, Jun 5, 2010
[ENHANCEMENTS]
* Make CMOP::Package a thin wrapper around Package::Stash (doy).
1.02 Thu, May 20, 2010
[API CHANGES]
* Packages and modules no longer have methods - this functionality was
moved back up into Class::MOP::Class (doy).
[ENHANCEMENTS]
* Metaclass incompatibility checking now checks all metaclass types. (doy)
* Class::MOP can now do simple metaclass incompatibility fixing: if your
class's metaclass is a subclass of your parent class's metaclass, it will
just use the parent class's metaclass directly. (doy)
1.01 Thu, May 6, 2010
[NEW FEATURES]
* is_class_loaded, load_class and load_first_existing_class now allow
specifying a minimum required version (Florian Ragwitz).
[BUG FIXES]
* The __INSTANCE__ parameter to Class::MOP::Class::new_object now enforces
that the passed in reference is blessed into the correct class (by dying if
it's not) (doy, jhallock).
1.00 Thu, Mar 25, 2010
[GRRR< FUCKING STEVAN@]
* Re-release 0.99 as 1.00.
0.99 Thu, Mar 25, 2010
[DOCUMENTATION]
* Fix typo in Class::MOP::Attribute (Franck Cuny).
0.98 Mon, Jan 18, 2010
[ENHANCEMENTS]
* Added Class::MOP::Class->rebless_instance_back, which does the inverse of
rebless_instance (doy, rafl).
0.97_01 Mon, Jan 4, 2010
[ENHANCEMENTS]
* Internal refactorings to move shared behavior into new "mixin" classes. This
made adding some new features to Moose much easier. (Dave Rolsky)
0.97 Fri, Dec 18, 2009
* No code changes, just packaging fixes to make this distro installable.
0.96 Fri, Dec 18, 2009
* tests
- Fixed t/082_get_code_info.t so it passes with bleadperl. (Dave Rolsky)
- Add XS & C files to no tabs check (Dave Rolsky)
- Convert all tests to done_testing. (Florian Ragwitz)
0.95 Wed, Nov 19, 2009
* Class::MOP
- Make is_class_loaded without any arguments fail loudly
(Florian Ragwitz).
- Make load_class throw more standard error messages when loading single
modules (nothingmuch).
* Class::MOP::Package
- Stop add_method from behaving differently under the debugger
(Florian Ragwitz).
* Class::MOP::Class
* Class::MOP::Package
- Any method which takes a method name as an argument now allows names
which are false (like "0"), but the name must be defined and not be an
empty string. (Dave Rolsky)
* Class::MOP::Class
- Deprecated get_attribute_map as a public method. You can use a
combination of get_attribute_list and get_attribute instead. (Dave
Rolsky)
0.94 Tue, Sep 22, 2009
* Class::MOP::Attribute
- Introduce set_raw_value and get_raw_value, side effect free variants
of {get,set}_value. These don't do anything useful in Class::MOP but
have different behavior that set_value and get_value for Moose
attributes. (nothingmuch)
0.93 Tue, Sep 15, 2009
* Class::MOP
- The load_class function just returns true, since its return value was
confusing (either a metaclass object or a class name). It either loads
a class or dies trying. In the future, this may change to not return
anything, since there's no point in checking its return
value. Addresses RT #45883. (Dave Rolsky)
* Class::MOP::Class::Trait::Immutable
- When throwing an error because of an immutable method, include that
method's name. Addresses RT #49680. (Shawn M Moore)
* Class::MOP::Package
- Adding the same sub reference to multiple packages failed to update
the method map properly. RT #48985. Reported by Paul Mooney. (Dave
Rolsky)
- The get_method_map method is now private (and called as
_full_method_map or _method_map). The public version is available as a
deprecated method. (Dave Rolsky)
0.92_01 Thu, Sep 10, 2009
* Class::MOP::Package
- Backwards compatibility tweaks to XS for 5.8.1. (Goro Fuji)
* Class::MOP
- Make sure XS code handles magical scalars correctly. (Goro Fuji)
* Class::MOP::Class
- Documented the immutable_options method, which is useful if you need
to make a class mutable temporarily, and then nede to restore
immutability. (Dave Rolsky)
* Many modules
- Deprecated features have been moved to their own module,
Class::MOP::Deprecated, for easier deprecation management. (Goro Fuji)
0.92 Thu Aug 13, 2009
* Class::MOP::Class
* Class::MOP::Package
- Move get_method_map and its various scaffolding into Package. (hdp)
* Class::MOP::Method
- Allow Class::MOP::Method->wrap to take a Class::MOP::Method object as
the first argument, rather than just a coderef. (doy)
* Class::MOP::Attribute
* Class::MOP::Class
- Allow attribute names to be false (while still requiring them to be
defined). (rafl)
0.91 Wed Jul 29, 2009
* Class::MOP::Method::Wrapped
- Fixing variable usage issues with the patch from previous
version, not properly using lexicals in the for
loops. (stevan)
0.90 Tue Jul 21, 2009
Japan Perl Association has sponsored Goro Fuji to improve startup
performance of Class::MOP and Moose. These enhancements may break
backwards compatibility if you're doing (or using) complex
metaprogramming, so, as always, test your code!
http://blog.perlassociation.org/2009/07/jpa-sponsors-moose-class-mop-work.html
* Class::MOP::Class
* XS
- Anonymous classes were not completely destroyed when they went
out of scope, leading to a memory leak. RT #47480. (Goro
Fuji).
* Class::MOP::Class
- The get_method, has_method, and add_method methods no longer
use get_method_map. Method objects are instantiated
lazily. This significantly improves Class::MOP's load
time. (Goro Fuji)
* All classes
- Inline fewer metaclass-level constructors since the ones we
have are perfectly fine. This reduces the number of string
evals. (Goro Fuji)
* Class::MOP::Method::Wrapped
- If a method modifier set $_, this caused the modifier to blow
up, because of some weird internals. (Jeremy Stashewsky)
0.89 Fri Jul 3, 2009
* Class::MOP::Class
* Class::MOP::Class::Immutable::Trait
- Made the Trait act like a role with a bunch of "around"
modifiers, rather than sticking it in the inheritance
hierarchy. This fixes various problems that caused with
metaclass compatibility, which broke Fey::ORM.
* Class::MOP::Method
- Allow a blessed code reference as the method body. Fixes a
problem interaction with MooseX::Types. (ash)
* Class::MOP::Instance
- add inline version of rebless_instance_structure. (doy)
- change inline_slot_access to use single quotes (gphat)
0.88 Tue, Jun 23, 2009
* Class::MOP::Class
- Moved the __INSTANCE__ parameter to _construct_instance from
Moose to here. (doy)
- Fixed some issues involving metaclasses of metaclasses and
immutability. (doy)
0.87 Sun, Jun 21, 2009
* Various
- Made sure to always local-ize $@ and $SIG{__DIE__} before
calling an eval. Fixes RT #45973.
* Class::MOP::Class
- Synced docs about immutability with the current reality (which
changed back in 0.82_01)
- Removed the immutable_transformer method, which had been
returning undef since 0.82_01 anyway.
* Tests
- Got rid of tests which needed Moose and improved testing of
constructor/destructor inlining warnings. Fixes RT #47119.
0.86 Tue, Jun 16, 2009
* Class::MOP::Class
- If you redefined a subroutine at runtime and then wrapped it
with a method modifier, the modifier could in some cases wrap
the original version of the subroutine. Fixes RT #46957.
* Class::MOP::Class
- make_immutable issues a warning instead of overriding an
existing DESTROY method (Dylan William Hardison). Fixes RT
#46854.
0.85 Sat, Jun 6, 2009
* Class::MOP::Attribute
- Allow default values to be Class::MOP::Methods. (Florian
Ragwitz)
- Test the above. (Rhesa Rozendaal)
- Tweak original commit so the intent matches the accepted
behavior (Nicholas Perez)
* Class::MOP
- Localize $SIG{__DIE__} inside _try_load_one_class (Sartak)
* Class::MOP::Class
- Add direct_subclasses method (Sartak)
- Tests for subclasses and direct_subclasses (Sartak)
- subname is no longer used unconditionally in add_method, but
only if the code reference's name is '__ANON__' (nothingmuch)
- Add a hook for _superclasses_updated (Sartak)
* Class::MOP::Method
- Remove long, old warning about possibly outdated modules
(Sartak)
0.84 Tue, May 12, 2009
* Makefile.PL
- Depend on Text::Exception 0.27 to avoid failing tests ond old
versions (rafl)
* Class::MOP
- Made is_class_loaded a little stricter. It was reporting that
a class was loaded if it merely had an @ISA variable in its
stash. Now it checks that the @ISA var has elements in it.
- Deprecate in_global_destruction and subname re-exporting
(perigrin & Sartak)
* Class::MOP::Class
- Explicitly use Devel::GlobalDestruction and Sub::Name
(perigrin)
* Class::MOP::Package
- Disable prototype mismatch warnings for add_package_symbol.
(Florian Ragwitz)
* Tests
- Add test for finding methods from $meta->name->meta before immutable,
(t0m)
0.83 Mon, April 27, 2009
* Class::MOP::Class
- Fix segfault when calling get_method_map on a metaclass for an empty
package (doy)
0.82_02 Fri, April 24, 2009
* Class::MOP::Method::Inlined
- Don't inline if the expected method is not defined at all (happens with
e.g. Moose::Object::_new is the expected method due to an overridden
name)
* Tests
- Some tests were trying to load Class::MOP::Immutable, which
was removed in 0.82_01.
0.82_01 Thu, April 23, 2009
* Class::MOP::Immutable (and others)
- Refactor the immutability system to use a pre-defined class
for the immutable metaclass of Class::MOP::Class::Immutable::$class
- Rather than generating methods into this class every time, use
a Trait (basic mixin) to supply the cached methods
- Remove the hack that returns the mutable metaclass for
metacircularity in order to provide consistent meta-metaclasses
for the Moose compatibility handling code
(mst broke it, nothingmuch fixed it)
0.82 Mon, April 20, 2009
* Various
- The deprecation wrappers for some renamed methods were not
passing arguments to the new method. (nothingmuch)
* Class::MOP::Immutable
- Warn during immutablization if the local class provides its own
constructor, to parallel the warning in Moose when a superclass
provides its own constructor (doy)
0.81 Tue, April 7, 2009
* Class::MOP
* Class::MOP::Class
* Class::MOP::Instance
* Class::MOP::Attribute
* Class::MOP::Method::Accessor
* Class::MOP::Method::Constructor
- Include stack traces in the deprecation warnings introduced in
0.80_01. (Florian Ragwitz)
* MOP.xs
- Avoid c compiler warnings by declaring some unused function
arguments. (Florian Ragwitz)
0.80_01 Sun, April 5, 2009
* Makefile.PL
- Make sure to preserve any compiler flags already defined in
Config.pm. Patch by Vincent Pit. RT #44739.
* Many methods have been renamed with a leading underscore, and a
few have been deprecated entirely. The methods with a leading
underscore are considered "internals only". People writing
subclasses or extensions to Class::MOP should feel free to
override them, but they are not for "public" use.
- Class::MOP::Class
- construct_class_instance => _construct_class_instance (use new_object)
- construct_instance => _construct_instance (use new_object)
- check_metaclass_compatibility => _check_metaclass_compatibility
- create_meta_instance => _create_meta_instance (use get_meta_instance)
- clone_instance => _clone_instance (use clone_object)
- compute_all_applicable_methods is deprecated, use get_all_methods
- compute_all_applicable_attributes is deprecated, use get_all_attributes
- Class::MOP::Instance
- bless_instance_structure is deprecated and will be removed
in a future release
- Class::MOP::Module
- create has been renamed to _instantiate_module. This method
does not construct an object, it evals some code that
creates the relevant package in Perl's symbol table.
- Class::MOP::Method::Accessor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- /(generate_.*_method(?:_inline)?)/ => '_' . $1
- Class::MOP::Method::Constructor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- /(generate_constructor_method(?:_inline)?)/ => '_' . $1
- attributes => _attributes
- meta_instance => _meta_instance
0.80 Wed, April 1, 2009
* Class::MOP::*
- Call user_class->meta in fewer places, with the eventual goal
of allowing the user to rename or exclude ->meta
altogether. Instead uses Class::MOP::class_of. (Sartak)
* Class::MOP
- New class_of function that should be used to retrieve a
metaclass. This is unlike get_metaclass_by_name in that it
accepts instances, not just class names. (Sartak)
* Class::MOP
- load_first_existing_class didn't actually load the first
existing class; instead, it loaded the first existing and
compiling class. It now throws an error if a class exists (in
@INC) but fails to compile. (hdp)
* Class::MOP
* Class::MOP::Class
- we had some semi-buggy code that purported to provide a
HAS_ISAREV based on whether mro had get_isarev (due to an
oversight, it always returned 1). Since mro and MRO::Compat
have always had get_isarev, HAS_ISAREV was pointless. This
insight simplified the subclasses method by deleting the
pure-perl fallback. HAS_ISAREV is now deprecated. (Sartak)
0.79 Fri, March 29, 2009
* No changes from 0.78_02.
0.78_02 Thu, March 26, 2009
* Class::MOP::Class
* Class::MOP::Immutable
- A big backwards-incompatible refactoring of the Immutable API,
and the make_immutable/make_mutable pieces of the Class
API. The core __PACKAGE__->meta->make_immutable API remains
the same, however, so this should only affect the most
guts-digging code.
* XS code
- The XS code used a macro, XSPROTO, that's only in 5.10.x. This
has been fixed to be backwards compatible with 5.8.x.
* Class::MOP::Class
- Add a hook for rebless_instance_away (Sartak)
- Use blessed instead of ref to get an instance's class name
in rebless_instance. (Sartak)
0.78_01 Wed, March 18, 2009
* Class::MOP::*
- Revised and reorganized all of the API documentation. All
classes now have (more or less) complete API documentation.
* Class::MOP::Class
* Class::MOP::Instance
- Reblessing into a package that supports overloading wasn't
properly adding overload magic to the object due to a bug
in (at least) 5.8.8. We now use $_[1] directly which seems
to set the magic properly. (Sartak)
* Class::MOP::Attribute
- The process_accessors method is now private. A public alias
exists (and will stick around for a few releases), but it
warns that calling the public method is deprecated.
* Class::MOP::Method::Generated
- Removed the new and _new methods, since this is an abstract
base class, and all existing subclasses implement their own
constructors.
* MOP.xs
- Stop is_class_loaded from thinking a class is loaded if it
only has an empty GV (Florian Ragwitz).
- Add a test for this (Yappo).
- Refactor get_all_package_symbols to allow short-circuiting
(Florian Ragwitz).
- Use this in is_class_loaded (Florian Ragwitz).
- Stop segfaulting when trying to get the name from a sub that's
still being compiled (Florian Ragwitz).
- Add tests for this (Florian Ragwitz).
- Prefix all public symbols with "mop_" (Florian Ragwitz).
- Clean up and simplify prehashing of hash keys (Florian Ragwitz).
- Simplify creating simple xs reader methods (Florian Ragwitz).
- Make everything compile with c++ compilers (Florian Ragwitz).
- Upgrade ppport.h from 3.14 to 3.17 (Florian Ragwitz).
* Tests
- Remove optional test plans for tests depending on Sub::Name as
we have a hard dependency on Sub::Name anyway (Florian Ragwitz).
* Makefile.PL
- Rebuild all c code if mop.h has changed (Florian Ragwitz)
0.78 Mon, February 23, 2009
* No changes from 0.77_01
0.77_01 Sun, February 22, 2009
* Everything
- This package now requires its XS components. Not using
Sub::Name lead to different behavior and bugginess in the pure
Perl version of the code. A Moose test would fail when run
against the pure Perl version of this code.
* Class::MOP::Instance
- The inline_* methods now quote attribute names themselves, and
don't expect to receive a quoted value.
0.77 Sat, February 14, 2009
* MOP.xs
- Avoid assertion errors on debugging perls in is_class_loaded
(Florian Ragwitz)
* Class::MOP
- Fixed various corner cases where is_class_loaded incorrectly
returned true for a class that wasn't really loaded. (Dave
Rolsky)
* Class::MOP::Class
- Add get_all_method_names (Sartak)
- Add a wrapped_method_metaclass attribute (Florian Ragwitz)
* Class::MOP::Package
- Disable deprecated get_all_package_symbols in list
context. (Florian Ragwitz)
* Makefile.PL
- Make sure we generate a BSD-compatible Makefile (Florian
Ragwitz)
* Class::MOP::Class
- The misspelled "check_metaclass_compatability" method we've
kept around for backwards compat_i_bility will be removed in a
near future release. You've been warned.
0.76 Thu, January 22, 2009
* Class::MOP::Method::Generated
- Added new private methods to support code generation, which
are being used by Moose and can be used by MooseX
authors. (mst)
- Generated methods are now generated with a #line directive
reflecting the source of the generated method. (nothingmuch)
* Class::MOP::Class
- Clarified documentation of methods that return
Class::MOP::Method objects. (doy)
* Class::MOP
- Clarified documentation of the metaclass cache methods. (Sartak)
* Tests
- Add test showing how the xs Class::MOP::is_class_loaded can
be made to operate differently to the pure perl version (t0m)
0.75 Wed, December 31, 2008
* Class::MOP::Class
- A class that was made immutable and then mutable could end up
sharing an immutable transformer object
(Class::MOP::Immutable) with other classes, leading to all
sorts of odd bugs. Reported by t0m. (Dave Rolsky)
0.74 Tue, December 25, 2008
* MOP.xs
- Add an xs implementation of Class::MOP::is_class_loaded (closes
RT#41862). Based on a patch by Goro Fuji. (Florian Ragwitz)
- Changed internals to make prehashing of hash keys easier and less
error-prone. (Florian Ragwitz)
* Class::MOP::Class
- Fix documentation to show that around modifiers happen on both
sides of the modified method. (Dave Rolsky)
0.73 Tue, December 16, 2008
* MOP.xs
- Don't use Perl_mro_meta_init. It's not part of the public perl
api. Fixes failures to build on Win32 (RT #41750). (Florian
Ragwitz)
* t/082_get_code_info.t
- Add $^P &= ~0x200; (per Ovid's suggestion) in order to not
munger anonymous subs when under -d and so making the tests
succeed in that case.
0.72 Mon, December 8, 2008
* Class::MOP::Package
- Pass options to _new, so subclass' attributes can be
initialized (Sartak)
* Class::MOP::Method
- In the docs, indicate that package_name and name are required
when calling ->wrap (Stefan O'Rear)
0.71_02 Fri, December 5, 2008
* Class::MOP::Immutable
- Added a new attribute, inlined_constructor, which is true if
the constructor was inlined.
* Class::MOP::Package
- Make get_all_package_symbols return a hash ref in scalar
context and deprecate calling it in list context with a
warning. (Florian Ragwitz)
* MOP.xs
- Various improvements and refactoring, making things more robust and
easier to maintain. (Florian Ragwitz)
0.71_01 Wed, December 3, 2008
* Class::MOP::Method
- Add an "execute" method to invoke the body so
we can avoid using the coderef overload (Sartak)
* Class::MOP::Immutable
- When we memoize methods, get their results lazily
to remove some compile-time cost (Sartak)
- Small speedup from eliminating several method
calls (Sartak)
* Class::MOP::Class
- Some small internal tweaks to try to reduce the number of
times we call get_method_map when bootstrapping the MOP. This
might make loading Class::MOP (and Moose) a little
faster. (Dave Rolsky)
- Implemented an optional XS version of get_method_map. Mostly
taken from a patch by Goro Fuji (rt.cpan.org #41080), with
help form Florian Ragwitz. (Dave Rolsky)
- Make the behaviour of of get_all_package_symbols (and
therefore get_method_map) consistent for stub methods. Report
and test by Goro Fuji (rt.cpan.org #41255). (Florian Ragwitz)
0.71 Wed November 26, 2008
* Class::MOP::Class
* Class::MOP::Module
- Actual package creation has moved upward from
Class to Module so that Moose roles can share
the code (Sartak)
0.70_01 Mon, November 19, 2008
* Class::MOP
- Fixes for failures with blead (Florian Ragwitz)
- Silenced compiler warnings (Florian Ragwitz)
0.70 Fri, November 14, 2008
* Class::MOP
- Fixed an odd corner case where the XS version of
get_all_package_symbols could cause a segfault. This only
happened with inlined constants in Perl 5.10.0 (Florian
Ragwitz)
0.69 Fri, November 7, 2008
* Class::MOP::Method::Wrapped
- Added introspection methods for method modifiers (Dave Rolsky)
0.68 Fri October 24, 2008
* Class::MOP
- Make load_class require by file name instead of module name.
This stops confusing error messages when loading '__PACKAGE__'.
(Florian Ragwitz)
- Add load_one_class_of function to enable you to load one of a
list of classes, rather than having to call load_class multiple
times in an eval. (t0m)
0.67 Tue October 14, 2008
* Class::MOP::Class
- Call a method on the class after setting the superclass list
so that we can get Perl to detect cycles before MRO::Compat
spirals into an infinite loop (sartak)
- Reported by Schwern, [rt.cpan.org #39001]
- In create(), pass unused options on to initialize()
- added test for this
0.66 Sat September 20, 2008
!! This release has an incompatible change regarding !!
introspection of a class's method with Class::MOP::Class !!
* Tests and XS
- We (us maintainers) now run all tests with XS and then without
XS, which should help us catch skew between the XS/pure Perl
code. (Dave Rolsky)
* Class::MOP::Class
! The alias_method method has been deprecated. It now simply
calls add_method instead. There is no distinction between
aliased methods and "real" methods.
This means that methods added via alias_method now show up as
part of the class's method list/map. This is a backwards
incompatible change, but seems unlikely to break any
code. Famous last words. (Dave Rolsky)
* Class::MOP::Class
- Fixed the spelling of "compatibility", but we still have a
"check_metaclass_compatability" method for backwards
compatibility.
0.65 Mon September 1, 2008
For those not following the series of dev releases, the changes
from 0.64 from 0.65 can mostly be summed up as a lot performance
improvements by nothingmuch, including new optional XS versions of
some methods. Also, Class::MOP now works _without_ any XS modules,
for sad systems without a compiler.
* Class::MOP::Method
- Added name and package_name XS accessors, and make sure all
the XS and Perl versions work the same way. (Dave Rolsky)
* MOP.xs
- The XS versions of various methods just returned undef when
called class methods, rather than dying like the pure Perl
versions. (Dave Rolsky)
0.64_07 Fri August 29, 2008
* Class::MOP
- Silenced warnings that managed to break Moose tests when XS
was loaded. (Dave Rolsky)
- Some XS versions of methods were ignored because of typos in
MOP.xs. (Dave Rolsky)
0.64_06 Mon August 25, 2008
* Class::MOP (MOP.xs)
- Another MS VC++ fix, cannot declare a variable in the middle
of a scope (Taro Nishino).
0.64_05 Sun August 24, 2008
* Class::MOP
- None of the dev releases actually loaded the XS properly, but
we silently fell back to the pure Perl version of the
code. (Dave Rolsky)
* Class::MOP (MOP.xs)
- Replaced some code that used functions not available on Visual
C++ with some Perl XS API bits (Dave Rolsky).
0.64_04 Sat August 23, 2008
* Class::MOP::Class
- Workaround a bug in 5.8.1's goto sub (nothingmuch)
* pod.t and pod_coveraget.t
- These are no longer shipped with the tarball because of bogus
failures from CPAN testers. (Dave Rolsky)
0.64_03 Thu August 21, 2008
* Class::MOP::Package
- Some (legit) code was misparsed by earlier 5.8.x
releases. (nothingmuch)
* Class::MOP
- Fix a constant in void context warning (nothingmuch)
0.64_02 Thu August 21, 2008
* Makefile.PL and Class::MOP
- Explicitly require Perl 5.8.0+ (Dave Rolsky)
* Makefile.PL
- Add missing prereqs that got lost in the switch away from
Module::Install.
* Class::MOP::Instance
- New method - get_all_attributes (nothingmuch)
0.64_01 Wed August 20, 2008
* Makefile.PL
- We now check to see if you have a compiler. If you don't, the
module installs without some XS bits, but will work the same
as with XS. This should make it easier to install on platforms
without a compiler (like Windows). (Dave Rolsky)
* many modules
- Perl 6 style attribute naming replaced with sane style ('methods', not
'%!methods'). These changes should not impact any existing API uses.
(nothingmuch).
* many modules
- Quite a number of optimizations based on profiling, including
allowing constructors to take hash references instead of
hashes, duplicating some frequently used code in XS, and
making constructors immutable. These changes should not impact
any existing API uses. (nothingmuch)
* Many modules
- Constructors now respect the meta attributes of their subclasses,
facilitating MOP extensibility. More related changes will happen in the
next several releases. (nothingmuch)
* Class::MOP::Class
- New method - get_all_methods, replaces the deprecated
compute_all_applicable_methods. get_all_attributes provided for
consistency (nothingmuch)
- New method - wrap_method was refactored out of get_method_map
(nothingmuch)
- New API for meta instance invalidation - invalidate_meta_instance,
invalidate_meta_instances, add_dependent_meta_instance,
remove_dependent_meta_instance, called automatically when attribute
definitions change and allows notification of dependent subclasses.
(nothingmuch)
0.64 Sun August 3, 2008
* Class::MOP::Immutable
- fixing subtle edge case in immutable when you
call ->meta (stevan)
- clean up option processing (nothingmuch)
* Class::MOP::Instance
- inlined initialize slot didn't match
non-inlined (nothingmuch)
0.63 Mon July 7, 2008
* Class::MOP
- load_class will initialize a metaclass even if
the class is already loaded (sartak)
- load_class now returns the metaclass instance
instead of just 1 (sartak)
* elsewhere
- better error messages (sartak and Dave Rolsky)
0.62 Wed June 18, 2008
- in is_class_loaded, recognize scalar references (as opposed to globs) in
the symbol table as methods (these are optimized constant subs)
0.61 Fri. June 13, 2008
- Okay, lets give this another try and see if PAUSE
recognizes it correct this time.
0.60 Thurs. Jun 12, 2008
- Fixed a version number issue by bumping all modules
to 0.60.
0.59 Thurs. Jun 12, 2008
!! Several fixes resulting in yet another 25-30% speedup !!
* Class::MOP::Class
- now stores the instance of the instance
metaclass to avoid needless recomputation
and deletes it when the cache is blown
- introduce methods to query Class::MOP::Class for
the options used to make it immutable as well as
the proper immutable transformer. (groditi)
* Class::MOP::Package
- {add, has, get, remove}_package_symbol all
now accept a HASH ref argument as well as the
string. All internal usages now use the HASH
ref version.
* Class::MOP
- MOP.xs does sanity checks on the coderef
to avoid a segfault
- is_class_loaded check now uses code that
was improved in Moose's ClassName type
check (Sartak)
- nonsensical (undef, empty, reference) class
names now throw a more direct error in
load_class (Sartak)
- tests for this and other aspects of
load_class (Sartak)
* Class::MOP
Class::MOP::Class
Class::MOP::Method
Class::MOP::Method::Wrapped
Class::MOP::Attribute
- switched usage of reftype to ref because
it is much faster
0.58 Thurs. May 29, 2008
(late night release engineering)--
- fixing the version is META.yml, no functional
changes in this release
0.57 Wed. May 28, 2008
!! Several speedups resulting in 20-25% speedups !!
|| (thanks to konobi, groditi, mst & CataMoose) !!
* Class::MOP::Class
- made get_method_map use list_all_package_symbols
instead of manually grabbing each symbol
- streamlining &initialize somewhat, since it gets
called so much
* Class::MOP::Package
- made {get, has}_package_symbol not call
&namespace so much
- inlining a few calls to &name with
direct HASH access key access
- added get_all_package_symbols to fetch
a HASH of items based on a type filter
similar to list_all_package_symbols
- added tests for this
* Class::MOP::Method
Class::MOP::Method::Constructor
Class::MOP::Method::Generated
Class::MOP::Method::Accessor
- added more descriptive error message to help
keep people from wasting time tracking an error
that is easily fixed by upgrading.
* Class::MOP::Immutable
- Don't inline a destructor unless the user actually
needs one
- added tests for this
0.56 Saturday, May 24, 2008
* Class::MOP
- we now get the &check_package_cache_flag
function from MRO::Compat
- All XS based functionality now has a
Pure Perl alternative
- the CLASS_MOP_NO_XS environment variable
can now be used to force non-XS versions
to always be used
* Class::MOP::Attribute
- add has_read_method and has_write_method
- get_{read,write}_method_ref now wraps the
anon-sub ref in the method metaclass when
possible
- added tests for this
* Class::MOP::Immutable
- added the ability to "wrap" methods when
making the class immutable
* Class::MOP::Class
- now handling the edge case of ->meta->identifier
dying by wrapping add_package_symbol to specifically
allow for it to work.
- added tests for this
* Class::MOP::Attribute
Class::MOP::Class
Class::MOP::Immutable
- any time a method meta object is constructed
we make sure to pass the correct package and
method name information
* Class::MOP::Method
Class::MOP::Method::Wrapped
Class::MOP::Method::Generated
Class::MOP::Method::Accessor
Class::MOP::Method::Consructor
- the &wrap constructor method now requires that a
'package_name' and 'name' attribute are passed. This
is to help support the no-XS version, and will
throw an error if these are not supplied.
- all these classes are now bootstrapped properly
and now store the package_name and name attributes
correctly as well
~ Build.PL has been removed since the
Module::Install support has been removed
0.55 Mon. April 28, 2008
- All classes now have proper C3 MRO support
- added MRO::Compat as a dependency to allow
for the C3 MRO support to Just Work in all
perl versions
* Class::MOP::Class
- rebless_instance now returns the instance
it has just blessed, this is mostly to
facilitate chaining
- set the attr correctly in rebless_instance
when it has no init_arg
- tweaked &linear_isa and &class_precedence_list
to support c3 classes.
0.54 Fri. March, 14, 2008
* Class::MOP
metaclass.pm
- making sure that load_class never gets
passed a value from @_ or $_ to squash
Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
* Class::MOP::Class
- make_{immutable,mutable} now return 1
(cause Sartak asked)
- improved error handling in ->create method
- rebless_instance now takes extra params which
will be used to populate values
- added tests for this
* Class::MOP::Object
- localizing the Data::Dumper configurations so
that it does not pollute others (RT #33509)
* Class::MOP::Class
Class::MOP::Package
Class::MOP::Module
Class::MOP::Method
Class::MOP::Attribute
- these classes no longer define their own ->meta,
but instead just inherit from Class::MOP::Object
* Class::MOP::Instance
Class::MOP::Immutable
- these classes now inherit from Class::MOP::Object
* t/
- fixed the filename length on several
test files so we install on VMS better
(RT #32295)
- fixed incorrect use of catdir when it
should be catfile (RT #32385)
0.53 Thurs. Feb. 14, 1008
~~ several doc. fixes and updates ~~
* Class::MOP::Class
Class::MOP::Method::Constructor
Class::MOP::Attribute
- making init_arg accept an undefined value
to indicate that no constructor args can
be passed (thanks to nothingmuch)
- added tests for this
- added attribute initializer attribute (rjbs)
* Class::MOP.
- making this use the new init_arg => undef
feature instead of the silly hack from
before (thanks to nothingmuch)
0.52 Tues. Jan. 22, 2008
* Class::MOP::Class
- fixed bug in rebless_instance
(discovered by ash)
* Class::MOP::Method::Constructor
- removed assumptions about the existence of
a &meta method
0.51 Mon. Jan. 14, 2008
~~~ some misc. doc. fixes ~~~
~~ updated copyright dates ~~
* Class::MOP
- now sets the IS_RUNNING_ON_5_10
constant so that we can take advantage
of some of the nice bits of 5.10
* Class::MOP::Class
- uses the IS_RUNNING_ON_5_10 flag to
optimize the &linearized_isa method
and avoid the hack/check for circular
inheritence in &class_precedence_list
- added rebless_instance method (Sartak)
- added tests for this
* Class::MOP::Immutable
- the immutable class now keeps track of
the transformer which immutablized it
* Class::MOP::Instance
- added rebless_instance_structure method (Sartak)
- added tests for this
0.50 Fri. Dec. 21, 2007
* Class::MOP::Class
- fixed bug in immutable to make sure that
transformation arguments are saved
correctly (mst)
- added tests for this
* Class::MOP::Immutable
- fixed a bug (see above)
* Class::MOP::Attribute
- some doc updates
0.49 Fri. Dec. 14, 2007
!! Class::MOP now loads 2 x faster !!
!! with XS speedups (thanks konobi) !!
* Class::MOP
- removed the dependency on B
- added two XS functions (thanks konobi)
- get_code_info($code) which replaces all
the B fiddling we were doing with
faster/leaner XS level fiddling
- check_package_cache_flag($pkg_name) which
returns the PL_sub_generation variable to
be used to help manage method caching.
NOTE:
In 5.10 or greater this will actually
use the mro::get_pkg_gen instead to give
even more accurate caching information.
blblack++ for that stuff :)
* Class::MOP::Class
- added the &subclasses method (thanks rlb)
- added the update_package_cache_flag and
reset_package_cache_flag which help keep
track of when we need to re-fetch the
method map.
- Several small improvements to take advantage
of the new method map caching features
0.48 Mon. Nov. 26, 2007
* Class::MOP::Attribute
- fixed get_read/write_method to handle the
HASH ref case, which makes the
get_read/write_method_ref handle it too.
- added more tests for this
0.47 Sat. Nov. 24, 2007
* Class::MOP::Attribute
- fixed misspelling in get_write_method_ref
- added more tests for this
0.46 Fri. Nov. 23, 2007
* Class::MOP::Class
- added the linearized_isa method instead of constantly
pruning duplicate classes (this will be even more
useful in the 5.10-compat version coming soon)
* Class::MOP::Attribute
- added the get_read_method_ref and get_write_method_ref
methods which allow you to retrieve a CODE ref which
can always be used to read or write an attribute.
0.45 Thurs. Nov. 13, 2007
* Class::MOP::Attribute
- Fix error message on confess (groditi)
0.44 Thurs. Nov. 13, 2007
- Apparently I didn't make dist correctly (groditi)
0.43 Thurs. Nov. 13, 2007
* Class::MOP
- Add support for the 'builder' attribute (groditi)
* Class::MOP::Class
- optimise metaclass-already-exists check in
construct_class_instance (groditi)
- duplicate check into initialize to save a
call through (groditi)
* Class::MOP::Attribute
- Add support for the 'builder' attribute (groditi)
- Make predicates check for the existence of a value, not whether
it is defined (groditi)
* Class::MOP::Instance
- Make predicates check for the existence of a value, not whether
it is defined (groditi)
* Class::MOP::Method::Accessor
- made this a subclass of Class::MOP::Method::Generated
- removed the relevant attributes
* Class::MOP::Method::Constructor
- fixed the cached values we had to be more sane
- made this a subclass of Class::MOP::Method::Generated
- fixed generated constructor so it properly handles
subclasses now.
- added tests for this
- added the option to allow for both inlined and
non-inlined constructors.
- Update inlined methods for builder and predicate changes (groditi)
* Class::MOP::Method::Generated
- added this class as an abstract base for the
Class::MOP::Method::{Constructor,Accessor} classes
- added tests for this
*t/
- Alter tests (005, 014 020, 021) for new builder addition (groditi)
- Tests for new predicate behavior (and corrections to old tests) (groditi)
*examples/
- Update ArrayRef based class example to work with predicate changes
0.42 Mon. July 16, 2007
!!! Horray for mst, he fixed it !!!
* Class::MOP::Package
- alter symbol table handling to deal with 5.8.x and 5.9.x
* t/
- Get rid of the crappy workaround from 0.40/41
0.41 Sun. July 15, 2007
* t/
Arghh!!! My TODO test didn't work, so I handle
it manually now so that people can use this
with 5.9.5/bleadperl without issue.
0.40 Tues, July 3, 2007
* t/
~ marked a test in 003_methods.t as TODO
for perl 5.9.5 (this test is irrelvant to
the module functioning on 5.9.5 for the most
part anyway)
0.39 Mon. June 18, 2007
* Class::MOP::Immutable
- added make_metaclass_mutable + docs (groditi)
- removed unused variable
- added create_immutable_transformer
necessary for sane overloading of immutable behavior
- tests for this (groditi)
* Class::MOP::Class
- Immutability can now be undone,
added make_mutable + tests + docs (groditi)
- Massive changes to the way Immutable is done
for details see comments next to make_immutable
This fixes a bug where custom metaclasses broke
when made immutable. We are now keeping one immutable
metaclass instance per metaclass instead of just one
to prevent isa hierarchy corruption. Memory use will go
up, but I suspect it will be neglible.
- New tests added for this behavior. (groditi)
0.38 Thurs. May 31, 2007
~~ More documentation updates ~~
* Class::MOP::Package
- we now deal with stub methods properly
- added tests for this
- fixed some tests failing on 5.9.5 (thanks blblack)
* Class::MOP::Attribute
- added get_read_method and get_write_method
thanks to groditi for this code, tests
and docs.
- added tests and POD for this
* Class::MOP::Class
- fixed RT issue #27329, clone object now
handles undef values correctly.
- added tests for this
- Corrected anon-class handling so that they
will not get reaped when instances still
exist which need to reference them. This is
the correct behavior, hopefully this is an
obscure enough feature that there are not too
many work arounds out in the wild.
- added tests for this by groditi
- updated docs to explain this
* metaclass
- load custom metaclasses automatically (thanks groditi)
- added tests for this behavior
0.37 Sat. March 10, 2007
~~ Many, many documentation updates ~~
* Class::MOP
- added &load_class and &is_class_loaded
- added tests and docs for these
* Class::MOP::Attribute
- default now checks the instance with defined to
avoid setting off bool-overloads (found by Carl Franks)
0.37_002
* /t
- bad name in a test, causing meaningless failuress.
No other changes.
0.37_001
~~ GLOBAL CHANGES ~~
- All attribute names are now consistent and follow Perl 6
style (prefixed with the sigil, and ! as the twigil for
private attrs). This should not affect any code, unless
you broke encapsulation, in which case, it is your problem
anyway.
!! Class::MOP::Class::Immutable has been removed
* Class::MOP::Method::Constructor
- this has been moved out of Class::MOP::Class::Immutable
and is a proper subclass of Class::MOP::Method now.
* Class::MOP::Class
- this module now uses Class::MOP::Immutable for the
immutable transformation instead of
Class::MOP::Class::Immutable.
+ Class::MOP::Immutable
- this module now controls the transformation from a mutable
to an immutable version of the class. Docs for this will
be coming eventually.
0.36 Sun. Nov. 5, 2006
* Class::MOP::Class
- added a few 'no warnings' lines to keep annoying
(and meaningless) warnings from chirping during
global destruction.
* Class::MOP
- some more bootstrapping is now done on the new
classes
* Class::MOP::Class::Immutable
*** API CHANGE ***
- constructor generation is now handled by
the Class::MOP::Method::Constructor class
* Class::MOP::Method::Constructor
- created this to handle constructor generation
in Class::MOP::Class::Immutable
* Class::MOP::Attribute
*** API CHANGE ***
- attributes now delegate to the
Class::MOP::Method::Accessor to generate
accessors
* Class::MOP::Method::Accessor
- all accessor generation functions from
Class::MOP::Attribute have been moved here
0.35 Sat. Sept. 30, 2006
* scripts/class_browser.pl
- initial prototype of a class browser, more
on this to come. Comments and patches are
very much welcome.
* Class::MOP
- All Class::MOP::* accessors are no longer
re-generated in the bootstrap, instead
they are aliased from the originals
- fixed tests to reflect
- added Class::MOP::Method (and its subclasses)
to the bootstrap
- adjusted tests for this
- added the Class::MOP::Instance attributes
to the bootstrap
* Class::MOP::Method
*** API CHANGE ***
- methods are no longer blessed CODE refs
but are actual objects which can be CODE-ified
- adjusted tests to compensate
- adjusted docs for this
* Class::MOP::Class
- changed how methods are dealt with to
encapsulate most of the work into the
&get_method_map method
- made several adjustments for the change
in Class::MOP::Method
- &add_attribute now checks if you are adding
a duplicate name, and properly removes the
old one before installing the new one
- added tests for this
- adjusted docs for this
* Class::MOP::Class::Immutable
- added caching of &get_method_map
- fixed issue with &get_package_symbol
- cleaned up the methods that die (patch by David Wheeler)
* Class::MOP::Package
- added filtering capabilities to
&list_all_package_symbols
0.34 Sat. Aug. 26, 2006
* Class::MOP::Class
- added the %:methods attribute, which like
the $:version and such just actually goes
to the symbol table to get its stuff.
However, it makes the MOP more complete.
** API CHANGE **
- The &create method now requires that all
but the package name now is passed in as
named parameters. See docs for more info.
- updated docs and tests for this
* Class::MOP::Object
- added &dump method to easily Data::Dumper
an object
* Class::MOP
- cleaned up the initialization of attributes
which do not store things in the instance
- added the %:methods attribute definition to
the bootstrap
~ lots of misc. test cleanup
0.33 Sat. Aug. 19, 2006
* Class::MOP::Class
- moved the metaclass cache out of here
and it is now in Class::MOP itself.
* Class::MOP
- moved all the metaclass cache stuff here
- fixed all tests for this
* Class::MOP::Attribute
- reference values (other than CODE refs)
are no longer allowed for defaults
- added tests for this
* Class::MOP::Package
- fixed an issue with perl 5.8.1 and how it deals
with symbol tables. The namespace hash is now
always reloaded from the symbol table.
~ lots of misc. documentation cleanup
0.32 Sat. Aug. 12, 2006
+ added Class::MOP::Object so that the
metamodel is more complete (and closer
to what Perl 6 will probably be).
* Class::MOP::Package
- refactored entire class, this is now
the primary gateway between the metaclass
and the Perl 5 symbol table
- added many tests for this
- this class is now a subclass of
Class::MOP::Object
- added some tests to reflect this
* Class::MOP::Class
- refactored all symbol table access to
use Class::MOP::Package methods instead
* Class::MOP::Module
- adding the $:version attribute in the bootstrap
so that Module has a version as an attribute
- see comment in Class::MOP for details
- added the $:authority attribute to this module
as well as an &identifier method, to bring us
ever closer to Perl 6 goodness
- I have added $AUTHORITY to all the modules
- added tests for this
* Class::MOP::Instance
- added &deinitialize_slot for removing slots
from an instance
- added tests for this
* Class::MOP::Attribute
- added support for &deinitialize_slot for removing
slots from an instance
- added tests for this
0.31 Sat. July 15, 2006
* Class::MOP::Class
- added &find_method_by_name to locate a method
anywhere within the class hierarchy
* Class::MOP::Attribute
- added &set_value and &get_value for getting
the value of the attribute for a particular
instance.
0.30 Wed. July 5, 2006
---------------------------------------
This is the first version of Class::MOP
to introduce the immutable features which
will be used for optimizating the MOP.
This support should still be considered
experimental, but moving towards stability.
---------------------------------------
* Created Class::MOP::Class::Immutable
* Created the Class::MOP::Package and
Class::MOP::Module classes to more
closely conform to Perl 6's meta-model
* Class::MOP::Class
- now inherits from Class::MOP::Module
- several methods moved to ::Module and
::Package and now inherited
- added tests for this
* Class::MOP::Instance
- added an is_inlinable method to allow other
classes to check before they attempt to optimize.
- added an inline_create_instance to inline
instance creation (of course)
** API CHANGE **
- the Class::MOP::Class::*_package_variable
methods are all now methods of Class::MOP::Package
and called *_package_symbol instead. This is
because they are now more general purpose symbol
table manipulation methods.
0.29_02 Thurs. June 22, 2006
++ DEVELOPER RELEASE ++
* Class::MOP::Class
- small change in &create so that it behaves
properly when inherited
- small fix to &clone_instance
0.29_01 Fri. May 12, 2006
++ DEVELOPER RELEASE ++
- This release works in combination with
Moose 0.09_01, it is a developer release
because it introduces a new instance
sub-protocol and has not yet been
optimized.
* Class::MOP::Class
- anon-classes are now properly garbage collected
- added tests for this
- improved method modifier wrapping
* Class::MOP::Instance
- added new instance protocol
- added tests for this
- changed all relevant modules and examples
- Class::MOP::Class
- Class::MOP::Attribute
- examples/*
* metaclass
- you no longer need to specify the metaclass
itself, if it is not there, Class::MOP::Class
is just assumed
- updated tests for this
* examples/
- added ArrayBasedStorage example to show
instance storage using ARRAY refs instead of
HASH refs.
- added tests for this
- InsideOutClass is totally revised using the
new instance protocol
- added more tests for this
0.26 Mon. April 24, 2006
* Class::MOP::Class
- added find_attribute_by_name method
- added tests and docs for this
- some small optimizations
* Class::MOP::Attribute
- some small optimizations
0.25 Thurs. April 20, 2006
* Class::MOP::Class
- added create_anon_class for creating anonymous classes
- added tests for this
- added get_all_metaclasses, get_all_metaclass_names
and get_all_metaclass_instances method to allow
access to all the cached metaclass objects.
- attribute slot initialization is now the responsibility
of the attribute itself, and construct_instance now
delegates appropriately
* Class::MOP::Attribute
- attribute slot initialization is now the responsibility
of the attribute itself, so we added a method for it
called initialize_instance_slot
* examples/
- adjusted all the examples to use the new attribute
initialize_instance_slot method
0.24 Tues. April 11, 2006
* Class::MOP::Class
- cleaned up how the before/after/around method
modifiers get named with Sub::Name
0.23 Thurs. March 30, 2006
* Class::MOP::Class
- fixed the way attribute defaults are handled
during instance construction (bug found by chansen)
* Class::MOP::Attribute
- read-only accessors ('reader') will now die if
passed more than one argument (attempting to write
to them basically)
- added tests for this
- adjusted all /example files to comply
0.22 Mon. March 20, 2006
* Class::MOP::Class
- localized $@ in the *_package_variable functions
because otherwise, it does ugly things in Moose.
- added test case for this
0.21 Wed. March 15, 2006
* Class::MOP::Class
- fixed issue where metaclasses are reaped from
our cache in global destruction, and so are not
available in DESTORY calls
0.20 Thurs. March 2, 2006
- removed the dependency for Clone since
we no longer to deep-cloning by default.
* Class::MOP::Method
- added &package_name, &name and
&fully_qualified_name methods, some of
which were formerly private subs in
Class::MOP::Class
* Class::MOP::Method::Wrapped
- allows for a method to be wrapped with
before, after and around modifiers
- added tests and docs for this feature
* Class::MOP::Class
- improved &get_package_symbol
- &version and &superclasses now use it
- methods are now blessed into Class::MOP::Method
whenever possible
- added methods to install CLOS-style method modifiers
- &add_before_method_modifier
- &add_after_method_modifier
- &add_around_method_modifier
- added tests and docs for these
- added &find_next_method_by_name which finds the
equivalent of SUPER::method_name
0.12 Thurs. Feb 23, 2006
- reduced the dependency on B, no need to always
have the latest
* examples/
- added docs to the C3 method dispatch order test
- fixed missing Algorithm::C3 dependency by making
the test skip if it is not installed
0.11 Mon Feb. 20, 2006
* examples/
- added example of changing method dispatch order to C3
* Class::MOP::Class
- changed how clone_instance behaves, it now only does a
shallow clone (see docs for more details)
- added docs and tests
0.10 Tues Feb. 14, 2006
** This release was mostly about writing more tests and
cleaning out old and dusty code, the MOP should now
be considered "ready to use".
- adding more tests to get coverage up a little higher,
mostly testing errors and edge cases.
- test coverage is now at 99%
* Class::MOP
- no longer optionally exports to UNIVERSAL::meta or
creates a custom metaclass generator, use the
metaclass pragma instead.
* Class::MOP::Class
- fixed a number of minor issues which came up in the
error/edge-case tests
* Class::MOP::Attribute
- fixed a number of minor issues which came up in the
error/edge-case tests
* examples/
- fixing the AttributesWithHistory example, it was broken.
0.06 Thurs Feb. 9, 2006
* metaclass
- adding new metaclass pragma to make setting up the
metaclass a little more straightforward
* Class::MOP
- clean up bootstrapping to include more complete
attribute definitions for Class::MOP::Class and
Class::MOP::Attribute (accessors, readers, writers,
etc.) ... it is redundant, but is useful meta-info
to have around.
* Class::MOP::Class
- fixing minor meta-circularity issue with &meta, it
is now more useful for subclasses
- added &get_attribute_map as an accessor for the
hash of attribute meta objects
- &compute_all_applicable_attributes now just returns
the attribute meta-object, rather than the HASH ref
since all the same info can be gotten from the
attribute meta-object itself
- updated docs & tests to reflect
- added &clone_instance method which does a deep clone
of the instance structure created by &construct_instance
- added docs & tests for this
- added Clone as a dependency
- added &new_object and &clone_object convience methods to
return blessed new or cloned instances
- they handle Class::MOP::Class singletons correctly too
- added docs & tests for this
- cleaned up the &constuct_class_instance so that it behaves
more like &construct_instance (and managed the singletons too)
- added the &check_metaclass_compatibility method to make sure
that metaclasses are upward and downward compatible.
- added tests and docs for this
* examples/
- adjusting code to use the &Class::MOP::Class::meta
fix detailed above
- adjusting code to use the metaclass pragma
0.05 Sat Feb. 4, 2006
* Class::MOP::Class
- added the &attribute_metaclass and &method_metaclass
attributes which contain a metaclass name to use for
attributes/methods respectively
* Class::MOP
- bootstrap additional attributes for Class::MOP::Class
* examples/
- adjusted the example code and tests to use the new
&attribute_metaclass feature of Class::MOP::Class
- added new example:
- LazyClass
0.04 Fri Feb. 3, 2006
* Class::MOP::Class
- some documentation suggestions from #perl6
* Class::MOP::Attribute
- improved error messages
* examples/
- added new examples:
- AttributesWithHistory
- ClassEncapsultedAttributes
0.03 Fri Feb. 3, 2006
- converted to Module::Build instead of EU::MM
* Class::MOP::Attribute
- refactored method generation code
- attributes are now associated with class directly
* examples/
- refactored the InsideOut example to take advantage
of the Class::MOP::Attribute refactoring
- changed example files to .pod files and hide thier
package names from PAUSE (I don't want to own these
namespaces really, they are just examples)
0.02 Thurs Feb. 2, 2006
- moving examples from t/lib/* to examples/*
- adding POD documentation to the examples
0.01 Thurs Feb. 2, 2006
- Initial release
This software is copyright (c) 2006 by Infinity Interactive, Inc.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
Terms of the Perl programming language system itself
a) the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any
later version, or
b) the "Artistic License"
--- The GNU General Public License, Version 1, February 1989 ---
This software is Copyright (c) 2006 by Infinity Interactive, Inc.
This is free software, licensed under:
The GNU General Public License, Version 1, February 1989
GNU GENERAL PUBLIC LICENSE
Version 1, February 1989
Copyright (C) 1989 Free Software Foundation, Inc.
<https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The license agreements of most software companies try to keep users
at the mercy of those companies. By contrast, our General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. The
General Public License applies to the Free Software Foundation's
software and to any other program whose authors commit to using it.
You can use it for your programs, too.
When we speak of free software, we are referring to freedom, not
price. Specifically, the General Public License is designed to make
sure that you have the freedom to give away or sell copies of free
software, that you receive source code or can get it if you want it,
that you can change the software or use pieces of it in new free
programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of a such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must tell them their rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any program or other work which
contains a notice placed by the copyright holder saying it may be
distributed under the terms of this General Public License. The
"Program", below, refers to any such program or work, and a "work based
on the Program" means either the Program or any work containing the
Program or a portion of it, either verbatim or with modifications. Each
licensee is addressed as "you".
1. You may copy and distribute verbatim copies of the Program's source
code as you receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice and
disclaimer of warranty; keep intact all the notices that refer to this
General Public License and to the absence of any warranty; and give any
other recipients of the Program a copy of this General Public License
along with the Program. You may charge a fee for the physical act of
transferring a copy.
2. You may modify your copy or copies of the Program or any portion of
it, and copy and distribute such modifications under the terms of Paragraph
1 above, provided that you also do the following:
a) cause the modified files to carry prominent notices stating that
you changed the files and the date of any change; and
b) cause the whole of any work that you distribute or publish, that
in whole or in part contains the Program or any part thereof, either
with or without modifications, to be licensed at no charge to all
third parties under the terms of this General Public License (except
that you may choose to grant warranty protection to some or all
third parties, at your option).
c) If the modified program normally reads commands interactively when
run, you must cause it, when started running for such interactive use
in the simplest and most usual way, to print or display an
announcement including an appropriate copyright notice and a notice
that there is no warranty (or else, saying that you provide a
warranty) and that users may redistribute the program under these
conditions, and telling the user how to view a copy of this General
Public License.
d) You may charge a fee for the physical act of transferring a
copy, and you may at your option offer warranty protection in
exchange for a fee.
Mere aggregation of another independent work with the Program (or its
derivative) on a volume of a storage or distribution medium does not bring
the other work under the scope of these terms.
3. You may copy and distribute the Program (or a portion or derivative of
it, under Paragraph 2) in object code or executable form under the terms of
Paragraphs 1 and 2 above provided that you also do one of the following:
a) accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of
Paragraphs 1 and 2 above; or,
b) accompany it with a written offer, valid for at least three
years, to give any third party free (except for a nominal charge
for the cost of distribution) a complete machine-readable copy of the
corresponding source code, to be distributed under the terms of
Paragraphs 1 and 2 above; or,
c) accompany it with the information you received as to where the
corresponding source code may be obtained. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form alone.)
Source code for a work means the preferred form of the work for making
modifications to it. For an executable file, complete source code means
all the source code for all modules it contains; but, as a special
exception, it need not include source code for modules which are standard
libraries that accompany the operating system on which the executable
file runs, or for standard header files or definitions files that
accompany that operating system.
4. You may not copy, modify, sublicense, distribute or transfer the
Program except as expressly provided under this General Public License.
Any attempt otherwise to copy, modify, sublicense, distribute or transfer
the Program is void, and will automatically terminate your rights to use
the Program under this License. However, parties who have received
copies, or rights to use copies, from you under this General Public
License will not have their licenses terminated so long as such parties
remain in full compliance.
5. By copying, distributing or modifying the Program (or any work based
on the Program) you indicate your acceptance of this license to do so,
and all its terms and conditions.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the original
licensor to copy, distribute or modify the Program subject to these
terms and conditions. You may not impose any further restrictions on the
recipients' exercise of the rights granted herein.
7. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of the license which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
the license, you may choose any version ever published by the Free Software
Foundation.
8. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) 19xx name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the
appropriate parts of the General Public License. Of course, the
commands you use may be called something other than `show w' and `show
c'; they could even be mouse-clicks or menu items--whatever suits your
program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
program `Gnomovision' (a program to direct compilers to make passes
at assemblers) written by James Hacker.
<signature of Moe Ghoul>, 1 April 1989
Moe Ghoul, President of Vice
That's all there is to it!
--- The Perl Artistic License 1.0 ---
This software is Copyright (c) 2006 by Infinity Interactive, Inc.
This is free software, licensed under:
The Perl Artistic License 1.0
The "Artistic License"
Preamble
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to make
reasonable modifications.
Definitions:
"Package" refers to the collection of files distributed by the
Copyright Holder, and derivatives of that collection of files
created through textual modification.
"Standard Version" refers to such a Package if it has not been
modified, or has been modified in accordance with the wishes
of the Copyright Holder as specified below.
"Copyright Holder" is whoever is named in the copyright or
copyrights for the package.
"You" is you, if you're thinking about copying or distributing
this Package.
"Reasonable copying fee" is whatever you can justify on the
basis of media cost, duplication charges, time of people involved,
and so on. (You will not be required to justify it to the
Copyright Holder, but only to the computing community at large
as a market that must bear the fee.)
"Freely Available" means that no fee is charged for the item
itself, though there may be fees involved in handling the item.
It also means that recipients of the item may redistribute it
under the same conditions they received it.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain or from the Copyright Holder. A Package
modified in such a way shall still be considered the Standard Version.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or
an equivalent medium, or placing the modifications on a major archive
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where
to get the Standard Version.
b) accompany the distribution with the machine-readable source of
the Package with your modifications.
c) give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this
Package. You may not charge a fee for this Package itself. However,
you may distribute this Package in aggregate with other (possibly
commercial) programs as part of a larger (possibly commercial) software
distribution provided that you do not advertise this Package as a
product of your own. You may embed this Package's interpreter within
an executable of yours (by linking); this shall be construed as a mere
form of aggregation, provided that the complete Standard Version of the
interpreter is so embedded.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whoever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing a
binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you do
not represent such an executable image as a Standard Version of this
Package.
7. C subroutines (or comparably compiled subroutines in other
languages) supplied by you and linked into this Package in order to
emulate subroutines and variables of the language defined by this
Package shall not be considered part of this Package, but are the
equivalent of input as in Paragraph 6, provided these subroutines do
not change the language in any way that would cause it to fail the
regression tests for the language.
8. Aggregation of this Package with a commercial distribution is always
permitted provided that the use of this Package is embedded; that is,
when no overt attempt is made to make this Package's interfaces visible
to the end user of the commercial distribution. Such use shall not be
construed as a distribution of this Package.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.033.
Changes
Changes.Class-MOP
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README.md
TODO
author/doc-generator
author/extract-inline-tests
author/find-dupe-test-numbers
benchmarks/caf_vs_moose.pl
benchmarks/cmop/all.yml
benchmarks/cmop/foo.pl
benchmarks/cmop/lib/Bench/Accessor.pm
benchmarks/cmop/lib/Bench/Construct.pm
benchmarks/cmop/lib/Bench/Run.pm
benchmarks/cmop/lib/MOP/Immutable/Point.pm
benchmarks/cmop/lib/MOP/Immutable/Point3D.pm
benchmarks/cmop/lib/MOP/Installed/Point.pm
benchmarks/cmop/lib/MOP/Installed/Point3D.pm
benchmarks/cmop/lib/MOP/Point.pm
benchmarks/cmop/lib/MOP/Point3D.pm
benchmarks/cmop/lib/Plain/Point.pm
benchmarks/cmop/lib/Plain/Point3D.pm
benchmarks/cmop/loading-benchmark.pl
benchmarks/cmop/profile.pl
benchmarks/cmop/run_yml.pl
benchmarks/immutable.pl
benchmarks/lotsa-classes.pl
benchmarks/method_modifiers.pl
benchmarks/moose_bench.pl
benchmarks/simple_class.pl
benchmarks/simple_compile.pl
benchmarks/simple_constructor.pl
benchmarks/type_constraints.pl
benchmarks/type_constraints2.pl
bin/moose-outdated
dist.ini
doc/moosex-compile
inc/CheckAuthorDeps.pm
inc/CheckDelta.pm
inc/Clean.pm
inc/Documentation.pm
inc/ExtUtils/HasCompiler.pm
inc/ExtractInlineTests.pm
inc/GenerateDocs.pm
inc/MMHelper.pm
inc/MakeMaker.pm
inc/MyInline.pm
inc/SimpleAuthority.pm
inc/SimpleProvides.pm
inc/TestRelease.pm
lib/Class/MOP.pm
lib/Class/MOP/Attribute.pm
lib/Class/MOP/Class.pm
lib/Class/MOP/Class/Immutable/Trait.pm
lib/Class/MOP/Deprecated.pm
lib/Class/MOP/Instance.pm
lib/Class/MOP/Method.pm
lib/Class/MOP/Method/Accessor.pm
lib/Class/MOP/Method/Constructor.pm
lib/Class/MOP/Method/Generated.pm
lib/Class/MOP/Method/Inlined.pm
lib/Class/MOP/Method/Meta.pm
lib/Class/MOP/Method/Wrapped.pm
lib/Class/MOP/MiniTrait.pm
lib/Class/MOP/Mixin.pm
lib/Class/MOP/Mixin/AttributeCore.pm
lib/Class/MOP/Mixin/HasAttributes.pm
lib/Class/MOP/Mixin/HasMethods.pm
lib/Class/MOP/Mixin/HasOverloads.pm
lib/Class/MOP/Module.pm
lib/Class/MOP/Object.pm
lib/Class/MOP/Overload.pm
lib/Class/MOP/Package.pm
lib/Moose.pm
lib/Moose/Conflicts.pm
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod
lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod
lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod
lib/Moose/Cookbook/Basics/Company_Subtypes.pod
lib/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod
lib/Moose/Cookbook/Basics/Document_AugmentAndInner.pod
lib/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod
lib/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod
lib/Moose/Cookbook/Basics/Immutable.pod
lib/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod
lib/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod
lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod
lib/Moose/Cookbook/Extending/ExtensionOverview.pod
lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod
lib/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod
lib/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod
lib/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod
lib/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod
lib/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod
lib/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod
lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod
lib/Moose/Cookbook/Meta/WhyMeta.pod
lib/Moose/Cookbook/Roles/ApplicationToInstance.pod
lib/Moose/Cookbook/Roles/Comparable_CodeReuse.pod
lib/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod
lib/Moose/Cookbook/Snack/Keywords.pod
lib/Moose/Cookbook/Snack/Types.pod
lib/Moose/Cookbook/Style.pod
lib/Moose/Deprecated.pm
lib/Moose/Exception.pm
lib/Moose/Exception/AccessorMustReadWrite.pm
lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm
lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm
lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm
lib/Moose/Exception/ApplyTakesABlessedInstance.pm
lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm
lib/Moose/Exception/AttributeConflictInRoles.pm
lib/Moose/Exception/AttributeConflictInSummation.pm
lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm
lib/Moose/Exception/AttributeIsRequired.pm
lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm
lib/Moose/Exception/AttributeNamesDoNotMatch.pm
lib/Moose/Exception/AttributeValueIsNotAnObject.pm
lib/Moose/Exception/AttributeValueIsNotDefined.pm
lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm
lib/Moose/Exception/BadOptionFormat.pm
lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm
lib/Moose/Exception/BuilderDoesNotExist.pm
lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm
lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm
lib/Moose/Exception/BuilderMustBeAMethodName.pm
lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm
lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm
lib/Moose/Exception/CanExtendOnlyClasses.pm
lib/Moose/Exception/CanOnlyConsumeRole.pm
lib/Moose/Exception/CanOnlyWrapBlessedCode.pm
lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm
lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm
lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm
lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm
lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm
lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm
lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm
lib/Moose/Exception/CannotAugmentNoSuperMethod.pm
lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm
lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm
lib/Moose/Exception/CannotCalculateNativeType.pm
lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm
lib/Moose/Exception/CannotCallAnAbstractMethod.pm
lib/Moose/Exception/CannotCoerceAWeakRef.pm
lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm
lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm
lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm
lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm
lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm
lib/Moose/Exception/CannotDelegateWithoutIsa.pm
lib/Moose/Exception/CannotFindDelegateMetaclass.pm
lib/Moose/Exception/CannotFindType.pm
lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm
lib/Moose/Exception/CannotFixMetaclassCompatibility.pm
lib/Moose/Exception/CannotGenerateInlineConstraint.pm
lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm
lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm
lib/Moose/Exception/CannotLocatePackageInINC.pm
lib/Moose/Exception/CannotMakeMetaclassCompatible.pm
lib/Moose/Exception/CannotOverrideALocalMethod.pm
lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm
lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm
lib/Moose/Exception/CannotOverrideNoSuperMethod.pm
lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm
lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm
lib/Moose/Exception/CircularReferenceInAlso.pm
lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm
lib/Moose/Exception/ClassDoesTheExcludedRole.pm
lib/Moose/Exception/ClassNamesDoNotMatch.pm
lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm
lib/Moose/Exception/CodeBlockMustBeACodeRef.pm
lib/Moose/Exception/CoercingWithoutCoercions.pm
lib/Moose/Exception/CoercionAlreadyExists.pm
lib/Moose/Exception/CoercionNeedsTypeConstraint.pm
lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm
lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm
lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm
lib/Moose/Exception/CouldNotCreateMethod.pm
lib/Moose/Exception/CouldNotCreateWriter.pm
lib/Moose/Exception/CouldNotEvalConstructor.pm
lib/Moose/Exception/CouldNotEvalDestructor.pm
lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm
lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm
lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm
lib/Moose/Exception/CouldNotParseType.pm
lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm
lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm
lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm
lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm
lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm
lib/Moose/Exception/CreateTakesHashRefOfMethods.pm
lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm
lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm
lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm
lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm
lib/Moose/Exception/DoesRequiresRoleName.pm
lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm
lib/Moose/Exception/EnumValuesMustBeString.pm
lib/Moose/Exception/ExtendsMissingArgs.pm
lib/Moose/Exception/HandlesMustBeAHashRef.pm
lib/Moose/Exception/IllegalInheritedOptions.pm
lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm
lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm
lib/Moose/Exception/InitMetaRequiresClass.pm
lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm
lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm
lib/Moose/Exception/InstanceMustBeABlessedReference.pm
lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm
lib/Moose/Exception/InvalidArgumentToMethod.pm
lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm
lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm
lib/Moose/Exception/InvalidHandleValue.pm
lib/Moose/Exception/InvalidHasProvidedInARole.pm
lib/Moose/Exception/InvalidNameForType.pm
lib/Moose/Exception/InvalidOverloadOperator.pm
lib/Moose/Exception/InvalidRoleApplication.pm
lib/Moose/Exception/InvalidTypeConstraint.pm
lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm
lib/Moose/Exception/InvalidValueForIs.pm
lib/Moose/Exception/IsaDoesNotDoTheRole.pm
lib/Moose/Exception/IsaLacksDoesMethod.pm
lib/Moose/Exception/LazyAttributeNeedsADefault.pm
lib/Moose/Exception/Legacy.pm
lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm
lib/Moose/Exception/MatchActionMustBeACodeRef.pm
lib/Moose/Exception/MessageParameterMustBeCodeRef.pm
lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm
lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm
lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm
lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm
lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm
lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm
lib/Moose/Exception/MetaclassNotLoaded.pm
lib/Moose/Exception/MetaclassTypeIncompatible.pm
lib/Moose/Exception/MethodExpectedAMetaclassObject.pm
lib/Moose/Exception/MethodExpectsFewerArgs.pm
lib/Moose/Exception/MethodExpectsMoreArgs.pm
lib/Moose/Exception/MethodModifierNeedsMethodName.pm
lib/Moose/Exception/MethodNameConflictInRoles.pm
lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm
lib/Moose/Exception/MethodNameNotGiven.pm
lib/Moose/Exception/MustDefineAMethodName.pm
lib/Moose/Exception/MustDefineAnAttributeName.pm
lib/Moose/Exception/MustDefineAnOverloadOperator.pm
lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm
lib/Moose/Exception/MustPassAHashOfOptions.pm
lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm
lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm
lib/Moose/Exception/MustPassEvenNumberOfArguments.pm
lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm
lib/Moose/Exception/MustProvideANameForTheAttribute.pm
lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm
lib/Moose/Exception/MustSpecifyAtleastOneRole.pm
lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm
lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm
lib/Moose/Exception/MustSupplyADelegateToMethod.pm
lib/Moose/Exception/MustSupplyAMetaclass.pm
lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm
lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm
lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm
lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm
lib/Moose/Exception/MustSupplyPackageNameAndName.pm
lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm
lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm
lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm
lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm
lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm
lib/Moose/Exception/NoAttributeFoundInSuperClass.pm
lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm
lib/Moose/Exception/NoCasesMatched.pm
lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm
lib/Moose/Exception/NoDestructorClassSpecified.pm
lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm
lib/Moose/Exception/NoParentGivenToSubtype.pm
lib/Moose/Exception/OnlyInstancesCanBeCloned.pm
lib/Moose/Exception/OperatorIsRequired.pm
lib/Moose/Exception/OverloadConflictInSummation.pm
lib/Moose/Exception/OverloadRequiresAMetaClass.pm
lib/Moose/Exception/OverloadRequiresAMetaMethod.pm
lib/Moose/Exception/OverloadRequiresAMetaOverload.pm
lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm
lib/Moose/Exception/OverloadRequiresAnOperator.pm
lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm
lib/Moose/Exception/OverrideConflictInComposition.pm
lib/Moose/Exception/OverrideConflictInSummation.pm
lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm
lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm
lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm
lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm
lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm
lib/Moose/Exception/RequiredAttributeLacksInitialization.pm
lib/Moose/Exception/RequiredAttributeNeedsADefault.pm
lib/Moose/Exception/RequiredMethodsImportedByClass.pm
lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm
lib/Moose/Exception/Role/Attribute.pm
lib/Moose/Exception/Role/AttributeName.pm
lib/Moose/Exception/Role/Class.pm
lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm
lib/Moose/Exception/Role/Instance.pm
lib/Moose/Exception/Role/InstanceClass.pm
lib/Moose/Exception/Role/InvalidAttributeOptions.pm
lib/Moose/Exception/Role/Method.pm
lib/Moose/Exception/Role/ParamsHash.pm
lib/Moose/Exception/Role/Role.pm
lib/Moose/Exception/Role/RoleForCreate.pm
lib/Moose/Exception/Role/RoleForCreateMOPClass.pm
lib/Moose/Exception/Role/TypeConstraint.pm
lib/Moose/Exception/RoleDoesTheExcludedRole.pm
lib/Moose/Exception/RoleExclusionConflict.pm
lib/Moose/Exception/RoleNameRequired.pm
lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm
lib/Moose/Exception/RolesDoNotSupportAugment.pm
lib/Moose/Exception/RolesDoNotSupportExtends.pm
lib/Moose/Exception/RolesDoNotSupportInner.pm
lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm
lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm
lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm
lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm
lib/Moose/Exception/TriggerMustBeACodeRef.pm
lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm
lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm
lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm
lib/Moose/Exception/UnableToCanonicalizeHandles.pm
lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm
lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm
lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm
lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm
lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm
lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm
lib/Moose/Exception/ValidationFailedForTypeConstraint.pm
lib/Moose/Exception/WrapTakesACodeRefToBless.pm
lib/Moose/Exception/WrongTypeConstraintGiven.pm
lib/Moose/Exporter.pm
lib/Moose/Intro.pod
lib/Moose/Manual.pod
lib/Moose/Manual/Attributes.pod
lib/Moose/Manual/BestPractices.pod
lib/Moose/Manual/Classes.pod
lib/Moose/Manual/Concepts.pod
lib/Moose/Manual/Construction.pod
lib/Moose/Manual/Contributing.pod
lib/Moose/Manual/Delegation.pod
lib/Moose/Manual/Delta.pod
lib/Moose/Manual/Exceptions.pod
lib/Moose/Manual/Exceptions/Manifest.pod
lib/Moose/Manual/FAQ.pod
lib/Moose/Manual/MOP.pod
lib/Moose/Manual/MethodModifiers.pod
lib/Moose/Manual/MooseX.pod
lib/Moose/Manual/Resources.pod
lib/Moose/Manual/Roles.pod
lib/Moose/Manual/Support.pod
lib/Moose/Manual/Types.pod
lib/Moose/Manual/Unsweetened.pod
lib/Moose/Meta/Attribute.pm
lib/Moose/Meta/Attribute/Native.pm
lib/Moose/Meta/Attribute/Native/Trait.pm
lib/Moose/Meta/Attribute/Native/Trait/Array.pm
lib/Moose/Meta/Attribute/Native/Trait/Bool.pm
lib/Moose/Meta/Attribute/Native/Trait/Code.pm
lib/Moose/Meta/Attribute/Native/Trait/Counter.pm
lib/Moose/Meta/Attribute/Native/Trait/Hash.pm
lib/Moose/Meta/Attribute/Native/Trait/Number.pm
lib/Moose/Meta/Attribute/Native/Trait/String.pm
lib/Moose/Meta/Class.pm
lib/Moose/Meta/Class/Immutable/Trait.pm
lib/Moose/Meta/Instance.pm
lib/Moose/Meta/Method.pm
lib/Moose/Meta/Method/Accessor.pm
lib/Moose/Meta/Method/Accessor/Native.pm
lib/Moose/Meta/Method/Accessor/Native/Array.pm
lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm
lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm
lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm
lib/Moose/Meta/Method/Accessor/Native/Array/count.pm
lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm
lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm
lib/Moose/Meta/Method/Accessor/Native/Array/first.pm
lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm
lib/Moose/Meta/Method/Accessor/Native/Array/get.pm
lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm
lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm
lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm
lib/Moose/Meta/Method/Accessor/Native/Array/join.pm
lib/Moose/Meta/Method/Accessor/Native/Array/map.pm
lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm
lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm
lib/Moose/Meta/Method/Accessor/Native/Array/push.pm
lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm
lib/Moose/Meta/Method/Accessor/Native/Array/set.pm
lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm
lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm
lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm
lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm
lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm
lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm
lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm
lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm
lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm
lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm
lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm
lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm
lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm
lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm
lib/Moose/Meta/Method/Accessor/Native/Collection.pm
lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm
lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm
lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm
lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm
lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm
lib/Moose/Meta/Method/Accessor/Native/Hash.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm
lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm
lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm
lib/Moose/Meta/Method/Accessor/Native/Number/add.pm
lib/Moose/Meta/Method/Accessor/Native/Number/div.pm
lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm
lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm
lib/Moose/Meta/Method/Accessor/Native/Number/set.pm
lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm
lib/Moose/Meta/Method/Accessor/Native/Reader.pm
lib/Moose/Meta/Method/Accessor/Native/String/append.pm
lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm
lib/Moose/Meta/Method/Accessor/Native/String/chop.pm
lib/Moose/Meta/Method/Accessor/Native/String/clear.pm
lib/Moose/Meta/Method/Accessor/Native/String/inc.pm
lib/Moose/Meta/Method/Accessor/Native/String/length.pm
lib/Moose/Meta/Method/Accessor/Native/String/match.pm
lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm
lib/Moose/Meta/Method/Accessor/Native/String/replace.pm
lib/Moose/Meta/Method/Accessor/Native/String/substr.pm
lib/Moose/Meta/Method/Accessor/Native/Writer.pm
lib/Moose/Meta/Method/Augmented.pm
lib/Moose/Meta/Method/Constructor.pm
lib/Moose/Meta/Method/Delegation.pm
lib/Moose/Meta/Method/Destructor.pm
lib/Moose/Meta/Method/Meta.pm
lib/Moose/Meta/Method/Overridden.pm
lib/Moose/Meta/Mixin/AttributeCore.pm
lib/Moose/Meta/Object/Trait.pm
lib/Moose/Meta/Role.pm
lib/Moose/Meta/Role/Application.pm
lib/Moose/Meta/Role/Application/RoleSummation.pm
lib/Moose/Meta/Role/Application/ToClass.pm
lib/Moose/Meta/Role/Application/ToInstance.pm
lib/Moose/Meta/Role/Application/ToRole.pm
lib/Moose/Meta/Role/Attribute.pm
lib/Moose/Meta/Role/Composite.pm
lib/Moose/Meta/Role/Method.pm
lib/Moose/Meta/Role/Method/Conflicting.pm
lib/Moose/Meta/Role/Method/Required.pm
lib/Moose/Meta/TypeCoercion.pm
lib/Moose/Meta/TypeCoercion/Union.pm
lib/Moose/Meta/TypeConstraint.pm
lib/Moose/Meta/TypeConstraint/Class.pm
lib/Moose/Meta/TypeConstraint/DuckType.pm
lib/Moose/Meta/TypeConstraint/Enum.pm
lib/Moose/Meta/TypeConstraint/Parameterizable.pm
lib/Moose/Meta/TypeConstraint/Parameterized.pm
lib/Moose/Meta/TypeConstraint/Registry.pm
lib/Moose/Meta/TypeConstraint/Role.pm
lib/Moose/Meta/TypeConstraint/Union.pm
lib/Moose/Object.pm
lib/Moose/Role.pm
lib/Moose/Spec/Role.pod
lib/Moose/Unsweetened.pod
lib/Moose/Util.pm
lib/Moose/Util/MetaRole.pm
lib/Moose/Util/TypeConstraints.pm
lib/Moose/Util/TypeConstraints/Builtins.pm
lib/Test/Moose.pm
lib/metaclass.pm
lib/oose.pm
mop.c
mop.h
perltidyrc
ppport.h
t/00-report-prereqs.dd
t/00-report-prereqs.t
t/000_load.t
t/attributes/accessor_context.t
t/attributes/accessor_inlining.t
t/attributes/accessor_override_method.t
t/attributes/accessor_overwrite_warning.t
t/attributes/attr_dereference_test.t
t/attributes/attribute_accessor_generation.t
t/attributes/attribute_custom_metaclass.t
t/attributes/attribute_delegation.t
t/attributes/attribute_does.t
t/attributes/attribute_inherited_slot_specs.t
t/attributes/attribute_lazy_initializer.t
t/attributes/attribute_names.t
t/attributes/attribute_reader_generation.t
t/attributes/attribute_required.t
t/attributes/attribute_traits.t
t/attributes/attribute_traits_n_meta.t
t/attributes/attribute_traits_parameterized.t
t/attributes/attribute_traits_registered.t
t/attributes/attribute_triggers.t
t/attributes/attribute_type_unions.t
t/attributes/attribute_without_any_methods.t
t/attributes/attribute_writer_generation.t
t/attributes/bad_coerce.t
t/attributes/chained_coercion.t
t/attributes/clone_weak.t
t/attributes/default_class_role_types.t
t/attributes/default_undef.t
t/attributes/delegation_and_modifiers.t
t/attributes/delegation_arg_aliasing.t
t/attributes/delegation_target_not_loaded.t
t/attributes/illegal_options_for_inheritance.t
t/attributes/inherit_lazy_build.t
t/attributes/lazy_no_default.t
t/attributes/method_generation_rules.t
t/attributes/misc_attribute_coerce_lazy.t
t/attributes/misc_attribute_tests.t
t/attributes/more_attr_delegation.t
t/attributes/no_init_arg.t
t/attributes/no_slot_access.t
t/attributes/non_alpha_attr_names.t
t/attributes/numeric_defaults.t
t/attributes/trigger_and_coerce.t
t/attributes/type_constraint.t
t/basics/always_strict_warnings.t
t/basics/basic_class_setup.t
t/basics/buildargs.t
t/basics/buildargs_warning.t
t/basics/create.t
t/basics/create_anon.t
t/basics/definition_context.t
t/basics/deprecations.t
t/basics/destruction.t
t/basics/error_handling.t
t/basics/global-destruction-helper.pl
t/basics/global_destruction.t
t/basics/import_unimport.t
t/basics/inner_and_augment.t
t/basics/load_into_main.t
t/basics/method_modifier_with_regexp.t
t/basics/methods.t
t/basics/moose_object_does.t
t/basics/moose_respects_type_constraints.t
t/basics/override_and_foreign_classes.t
t/basics/override_augment_inner_super.t
t/basics/rebless.t
t/basics/require_superclasses.t
t/basics/super_and_override.t
t/basics/super_warns_on_args.t
t/basics/universal_methods_wrappable.t
t/basics/wrapped_method_cxt_propagation.t
t/bugs/DEMOLISHALL.t
t/bugs/DEMOLISHALL_shortcutted.t
t/bugs/DEMOLISH_eats_exceptions.t
t/bugs/DEMOLISH_eats_mini.t
t/bugs/DEMOLISH_fails_without_metaclass.t
t/bugs/Moose_Object_error.t
t/bugs/anon_method_metaclass.t
t/bugs/application_metarole_compat.t
t/bugs/apply_role_to_one_instance_only.t
t/bugs/attribute_trait_parameters.t
t/bugs/augment_recursion_bug.t
t/bugs/coerce_without_coercion.t
t/bugs/constructor_object_overload.t
t/bugs/create_anon_mkopt.t
t/bugs/create_anon_recursion.t
t/bugs/create_anon_role_pass.t
t/bugs/delete_sub_stash.t
t/bugs/find_custom_trait_rt_92089.t
t/bugs/handles_foreign_class_bug.t
t/bugs/immutable_metaclass_does_role.t
t/bugs/immutable_n_default_x2.t
t/bugs/inheriting_from_roles.t
t/bugs/inline_reader_bug.t
t/bugs/instance_application_role_args.t
t/bugs/lazybuild_required_undef.t
t/bugs/mark_as_methods_overloading_breakage.t
t/bugs/moo_delegation.t
t/bugs/moose_exporter_false_circular_reference_rt_63818.t
t/bugs/moose_octal_defaults.t
t/bugs/native_trait_handles_bad_value.t
t/bugs/overloading_edge_cases.t
t/bugs/reader_precedence_bug.t
t/bugs/role_caller.t
t/bugs/subclass_use_base_bug.t
t/bugs/subtype_conflict_bug.t
t/bugs/subtype_quote_bug.t
t/bugs/super_recursion.t
t/bugs/traits_with_exporter.t
t/bugs/type_constraint_messages.t
t/cmop/ArrayBasedStorage_test.t
t/cmop/AttributesWithHistory_test.t
t/cmop/BinaryTree_test.t
t/cmop/C3MethodDispatchOrder_test.t
t/cmop/ClassEncapsulatedAttributes_test.t
t/cmop/Class_C3_compatibility.t
t/cmop/InsideOutClass_test.t
t/cmop/InstanceCountingClass_test.t
t/cmop/LazyClass_test.t
t/cmop/Perl6Attribute_test.t
t/cmop/RT_27329_fix.t
t/cmop/RT_39001_fix.t
t/cmop/RT_41255.t
t/cmop/add_attribute_alternate.t
t/cmop/add_method_debugmode.t
t/cmop/add_method_modifier.t
t/cmop/advanced_methods.t
t/cmop/anon_class.t
t/cmop/anon_class_create_init.t
t/cmop/anon_class_keep_alive.t
t/cmop/anon_class_leak.t
t/cmop/anon_class_removal.t
t/cmop/anon_packages.t
t/cmop/attribute.t
t/cmop/attribute_duplication.t
t/cmop/attribute_errors_and_edge_cases.t
t/cmop/attribute_get_read_write.t
t/cmop/attribute_initializer.t
t/cmop/attribute_introspection.t
t/cmop/attribute_non_alpha_name.t
t/cmop/attributes.t
t/cmop/basic.t
t/cmop/before_after_dollar_under.t
t/cmop/class_errors_and_edge_cases.t
t/cmop/class_is_pristine.t
t/cmop/class_precedence_list.t
t/cmop/constant_codeinfo.t
t/cmop/create_class.t
t/cmop/custom_instance.t
t/cmop/deprecated.t
t/cmop/get_code_info.t
t/cmop/immutable_custom_trait.t
t/cmop/immutable_metaclass.t
t/cmop/immutable_w_constructors.t
t/cmop/immutable_w_custom_metaclass.t
t/cmop/inline_and_dollar_at.t
t/cmop/inline_structor.t
t/cmop/insertion_order.t
t/cmop/instance.t
t/cmop/instance_inline.t
t/cmop/instance_metaclass_incompat.t
t/cmop/instance_metaclass_incompat_dyn.t
t/cmop/lib/ArrayBasedStorage.pm
t/cmop/lib/AttributesWithHistory.pm
t/cmop/lib/BinaryTree.pm
t/cmop/lib/C3MethodDispatchOrder.pm
t/cmop/lib/ClassEncapsulatedAttributes.pm
t/cmop/lib/InsideOutClass.pm
t/cmop/lib/InstanceCountingClass.pm
t/cmop/lib/LazyClass.pm
t/cmop/lib/MyMetaClass.pm
t/cmop/lib/MyMetaClass/Attribute.pm
t/cmop/lib/MyMetaClass/Instance.pm
t/cmop/lib/MyMetaClass/Method.pm
t/cmop/lib/MyMetaClass/Random.pm
t/cmop/lib/Perl6Attribute.pm
t/cmop/lib/SyntaxError.pm
t/cmop/load.t
t/cmop/magic.t
t/cmop/make_mutable.t
t/cmop/meta_method.t
t/cmop/meta_package.t
t/cmop/meta_package_extension.t
t/cmop/metaclass.t
t/cmop/metaclass_incompatibility.t
t/cmop/metaclass_incompatibility_dyn.t
t/cmop/metaclass_inheritance.t
t/cmop/metaclass_loads_classes.t
t/cmop/metaclass_reinitialize.t
t/cmop/method.t
t/cmop/method_modifiers.t
t/cmop/methods.t
t/cmop/modify_parent_method.t
t/cmop/new_and_clone_metaclasses.t
t/cmop/null_stash.t
t/cmop/numeric_defaults.t
t/cmop/package_variables.t
t/cmop/random_eval_bug.t
t/cmop/rebless_instance.t
t/cmop/rebless_instance_away.t
t/cmop/rebless_overload.t
t/cmop/rebless_with_extra_params.t
t/cmop/scala_style_mixin_composition.t
t/cmop/self_introspection.t
t/cmop/subclasses.t
t/cmop/subname.t
t/cmop/universal_methods.t
t/compat/composite_metaroles.t
t/compat/extends_nonmoose_that_isa_moose_with_metarole.t
t/compat/foreign_inheritence.t
t/compat/inc_hash.t
t/compat/module_refresh_compat.t
t/compat/moose_respects_base.t
t/examples/Child_Parent_attr_inherit.t
t/examples/example1.t
t/examples/example2.t
t/examples/example_Moose_POOP.t
t/examples/example_Protomoose.t
t/examples/example_w_DCS.t
t/examples/example_w_TestDeep.t
t/examples/record_set_iterator.t
t/exceptions/attribute.t
t/exceptions/class-mop-attribute.t
t/exceptions/class-mop-class-immutable-trait.t
t/exceptions/class-mop-class.t
t/exceptions/class-mop-method-accessor.t
t/exceptions/class-mop-method-constructor.t
t/exceptions/class-mop-method-generated.t
t/exceptions/class-mop-method-meta.t
t/exceptions/class-mop-method-wrapped.t
t/exceptions/class-mop-method.t
t/exceptions/class-mop-mixin-hasattributes.t
t/exceptions/class-mop-mixin-hasmethods.t
t/exceptions/class-mop-module.t
t/exceptions/class-mop-object.t
t/exceptions/class-mop-package.t
t/exceptions/class.t
t/exceptions/cmop.t
t/exceptions/exception-lazyattributeneedsadefault.t
t/exceptions/frame-leak.t
t/exceptions/meta-role.t
t/exceptions/metaclass.t
t/exceptions/moose-exporter.t
t/exceptions/moose-meta-attribute-native-traits.t
t/exceptions/moose-meta-class-immutable-trait.t
t/exceptions/moose-meta-method-accessor-native-array.t
t/exceptions/moose-meta-method-accessor-native-collection.t
t/exceptions/moose-meta-method-accessor-native-grep.t
t/exceptions/moose-meta-method-accessor-native-hash-set.t
t/exceptions/moose-meta-method-accessor-native-hash.t
t/exceptions/moose-meta-method-accessor-native-string-match.t
t/exceptions/moose-meta-method-accessor-native-string-replace.t
t/exceptions/moose-meta-method-accessor-native-string-substr.t
t/exceptions/moose-meta-method-accessor-native.t
t/exceptions/moose-meta-method-accessor.t
t/exceptions/moose-meta-method-augmented.t
t/exceptions/moose-meta-method-constructor.t
t/exceptions/moose-meta-method-delegation.t
t/exceptions/moose-meta-method-destructor.t
t/exceptions/moose-meta-method-overridden.t
t/exceptions/moose-meta-role-application-rolesummation.t
t/exceptions/moose-meta-role-application-toclass.t
t/exceptions/moose-meta-role-application-torole.t
t/exceptions/moose-meta-role-application.t
t/exceptions/moose-meta-role-attribute.t
t/exceptions/moose-meta-role-composite.t
t/exceptions/moose-meta-typecoercion-union.t
t/exceptions/moose-meta-typecoercion.t
t/exceptions/moose-meta-typeconstraint-enum.t
t/exceptions/moose-meta-typeconstraint-parameterizable.t
t/exceptions/moose-meta-typeconstraint-parameterized.t
t/exceptions/moose-meta-typeconstraint-registry.t
t/exceptions/moose-meta-typeconstraint.t
t/exceptions/moose-role.t
t/exceptions/moose-util-metarole.t
t/exceptions/moose-util-typeconstraints.t
t/exceptions/moose.t
t/exceptions/object.t
t/exceptions/overload.t
t/exceptions/rt-92818.t
t/exceptions/rt-94795.t
t/exceptions/stringify.t
t/exceptions/traits.t
t/exceptions/typeconstraints.t
t/exceptions/util.t
t/exceptions/with-debugging.t
t/exceptions/without-debugging.t
t/immutable/apply_roles_to_immutable.t
t/immutable/buildargs.t
t/immutable/constructor_is_not_moose.t
t/immutable/constructor_is_wrapped.t
t/immutable/default_values.t
t/immutable/definition_context.t
t/immutable/immutable_constructor_error.t
t/immutable/immutable_destroy.t
t/immutable/immutable_meta_class.t
t/immutable/immutable_metaclass_with_traits.t
t/immutable/immutable_moose.t
t/immutable/immutable_roundtrip.t
t/immutable/immutable_trigger_from_constructor.t
t/immutable/inline_close_over.t
t/immutable/inline_fallbacks.t
t/immutable/inlined_constructors_n_types.t
t/immutable/multiple_demolish_inline.t
t/lib/Bar.pm
t/lib/Bar7/Meta/Trait.pm
t/lib/Bar7/Meta/Trait2.pm
t/lib/Foo.pm
t/lib/Moose/Meta/Attribute/Custom/Bar.pm
t/lib/Moose/Meta/Attribute/Custom/Foo.pm
t/lib/Moose/Meta/Attribute/Custom/Trait/Bar.pm
t/lib/Moose/Meta/Attribute/Custom/Trait/Foo.pm
t/lib/MyExporter.pm
t/lib/MyMetaclassRole.pm
t/lib/MyMooseA.pm
t/lib/MyMooseB.pm
t/lib/MyMooseObject.pm
t/lib/NoInlineAttribute.pm
t/lib/Overloading/ClassConsumesRoleConsumesOverloads.pm
t/lib/Overloading/ClassWithCombiningRole.pm
t/lib/Overloading/ClassWithOneRole.pm
t/lib/Overloading/CombiningClass.pm
t/lib/Overloading/CombiningRole.pm
t/lib/Overloading/RoleConsumesOverloads.pm
t/lib/Overloading/RoleWithOverloads.pm
t/lib/Overloading/RoleWithoutOverloads.pm
t/lib/OverloadingTests.pm
t/lib/Real/Package.pm
t/lib/Role/BreakOnLoad.pm
t/lib/Role/Child.pm
t/lib/Role/Interface.pm
t/lib/Role/Parent.pm
t/metaclasses/create_anon_with_required_attr.t
t/metaclasses/custom_attr_meta_as_role.t
t/metaclasses/custom_attr_meta_with_roles.t
t/metaclasses/easy_init_meta.t
t/metaclasses/export_with_prototype.t
t/metaclasses/exporter_also_with_trait.t
t/metaclasses/exporter_meta_lookup.t
t/metaclasses/exporter_sub_names.t
t/metaclasses/goto_moose_import.t
t/metaclasses/immutable_metaclass_compat_bug.t
t/metaclasses/meta_name.t
t/metaclasses/metaclass_compat.t
t/metaclasses/metaclass_compat_no_fixing_bug.t
t/metaclasses/metaclass_compat_role_conflicts.t
t/metaclasses/metaclass_parameterized_traits.t
t/metaclasses/metaclass_traits.t
t/metaclasses/metarole.t
t/metaclasses/metarole_combination.t
t/metaclasses/metarole_on_anon.t
t/metaclasses/metarole_w_metaclass_pm.t
t/metaclasses/metaroles_of_metaroles.t
t/metaclasses/moose_exporter.t
t/metaclasses/moose_exporter_trait_aliases.t
t/metaclasses/moose_for_meta.t
t/metaclasses/moose_nonmoose_metatrait_init_order.t
t/metaclasses/moose_nonmoose_moose_chain_init_meta.t
t/metaclasses/moose_w_metaclass.t
t/metaclasses/new_metaclass.t
t/metaclasses/new_object_BUILD.t
t/metaclasses/overloading.t
t/metaclasses/reinitialize.t
t/metaclasses/use_base_of_moose.t
t/moose_util/apply_roles.t
t/moose_util/create_alias.t
t/moose_util/ensure_all_roles.t
t/moose_util/method_mod_args.t
t/moose_util/moose_util.t
t/moose_util/moose_util_does_role.t
t/moose_util/moose_util_search_class_by_role.t
t/moose_util/resolve_alias.t
t/moose_util/with_traits.t
t/native_traits/array_coerce.t
t/native_traits/array_from_role.t
t/native_traits/array_subtypes.t
t/native_traits/array_trigger.t
t/native_traits/collection_with_roles.t
t/native_traits/custom_instance.t
t/native_traits/hash_coerce.t
t/native_traits/hash_subtypes.t
t/native_traits/hash_trigger.t
t/native_traits/remove_attribute.t
t/native_traits/shallow_clone.t
t/native_traits/trait_array.t
t/native_traits/trait_bool.t
t/native_traits/trait_code.t
t/native_traits/trait_counter.t
t/native_traits/trait_hash.t
t/native_traits/trait_number.t
t/native_traits/trait_string.t
t/recipes/basics_bankaccount_methodmodifiersandsubclassing.t
t/recipes/basics_binarytree_attributefeatures.t
t/recipes/basics_company_subtypes.t
t/recipes/basics_datetime_extendingnonmooseparent.t
t/recipes/basics_document_augmentandinner.t
t/recipes/basics_genome_overloadingsubtypesandcoercion.t
t/recipes/basics_http_subtypesandcoercion.t
t/recipes/basics_point_attributesandsubclassing.t
t/recipes/extending_debugging_baseclassrole.t
t/recipes/extending_mooseish_moosesugar.t
t/recipes/legacy_debugging_baseclassreplacement.t
t/recipes/legacy_labeled_attributemetaclass.t
t/recipes/meta_globref_instancemetaclass.t
t/recipes/meta_labeled_attributetrait.t
t/recipes/meta_privateorpublic_methodmetaclass.t
t/recipes/meta_table_metaclasstrait.t
t/recipes/roles_applicationtoinstance.t
t/recipes/roles_comparable_codereuse.t
t/recipes/roles_restartable_advancedcomposition.t
t/roles/anonymous_roles.t
t/roles/application_toclass.t
t/roles/apply_role.t
t/roles/build.t
t/roles/conflict_many_methods.t
t/roles/create_role.t
t/roles/create_role_subclass.t
t/roles/empty_method_modifiers_meta_bug.t
t/roles/extending_role_attrs.t
t/roles/free_anonymous_roles.t
t/roles/imported_required_method.t
t/roles/meta_role.t
t/roles/method_aliasing_in_composition.t
t/roles/method_exclusion_in_composition.t
t/roles/method_modifiers.t
t/roles/methods.t
t/roles/more_alias_and_exclude.t
t/roles/more_role_edge_cases.t
t/roles/new_meta_role.t
t/roles/overloading_combine_to_class.t
t/roles/overloading_combine_to_instance.t
t/roles/overloading_combine_to_role.t
t/roles/overloading_composition_errors.t
t/roles/overloading_remove_attributes_bug.t
t/roles/overloading_to_class.t
t/roles/overloading_to_instance.t
t/roles/overloading_to_role.t
t/roles/overriding.t
t/roles/reinitialize_anon_role.t
t/roles/role.t
t/roles/role_attr_application.t
t/roles/role_attribute_conflict.t
t/roles/role_attrs.t
t/roles/role_compose_requires.t
t/roles/role_composite.t
t/roles/role_composite_exclusion.t
t/roles/role_composition_attributes.t
t/roles/role_composition_conflict_detection.t
t/roles/role_composition_errors.t
t/roles/role_composition_method_mods.t
t/roles/role_composition_methods.t
t/roles/role_composition_override.t
t/roles/role_composition_req_methods.t
t/roles/role_conflict_detection.t
t/roles/role_conflict_edge_cases.t
t/roles/role_consumers.t
t/roles/role_exclusion.t
t/roles/role_exclusion_and_alias_bug.t
t/roles/role_for_combination.t
t/roles/roles_and_method_cloning.t
t/roles/roles_and_req_method_edge_cases.t
t/roles/roles_applied_in_create.t
t/roles/run_time_role_composition.t
t/roles/runtime_roles_and_attrs.t
t/roles/runtime_roles_and_nonmoose.t
t/roles/runtime_roles_w_params.t
t/roles/use_base_does.t
t/test_moose/test_moose.t
t/test_moose/test_moose_does_ok.t
t/test_moose/test_moose_has_attribute_ok.t
t/test_moose/test_moose_meta_ok.t
t/test_moose/with_immutable.t
t/todo_tests/exception_reflects_failed_constraint.t
t/todo_tests/immutable_n_around.t
t/todo_tests/moose_and_threads.t
t/todo_tests/replacing_super_methods.t
t/todo_tests/required_role_accessors.t
t/todo_tests/role_insertion_order.t
t/todo_tests/various_role_features.t
t/todo_tests/wrong-inner.t
t/type_constraints/advanced_type_creation.t
t/type_constraints/class_subtypes.t
t/type_constraints/class_type_constraint.t
t/type_constraints/coerced_parameterized_types.t
t/type_constraints/container_type_coercion.t
t/type_constraints/container_type_constraint.t
t/type_constraints/custom_parameterized_types.t
t/type_constraints/custom_type_errors.t
t/type_constraints/define_type_twice_throws.t
t/type_constraints/duck_type_handles.t
t/type_constraints/duck_types.t
t/type_constraints/enum.t
t/type_constraints/inlining.t
t/type_constraints/match_type_operator.t
t/type_constraints/maybe_type_constraint.t
t/type_constraints/misc_type_tests.t
t/type_constraints/name_conflicts.t
t/type_constraints/normalize_type_name.t
t/type_constraints/parameterize_from.t
t/type_constraints/role_type_constraint.t
t/type_constraints/subtype_auto_vivify_parent.t
t/type_constraints/subtyping_parameterized_types.t
t/type_constraints/subtyping_union_types.t
t/type_constraints/throw_error.t
t/type_constraints/type_coersion_on_lazy_attributes.t
t/type_constraints/type_names.t
t/type_constraints/type_notation_parser.t
t/type_constraints/types_and_undef.t
t/type_constraints/union_is_a_type_of.t
t/type_constraints/union_types.t
t/type_constraints/union_types_and_coercions.t
t/type_constraints/util_find_type_constraint.t
t/type_constraints/util_more_type_coercion.t
t/type_constraints/util_std_type_constraints.t
t/type_constraints/util_type_coercion.t
t/type_constraints/util_type_constraints.t
t/type_constraints/util_type_constraints_export.t
t/type_constraints/util_type_reloading.t
t/type_constraints/with-specio.t
t/type_constraints/with-type-tiny.t
t/zzz-check-breaks.t
weaver.ini
xs/Attribute.xs
xs/AttributeCore.xs
xs/Class.xs
xs/Generated.xs
xs/HasAttributes.xs
xs/HasMethods.xs
xs/Inlined.xs
xs/Instance.xs
xs/MOP.xs
xs/Method.xs
xs/Moose.xs
xs/Package.xs
xs/ToInstance.xs
xs/typemap
xt/author/authority.t
xt/author/debugger-duck_type.t
xt/author/distmeta.t
xt/author/eol.t
xt/author/memory_leaks.t
xt/author/mojibake.t
xt/author/no-tabs.t
xt/author/pod-coverage.t
xt/author/pod-spell.t
xt/author/pod-syntax.t
xt/author/test-my-dependents.t
xt/release/00-compile.t
xt/release/changes_has_content.t
xt/release/cpan-changes.t
xt/release/kwalitee.t
{
"abstract" : "A postmodern object system for Perl 5",
"author" : [
"Stevan Little <stevan@cpan.org>",
"Dave Rolsky <autarch@urth.org>",
"Jesse Luehrs <doy@cpan.org>",
"Shawn M Moore <sartak@cpan.org>",
"\u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch@woobling.org>",
"Karen Etheridge <ether@cpan.org>",
"Florian Ragwitz <rafl@debian.org>",
"Hans Dieter Pearcey <hdp@cpan.org>",
"Chris Prather <chris@prather.org>",
"Matt S Trout <mstrout@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.033, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : 2
},
"name" : "Moose",
"no_index" : {
"directory" : [
"author",
"benchmarks",
"doc",
"inc"
]
},
"prereqs" : {
"configure" : {
"requires" : {
"Dist::CheckConflicts" : "0.02",
"ExtUtils::MakeMaker" : "0",
"perl" : "5.008003"
},
"suggests" : {
"JSON::PP" : "2.27300"
}
},
"develop" : {
"requires" : {
"Algorithm::C3" : "0",
"Class::Load" : "0.07",
"DBM::Deep" : "1.003",
"Data::Visitor" : "0.26",
"DateTime" : "0",
"DateTime::Calendar::Mayan" : "0",
"DateTime::Format::MySQL" : "0",
"Declare::Constraints::Simple" : "0",
"Devel::PPPort" : "3.68",
"ExtUtils::MakeMaker::Dist::Zilla::Develop" : "0",
"File::Find::Rule" : "0",
"File::Spec" : "0",
"HTTP::Headers" : "0",
"IO::File" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Locale::US" : "0",
"Module::CPANTS::Analyse" : "0.92",
"Module::Refresh" : "0",
"Moo" : "0",
"MooseX::NonMoose" : "0",
"PadWalker" : "0",
"Params::Coerce" : "0",
"Regexp::Common" : "0",
"SUPER" : "1.10",
"Specio" : "0.10",
"Test::CPAN::Changes" : "0.19",
"Test::CPAN::Meta" : "0",
"Test::Deep" : "0",
"Test::EOL" : "0",
"Test::Inline" : "0",
"Test::Kwalitee" : "1.21",
"Test::LeakTrace" : "0",
"Test::Memory::Cycle" : "0",
"Test::Mojibake" : "0",
"Test::More" : "0.94",
"Test::NoTabs" : "0",
"Test::Output" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.04",
"Test::Spelling" : "0",
"Test::Warnings" : "0.016",
"Types::Standard" : "0",
"URI" : "0",
"blib" : "0"
},
"suggests" : {
"CPAN::Meta::Requirements" : "0",
"Carp" : "1.22",
"Class::Load" : "0.09",
"Class::Load::XS" : "0.01",
"Config::MVP" : "2.200011",
"Data::OptList" : "0.107",
"Devel::GlobalDestruction" : "0",
"Devel::OverloadInfo" : "0.005",
"Devel::PPPort" : "3.68",
"Devel::StackTrace" : "2.03",
"Dist::Zilla" : "5",
"Dist::Zilla::Plugin::BumpVersionAfterRelease" : "0",
"Dist::Zilla::Plugin::CheckVersionIncrement" : "0",
"Dist::Zilla::Plugin::ConfirmRelease" : "0",
"Dist::Zilla::Plugin::Conflicts" : "0.19",
"Dist::Zilla::Plugin::CopyFilesFromRelease" : "0",
"Dist::Zilla::Plugin::EnsurePrereqsInstalled" : "0.003",
"Dist::Zilla::Plugin::ExecDir" : "0",
"Dist::Zilla::Plugin::FileFinder::ByName" : "0",
"Dist::Zilla::Plugin::FileFinder::Filter" : "0",
"Dist::Zilla::Plugin::Git::Check" : "0",
"Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch" : "0",
"Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts" : "0",
"Dist::Zilla::Plugin::Git::Commit" : "0",
"Dist::Zilla::Plugin::Git::Contributors" : "0.019",
"Dist::Zilla::Plugin::Git::Describe" : "0.004",
"Dist::Zilla::Plugin::Git::GatherDir" : "0",
"Dist::Zilla::Plugin::Git::Push" : "0",
"Dist::Zilla::Plugin::Git::Remote::Check" : "0",
"Dist::Zilla::Plugin::Git::Tag" : "0",
"Dist::Zilla::Plugin::License" : "0",
"Dist::Zilla::Plugin::MakeMaker::Awesome" : "0",
"Dist::Zilla::Plugin::Manifest" : "0",
"Dist::Zilla::Plugin::MetaConfig" : "0",
"Dist::Zilla::Plugin::MetaJSON" : "0",
"Dist::Zilla::Plugin::MetaNoIndex" : "0",
"Dist::Zilla::Plugin::MetaProvides::Package" : "1.15000002",
"Dist::Zilla::Plugin::MetaResources" : "0",
"Dist::Zilla::Plugin::MetaTests" : "0",
"Dist::Zilla::Plugin::MetaYAML" : "0",
"Dist::Zilla::Plugin::ModuleIncluder" : "0.007",
"Dist::Zilla::Plugin::MojibakeTests" : "0",
"Dist::Zilla::Plugin::NextRelease" : "5.033",
"Dist::Zilla::Plugin::PPPort" : "0",
"Dist::Zilla::Plugin::PodSyntaxTests" : "0",
"Dist::Zilla::Plugin::Prereqs" : "0",
"Dist::Zilla::Plugin::Prereqs::AuthorDeps" : "0",
"Dist::Zilla::Plugin::PromptIfStale" : "0",
"Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.142180",
"Dist::Zilla::Plugin::Regenerate::AfterReleasers" : "0",
"Dist::Zilla::Plugin::RewriteVersion" : "0",
"Dist::Zilla::Plugin::Run::AfterBuild" : "0.038",
"Dist::Zilla::Plugin::RunExtraTests" : "0",
"Dist::Zilla::Plugin::Substitute" : "0",
"Dist::Zilla::Plugin::SurgicalPodWeaver" : "0.0023",
"Dist::Zilla::Plugin::Test::CPAN::Changes" : "0",
"Dist::Zilla::Plugin::Test::ChangesHasContent" : "0",
"Dist::Zilla::Plugin::Test::CheckBreaks" : "0.017",
"Dist::Zilla::Plugin::Test::Compile" : "2.037",
"Dist::Zilla::Plugin::Test::EOL" : "0.14",
"Dist::Zilla::Plugin::Test::Kwalitee" : "0",
"Dist::Zilla::Plugin::Test::NoTabs" : "0",
"Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.022",
"Dist::Zilla::Plugin::TestRelease" : "0",
"Dist::Zilla::Plugin::UploadToCPAN" : "0",
"Dist::Zilla::Plugin::UseUnsafeInc" : "0",
"Dist::Zilla::Util::AuthorDeps" : "5.021",
"Eval::Closure" : "0.04",
"ExtUtils::HasCompiler" : "0.022",
"File::Find::Rule" : "0",
"File::pushd" : "0",
"IPC::System::Simple" : "0",
"List::Util" : "1.56",
"MRO::Compat" : "0.05",
"Module::Runtime" : "0.014",
"Module::Runtime::Conflicts" : "0.002",
"Package::DeprecationManager" : "0.11",
"Package::Stash" : "0.32",
"Package::Stash::XS" : "0.24",
"Params::Util" : "1.00",
"Path::Tiny" : "0",
"Pod::Weaver::Section::AllowOverride" : "0",
"Scalar::Util" : "1.19",
"Software::License::Perl_5" : "0",
"Sub::Exporter" : "0.980",
"Sub::Util" : "1.40",
"Test::Deep" : "0",
"Test::Inline" : "0",
"Test::Inline::Extract" : "0",
"Try::Tiny" : "0.17",
"autodie" : "0",
"parent" : "0.223",
"perl" : "5.008003",
"strict" : "1.03",
"warnings" : "1.03"
}
},
"runtime" : {
"recommends" : {
"Data::OptList" : "0.110"
},
"requires" : {
"Carp" : "1.22",
"Class::Load" : "0.09",
"Class::Load::XS" : "0.01",
"Data::OptList" : "0.107",
"Devel::GlobalDestruction" : "0",
"Devel::OverloadInfo" : "0.005",
"Devel::StackTrace" : "2.03",
"Dist::CheckConflicts" : "0.02",
"Eval::Closure" : "0.04",
"List::Util" : "1.56",
"MRO::Compat" : "0.05",
"Module::Runtime" : "0.014",
"Module::Runtime::Conflicts" : "0.002",
"Package::DeprecationManager" : "0.11",
"Package::Stash" : "0.32",
"Package::Stash::XS" : "0.24",
"Params::Util" : "1.00",
"Scalar::Util" : "1.19",
"Sub::Exporter" : "0.980",
"Sub::Util" : "1.40",
"Try::Tiny" : "0.17",
"parent" : "0.223",
"perl" : "5.008003",
"strict" : "1.03",
"warnings" : "1.03"
},
"suggests" : {
"Devel::PartialDump" : "0.14"
}
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900"
},
"requires" : {
"CPAN::Meta::Check" : "0.011",
"CPAN::Meta::Requirements" : "0",
"File::Spec" : "0",
"Module::Metadata" : "0",
"Test::Fatal" : "0.001",
"Test::More" : "0.96",
"Test::Needs" : "0.002010"
}
}
},
"provides" : {
"Class::MOP" : {
"file" : "lib/Class/MOP.pm",
"version" : "2.4000"
},
"Class::MOP::Attribute" : {
"file" : "lib/Class/MOP/Attribute.pm",
"version" : "2.4000"
},
"Class::MOP::Class" : {
"file" : "lib/Class/MOP/Class.pm",
"version" : "2.4000"
},
"Class::MOP::Class::Immutable::Trait" : {
"file" : "lib/Class/MOP/Class/Immutable/Trait.pm",
"version" : "2.4000"
},
"Class::MOP::Deprecated" : {
"file" : "lib/Class/MOP/Deprecated.pm",
"version" : "2.4000"
},
"Class::MOP::Instance" : {
"file" : "lib/Class/MOP/Instance.pm",
"version" : "2.4000"
},
"Class::MOP::Method" : {
"file" : "lib/Class/MOP/Method.pm",
"version" : "2.4000"
},
"Class::MOP::Method::Accessor" : {
"file" : "lib/Class/MOP/Method/Accessor.pm",
"version" : "2.4000"
},
"Class::MOP::Method::Constructor" : {
"file" : "lib/Class/MOP/Method/Constructor.pm",
"version" : "2.4000"
},
"Class::MOP::Method::Generated" : {
"file" : "lib/Class/MOP/Method/Generated.pm",
"version" : "2.4000"
},
"Class::MOP::Method::Inlined" : {
"file" : "lib/Class/MOP/Method/Inlined.pm",
"version" : "2.4000"
},
"Class::MOP::Method::Meta" : {
"file" : "lib/Class/MOP/Method/Meta.pm",
"version" : "2.4000"
},
"Class::MOP::Method::Wrapped" : {
"file" : "lib/Class/MOP/Method/Wrapped.pm",
"version" : "2.4000"
},
"Class::MOP::MiniTrait" : {
"file" : "lib/Class/MOP/MiniTrait.pm",
"version" : "2.4000"
},
"Class::MOP::Mixin" : {
"file" : "lib/Class/MOP/Mixin.pm",
"version" : "2.4000"
},
"Class::MOP::Mixin::AttributeCore" : {
"file" : "lib/Class/MOP/Mixin/AttributeCore.pm",
"version" : "2.4000"
},
"Class::MOP::Mixin::HasAttributes" : {
"file" : "lib/Class/MOP/Mixin/HasAttributes.pm",
"version" : "2.4000"
},
"Class::MOP::Mixin::HasMethods" : {
"file" : "lib/Class/MOP/Mixin/HasMethods.pm",
"version" : "2.4000"
},
"Class::MOP::Mixin::HasOverloads" : {
"file" : "lib/Class/MOP/Mixin/HasOverloads.pm",
"version" : "2.4000"
},
"Class::MOP::Module" : {
"file" : "lib/Class/MOP/Module.pm",
"version" : "2.4000"
},
"Class::MOP::Object" : {
"file" : "lib/Class/MOP/Object.pm",
"version" : "2.4000"
},
"Class::MOP::Overload" : {
"file" : "lib/Class/MOP/Overload.pm",
"version" : "2.4000"
},
"Class::MOP::Package" : {
"file" : "lib/Class/MOP/Package.pm",
"version" : "2.4000"
},
"Moose" : {
"file" : "lib/Moose.pm",
"version" : "2.4000"
},
"Moose::Cookbook" : {
"file" : "lib/Moose/Cookbook.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::BankAccount_MethodModifiersAndSubclassing" : {
"file" : "lib/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::BinaryTree_AttributeFeatures" : {
"file" : "lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild" : {
"file" : "lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::Company_Subtypes" : {
"file" : "lib/Moose/Cookbook/Basics/Company_Subtypes.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent" : {
"file" : "lib/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::Document_AugmentAndInner" : {
"file" : "lib/Moose/Cookbook/Basics/Document_AugmentAndInner.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::Genome_OverloadingSubtypesAndCoercion" : {
"file" : "lib/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::HTTP_SubtypesAndCoercion" : {
"file" : "lib/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::Immutable" : {
"file" : "lib/Moose/Cookbook/Basics/Immutable.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::Person_BUILDARGSAndBUILD" : {
"file" : "lib/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Basics::Point_AttributesAndSubclassing" : {
"file" : "lib/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Extending::Debugging_BaseClassRole" : {
"file" : "lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Extending::ExtensionOverview" : {
"file" : "lib/Moose/Cookbook/Extending/ExtensionOverview.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Extending::Mooseish_MooseSugar" : {
"file" : "lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Legacy::Debugging_BaseClassReplacement" : {
"file" : "lib/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Legacy::Labeled_AttributeMetaclass" : {
"file" : "lib/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Legacy::Table_ClassMetaclass" : {
"file" : "lib/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Meta::GlobRef_InstanceMetaclass" : {
"file" : "lib/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Meta::Labeled_AttributeTrait" : {
"file" : "lib/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Meta::PrivateOrPublic_MethodMetaclass" : {
"file" : "lib/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Meta::Table_MetaclassTrait" : {
"file" : "lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Meta::WhyMeta" : {
"file" : "lib/Moose/Cookbook/Meta/WhyMeta.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Roles::ApplicationToInstance" : {
"file" : "lib/Moose/Cookbook/Roles/ApplicationToInstance.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Roles::Comparable_CodeReuse" : {
"file" : "lib/Moose/Cookbook/Roles/Comparable_CodeReuse.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Roles::Restartable_AdvancedComposition" : {
"file" : "lib/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Snack::Keywords" : {
"file" : "lib/Moose/Cookbook/Snack/Keywords.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Snack::Types" : {
"file" : "lib/Moose/Cookbook/Snack/Types.pod",
"version" : "2.4000"
},
"Moose::Cookbook::Style" : {
"file" : "lib/Moose/Cookbook/Style.pod",
"version" : "2.4000"
},
"Moose::Deprecated" : {
"file" : "lib/Moose/Deprecated.pm",
"version" : "2.4000"
},
"Moose::Exception" : {
"file" : "lib/Moose/Exception.pm",
"version" : "2.4000"
},
"Moose::Exception::AccessorMustReadWrite" : {
"file" : "lib/Moose/Exception/AccessorMustReadWrite.pm",
"version" : "2.4000"
},
"Moose::Exception::AddParameterizableTypeTakesParameterizableType" : {
"file" : "lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm",
"version" : "2.4000"
},
"Moose::Exception::AddRoleTakesAMooseMetaRoleInstance" : {
"file" : "lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::AddRoleToARoleTakesAMooseMetaRole" : {
"file" : "lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm",
"version" : "2.4000"
},
"Moose::Exception::ApplyTakesABlessedInstance" : {
"file" : "lib/Moose/Exception/ApplyTakesABlessedInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::AttachToClassNeedsAClassMOPClassInstanceOrASubclass" : {
"file" : "lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeConflictInRoles" : {
"file" : "lib/Moose/Exception/AttributeConflictInRoles.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeConflictInSummation" : {
"file" : "lib/Moose/Exception/AttributeConflictInSummation.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeExtensionIsNotSupportedInRoles" : {
"file" : "lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeIsRequired" : {
"file" : "lib/Moose/Exception/AttributeIsRequired.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass" : {
"file" : "lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeNamesDoNotMatch" : {
"file" : "lib/Moose/Exception/AttributeNamesDoNotMatch.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeValueIsNotAnObject" : {
"file" : "lib/Moose/Exception/AttributeValueIsNotAnObject.pm",
"version" : "2.4000"
},
"Moose::Exception::AttributeValueIsNotDefined" : {
"file" : "lib/Moose/Exception/AttributeValueIsNotDefined.pm",
"version" : "2.4000"
},
"Moose::Exception::AutoDeRefNeedsArrayRefOrHashRef" : {
"file" : "lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm",
"version" : "2.4000"
},
"Moose::Exception::BadOptionFormat" : {
"file" : "lib/Moose/Exception/BadOptionFormat.pm",
"version" : "2.4000"
},
"Moose::Exception::BothBuilderAndDefaultAreNotAllowed" : {
"file" : "lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm",
"version" : "2.4000"
},
"Moose::Exception::BuilderDoesNotExist" : {
"file" : "lib/Moose/Exception/BuilderDoesNotExist.pm",
"version" : "2.4000"
},
"Moose::Exception::BuilderMethodNotSupportedForAttribute" : {
"file" : "lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm",
"version" : "2.4000"
},
"Moose::Exception::BuilderMethodNotSupportedForInlineAttribute" : {
"file" : "lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm",
"version" : "2.4000"
},
"Moose::Exception::BuilderMustBeAMethodName" : {
"file" : "lib/Moose/Exception/BuilderMustBeAMethodName.pm",
"version" : "2.4000"
},
"Moose::Exception::CallingMethodOnAnImmutableInstance" : {
"file" : "lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::CallingReadOnlyMethodOnAnImmutableInstance" : {
"file" : "lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::CanExtendOnlyClasses" : {
"file" : "lib/Moose/Exception/CanExtendOnlyClasses.pm",
"version" : "2.4000"
},
"Moose::Exception::CanOnlyConsumeRole" : {
"file" : "lib/Moose/Exception/CanOnlyConsumeRole.pm",
"version" : "2.4000"
},
"Moose::Exception::CanOnlyWrapBlessedCode" : {
"file" : "lib/Moose/Exception/CanOnlyWrapBlessedCode.pm",
"version" : "2.4000"
},
"Moose::Exception::CanReblessOnlyIntoASubclass" : {
"file" : "lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm",
"version" : "2.4000"
},
"Moose::Exception::CanReblessOnlyIntoASuperclass" : {
"file" : "lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAddAdditionalTypeCoercionsToUnion" : {
"file" : "lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAddAsAnAttributeToARole" : {
"file" : "lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotApplyBaseClassRolesToRole" : {
"file" : "lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAssignValueToReadOnlyAccessor" : {
"file" : "lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAugmentIfLocalMethodPresent" : {
"file" : "lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAugmentNoSuperMethod" : {
"file" : "lib/Moose/Exception/CannotAugmentNoSuperMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAutoDerefWithoutIsa" : {
"file" : "lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotAutoDereferenceTypeConstraint" : {
"file" : "lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCalculateNativeType" : {
"file" : "lib/Moose/Exception/CannotCalculateNativeType.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCallAnAbstractBaseMethod" : {
"file" : "lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCallAnAbstractMethod" : {
"file" : "lib/Moose/Exception/CannotCallAnAbstractMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCoerceAWeakRef" : {
"file" : "lib/Moose/Exception/CannotCoerceAWeakRef.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCoerceAttributeWhichHasNoCoercion" : {
"file" : "lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCreateHigherOrderTypeWithoutATypeParameter" : {
"file" : "lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresent" : {
"file" : "lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresentInClass" : {
"file" : "lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotDelegateLocalMethodIsPresent" : {
"file" : "lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotDelegateWithoutIsa" : {
"file" : "lib/Moose/Exception/CannotDelegateWithoutIsa.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotFindDelegateMetaclass" : {
"file" : "lib/Moose/Exception/CannotFindDelegateMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotFindType" : {
"file" : "lib/Moose/Exception/CannotFindType.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotFindTypeGivenToMatchOnType" : {
"file" : "lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotFixMetaclassCompatibility" : {
"file" : "lib/Moose/Exception/CannotFixMetaclassCompatibility.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotGenerateInlineConstraint" : {
"file" : "lib/Moose/Exception/CannotGenerateInlineConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotInitializeMooseMetaRoleComposite" : {
"file" : "lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotInlineTypeConstraintCheck" : {
"file" : "lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotLocatePackageInINC" : {
"file" : "lib/Moose/Exception/CannotLocatePackageInINC.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotMakeMetaclassCompatible" : {
"file" : "lib/Moose/Exception/CannotMakeMetaclassCompatible.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotOverrideALocalMethod" : {
"file" : "lib/Moose/Exception/CannotOverrideALocalMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotOverrideBodyOfMetaMethods" : {
"file" : "lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotOverrideLocalMethodIsPresent" : {
"file" : "lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotOverrideNoSuperMethod" : {
"file" : "lib/Moose/Exception/CannotOverrideNoSuperMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotRegisterUnnamedTypeConstraint" : {
"file" : "lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::CannotUseLazyBuildAndDefaultSimultaneously" : {
"file" : "lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm",
"version" : "2.4000"
},
"Moose::Exception::CircularReferenceInAlso" : {
"file" : "lib/Moose/Exception/CircularReferenceInAlso.pm",
"version" : "2.4000"
},
"Moose::Exception::ClassDoesNotHaveInitMeta" : {
"file" : "lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm",
"version" : "2.4000"
},
"Moose::Exception::ClassDoesTheExcludedRole" : {
"file" : "lib/Moose/Exception/ClassDoesTheExcludedRole.pm",
"version" : "2.4000"
},
"Moose::Exception::ClassNamesDoNotMatch" : {
"file" : "lib/Moose/Exception/ClassNamesDoNotMatch.pm",
"version" : "2.4000"
},
"Moose::Exception::CloneObjectExpectsAnInstanceOfMetaclass" : {
"file" : "lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::CodeBlockMustBeACodeRef" : {
"file" : "lib/Moose/Exception/CodeBlockMustBeACodeRef.pm",
"version" : "2.4000"
},
"Moose::Exception::CoercingWithoutCoercions" : {
"file" : "lib/Moose/Exception/CoercingWithoutCoercions.pm",
"version" : "2.4000"
},
"Moose::Exception::CoercionAlreadyExists" : {
"file" : "lib/Moose/Exception/CoercionAlreadyExists.pm",
"version" : "2.4000"
},
"Moose::Exception::CoercionNeedsTypeConstraint" : {
"file" : "lib/Moose/Exception/CoercionNeedsTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::ConflictDetectedInCheckRoleExclusions" : {
"file" : "lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm",
"version" : "2.4000"
},
"Moose::Exception::ConflictDetectedInCheckRoleExclusionsInToClass" : {
"file" : "lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm",
"version" : "2.4000"
},
"Moose::Exception::ConstructClassInstanceTakesPackageName" : {
"file" : "lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotCreateMethod" : {
"file" : "lib/Moose/Exception/CouldNotCreateMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotCreateWriter" : {
"file" : "lib/Moose/Exception/CouldNotCreateWriter.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotEvalConstructor" : {
"file" : "lib/Moose/Exception/CouldNotEvalConstructor.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotEvalDestructor" : {
"file" : "lib/Moose/Exception/CouldNotEvalDestructor.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom" : {
"file" : "lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotGenerateInlineAttributeMethod" : {
"file" : "lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotLocateTypeConstraintForUnion" : {
"file" : "lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm",
"version" : "2.4000"
},
"Moose::Exception::CouldNotParseType" : {
"file" : "lib/Moose/Exception/CouldNotParseType.pm",
"version" : "2.4000"
},
"Moose::Exception::CreateMOPClassTakesArrayRefOfAttributes" : {
"file" : "lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm",
"version" : "2.4000"
},
"Moose::Exception::CreateMOPClassTakesArrayRefOfSuperclasses" : {
"file" : "lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm",
"version" : "2.4000"
},
"Moose::Exception::CreateMOPClassTakesHashRefOfMethods" : {
"file" : "lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm",
"version" : "2.4000"
},
"Moose::Exception::CreateTakesArrayRefOfRoles" : {
"file" : "lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm",
"version" : "2.4000"
},
"Moose::Exception::CreateTakesHashRefOfAttributes" : {
"file" : "lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm",
"version" : "2.4000"
},
"Moose::Exception::CreateTakesHashRefOfMethods" : {
"file" : "lib/Moose/Exception/CreateTakesHashRefOfMethods.pm",
"version" : "2.4000"
},
"Moose::Exception::DefaultToMatchOnTypeMustBeCodeRef" : {
"file" : "lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm",
"version" : "2.4000"
},
"Moose::Exception::DelegationToAClassWhichIsNotLoaded" : {
"file" : "lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm",
"version" : "2.4000"
},
"Moose::Exception::DelegationToARoleWhichIsNotLoaded" : {
"file" : "lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm",
"version" : "2.4000"
},
"Moose::Exception::DelegationToATypeWhichIsNotAClass" : {
"file" : "lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm",
"version" : "2.4000"
},
"Moose::Exception::DoesRequiresRoleName" : {
"file" : "lib/Moose/Exception/DoesRequiresRoleName.pm",
"version" : "2.4000"
},
"Moose::Exception::EnumCalledWithAnArrayRefAndAdditionalArgs" : {
"file" : "lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm",
"version" : "2.4000"
},
"Moose::Exception::EnumValuesMustBeString" : {
"file" : "lib/Moose/Exception/EnumValuesMustBeString.pm",
"version" : "2.4000"
},
"Moose::Exception::ExtendsMissingArgs" : {
"file" : "lib/Moose/Exception/ExtendsMissingArgs.pm",
"version" : "2.4000"
},
"Moose::Exception::HandlesMustBeAHashRef" : {
"file" : "lib/Moose/Exception/HandlesMustBeAHashRef.pm",
"version" : "2.4000"
},
"Moose::Exception::IllegalInheritedOptions" : {
"file" : "lib/Moose/Exception/IllegalInheritedOptions.pm",
"version" : "2.4000"
},
"Moose::Exception::IllegalMethodTypeToAddMethodModifier" : {
"file" : "lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm",
"version" : "2.4000"
},
"Moose::Exception::IncompatibleMetaclassOfSuperclass" : {
"file" : "lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm",
"version" : "2.4000"
},
"Moose::Exception::InitMetaRequiresClass" : {
"file" : "lib/Moose/Exception/InitMetaRequiresClass.pm",
"version" : "2.4000"
},
"Moose::Exception::InitializeTakesUnBlessedPackageName" : {
"file" : "lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm",
"version" : "2.4000"
},
"Moose::Exception::InstanceBlessedIntoWrongClass" : {
"file" : "lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm",
"version" : "2.4000"
},
"Moose::Exception::InstanceMustBeABlessedReference" : {
"file" : "lib/Moose/Exception/InstanceMustBeABlessedReference.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidArgPassedToMooseUtilMetaRole" : {
"file" : "lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidArgumentToMethod" : {
"file" : "lib/Moose/Exception/InvalidArgumentToMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidArgumentsToTraitAliases" : {
"file" : "lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidBaseTypeGivenToCreateParameterizedTypeConstraint" : {
"file" : "lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidHandleValue" : {
"file" : "lib/Moose/Exception/InvalidHandleValue.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidHasProvidedInARole" : {
"file" : "lib/Moose/Exception/InvalidHasProvidedInARole.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidNameForType" : {
"file" : "lib/Moose/Exception/InvalidNameForType.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidOverloadOperator" : {
"file" : "lib/Moose/Exception/InvalidOverloadOperator.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidRoleApplication" : {
"file" : "lib/Moose/Exception/InvalidRoleApplication.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidTypeConstraint" : {
"file" : "lib/Moose/Exception/InvalidTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidTypeGivenToCreateParameterizedTypeConstraint" : {
"file" : "lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::InvalidValueForIs" : {
"file" : "lib/Moose/Exception/InvalidValueForIs.pm",
"version" : "2.4000"
},
"Moose::Exception::IsaDoesNotDoTheRole" : {
"file" : "lib/Moose/Exception/IsaDoesNotDoTheRole.pm",
"version" : "2.4000"
},
"Moose::Exception::IsaLacksDoesMethod" : {
"file" : "lib/Moose/Exception/IsaLacksDoesMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::LazyAttributeNeedsADefault" : {
"file" : "lib/Moose/Exception/LazyAttributeNeedsADefault.pm",
"version" : "2.4000"
},
"Moose::Exception::Legacy" : {
"file" : "lib/Moose/Exception/Legacy.pm",
"version" : "2.4000"
},
"Moose::Exception::MOPAttributeNewNeedsAttributeName" : {
"file" : "lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm",
"version" : "2.4000"
},
"Moose::Exception::MatchActionMustBeACodeRef" : {
"file" : "lib/Moose/Exception/MatchActionMustBeACodeRef.pm",
"version" : "2.4000"
},
"Moose::Exception::MessageParameterMustBeCodeRef" : {
"file" : "lib/Moose/Exception/MessageParameterMustBeCodeRef.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassIsAClassNotASubclassOfGivenMetaclass" : {
"file" : "lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassIsARoleNotASubclassOfGivenMetaclass" : {
"file" : "lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassIsNotASubclassOfGivenMetaclass" : {
"file" : "lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassMustBeASubclassOfMooseMetaClass" : {
"file" : "lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassMustBeASubclassOfMooseMetaRole" : {
"file" : "lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassMustBeDerivedFromClassMOPClass" : {
"file" : "lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassNotLoaded" : {
"file" : "lib/Moose/Exception/MetaclassNotLoaded.pm",
"version" : "2.4000"
},
"Moose::Exception::MetaclassTypeIncompatible" : {
"file" : "lib/Moose/Exception/MetaclassTypeIncompatible.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodExpectedAMetaclassObject" : {
"file" : "lib/Moose/Exception/MethodExpectedAMetaclassObject.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodExpectsFewerArgs" : {
"file" : "lib/Moose/Exception/MethodExpectsFewerArgs.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodExpectsMoreArgs" : {
"file" : "lib/Moose/Exception/MethodExpectsMoreArgs.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodModifierNeedsMethodName" : {
"file" : "lib/Moose/Exception/MethodModifierNeedsMethodName.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodNameConflictInRoles" : {
"file" : "lib/Moose/Exception/MethodNameConflictInRoles.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodNameNotFoundInInheritanceHierarchy" : {
"file" : "lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm",
"version" : "2.4000"
},
"Moose::Exception::MethodNameNotGiven" : {
"file" : "lib/Moose/Exception/MethodNameNotGiven.pm",
"version" : "2.4000"
},
"Moose::Exception::MustDefineAMethodName" : {
"file" : "lib/Moose/Exception/MustDefineAMethodName.pm",
"version" : "2.4000"
},
"Moose::Exception::MustDefineAnAttributeName" : {
"file" : "lib/Moose/Exception/MustDefineAnAttributeName.pm",
"version" : "2.4000"
},
"Moose::Exception::MustDefineAnOverloadOperator" : {
"file" : "lib/Moose/Exception/MustDefineAnOverloadOperator.pm",
"version" : "2.4000"
},
"Moose::Exception::MustHaveAtLeastOneValueToEnumerate" : {
"file" : "lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm",
"version" : "2.4000"
},
"Moose::Exception::MustPassAHashOfOptions" : {
"file" : "lib/Moose/Exception/MustPassAHashOfOptions.pm",
"version" : "2.4000"
},
"Moose::Exception::MustPassAMooseMetaRoleInstanceOrSubclass" : {
"file" : "lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm",
"version" : "2.4000"
},
"Moose::Exception::MustPassAPackageNameOrAnExistingClassMOPPackageInstance" : {
"file" : "lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::MustPassEvenNumberOfArguments" : {
"file" : "lib/Moose/Exception/MustPassEvenNumberOfArguments.pm",
"version" : "2.4000"
},
"Moose::Exception::MustPassEvenNumberOfAttributeOptions" : {
"file" : "lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm",
"version" : "2.4000"
},
"Moose::Exception::MustProvideANameForTheAttribute" : {
"file" : "lib/Moose/Exception/MustProvideANameForTheAttribute.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSpecifyAtleastOneMethod" : {
"file" : "lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSpecifyAtleastOneRole" : {
"file" : "lib/Moose/Exception/MustSpecifyAtleastOneRole.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSpecifyAtleastOneRoleToApplicant" : {
"file" : "lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyAClassMOPAttributeInstance" : {
"file" : "lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyADelegateToMethod" : {
"file" : "lib/Moose/Exception/MustSupplyADelegateToMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyAMetaclass" : {
"file" : "lib/Moose/Exception/MustSupplyAMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyAMooseMetaAttributeInstance" : {
"file" : "lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyAnAccessorTypeToConstructWith" : {
"file" : "lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyAnAttributeToConstructWith" : {
"file" : "lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyArrayRefAsCurriedArguments" : {
"file" : "lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm",
"version" : "2.4000"
},
"Moose::Exception::MustSupplyPackageNameAndName" : {
"file" : "lib/Moose/Exception/MustSupplyPackageNameAndName.pm",
"version" : "2.4000"
},
"Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion" : {
"file" : "lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm",
"version" : "2.4000"
},
"Moose::Exception::NeitherAttributeNorAttributeNameIsGiven" : {
"file" : "lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm",
"version" : "2.4000"
},
"Moose::Exception::NeitherClassNorClassNameIsGiven" : {
"file" : "lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm",
"version" : "2.4000"
},
"Moose::Exception::NeitherRoleNorRoleNameIsGiven" : {
"file" : "lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm",
"version" : "2.4000"
},
"Moose::Exception::NeitherTypeNorTypeNameIsGiven" : {
"file" : "lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm",
"version" : "2.4000"
},
"Moose::Exception::NoAttributeFoundInSuperClass" : {
"file" : "lib/Moose/Exception/NoAttributeFoundInSuperClass.pm",
"version" : "2.4000"
},
"Moose::Exception::NoBodyToInitializeInAnAbstractBaseClass" : {
"file" : "lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm",
"version" : "2.4000"
},
"Moose::Exception::NoCasesMatched" : {
"file" : "lib/Moose/Exception/NoCasesMatched.pm",
"version" : "2.4000"
},
"Moose::Exception::NoConstraintCheckForTypeConstraint" : {
"file" : "lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::NoDestructorClassSpecified" : {
"file" : "lib/Moose/Exception/NoDestructorClassSpecified.pm",
"version" : "2.4000"
},
"Moose::Exception::NoImmutableTraitSpecifiedForClass" : {
"file" : "lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm",
"version" : "2.4000"
},
"Moose::Exception::NoParentGivenToSubtype" : {
"file" : "lib/Moose/Exception/NoParentGivenToSubtype.pm",
"version" : "2.4000"
},
"Moose::Exception::OnlyInstancesCanBeCloned" : {
"file" : "lib/Moose/Exception/OnlyInstancesCanBeCloned.pm",
"version" : "2.4000"
},
"Moose::Exception::OperatorIsRequired" : {
"file" : "lib/Moose/Exception/OperatorIsRequired.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadConflictInSummation" : {
"file" : "lib/Moose/Exception/OverloadConflictInSummation.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadRequiresAMetaClass" : {
"file" : "lib/Moose/Exception/OverloadRequiresAMetaClass.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadRequiresAMetaMethod" : {
"file" : "lib/Moose/Exception/OverloadRequiresAMetaMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadRequiresAMetaOverload" : {
"file" : "lib/Moose/Exception/OverloadRequiresAMetaOverload.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadRequiresAMethodNameOrCoderef" : {
"file" : "lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadRequiresAnOperator" : {
"file" : "lib/Moose/Exception/OverloadRequiresAnOperator.pm",
"version" : "2.4000"
},
"Moose::Exception::OverloadRequiresNamesForCoderef" : {
"file" : "lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm",
"version" : "2.4000"
},
"Moose::Exception::OverrideConflictInComposition" : {
"file" : "lib/Moose/Exception/OverrideConflictInComposition.pm",
"version" : "2.4000"
},
"Moose::Exception::OverrideConflictInSummation" : {
"file" : "lib/Moose/Exception/OverrideConflictInSummation.pm",
"version" : "2.4000"
},
"Moose::Exception::PackageDoesNotUseMooseExporter" : {
"file" : "lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm",
"version" : "2.4000"
},
"Moose::Exception::PackageNameAndNameParamsNotGivenToWrap" : {
"file" : "lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm",
"version" : "2.4000"
},
"Moose::Exception::PackagesAndModulesAreNotCachable" : {
"file" : "lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm",
"version" : "2.4000"
},
"Moose::Exception::ParameterIsNotSubtypeOfParent" : {
"file" : "lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm",
"version" : "2.4000"
},
"Moose::Exception::ReferencesAreNotAllowedAsDefault" : {
"file" : "lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm",
"version" : "2.4000"
},
"Moose::Exception::RequiredAttributeLacksInitialization" : {
"file" : "lib/Moose/Exception/RequiredAttributeLacksInitialization.pm",
"version" : "2.4000"
},
"Moose::Exception::RequiredAttributeNeedsADefault" : {
"file" : "lib/Moose/Exception/RequiredAttributeNeedsADefault.pm",
"version" : "2.4000"
},
"Moose::Exception::RequiredMethodsImportedByClass" : {
"file" : "lib/Moose/Exception/RequiredMethodsImportedByClass.pm",
"version" : "2.4000"
},
"Moose::Exception::RequiredMethodsNotImplementedByClass" : {
"file" : "lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::Attribute" : {
"file" : "lib/Moose/Exception/Role/Attribute.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::AttributeName" : {
"file" : "lib/Moose/Exception/Role/AttributeName.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::Class" : {
"file" : "lib/Moose/Exception/Role/Class.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::EitherAttributeOrAttributeName" : {
"file" : "lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::Instance" : {
"file" : "lib/Moose/Exception/Role/Instance.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::InstanceClass" : {
"file" : "lib/Moose/Exception/Role/InstanceClass.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::InvalidAttributeOptions" : {
"file" : "lib/Moose/Exception/Role/InvalidAttributeOptions.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::Method" : {
"file" : "lib/Moose/Exception/Role/Method.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::ParamsHash" : {
"file" : "lib/Moose/Exception/Role/ParamsHash.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::Role" : {
"file" : "lib/Moose/Exception/Role/Role.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::RoleForCreate" : {
"file" : "lib/Moose/Exception/Role/RoleForCreate.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::RoleForCreateMOPClass" : {
"file" : "lib/Moose/Exception/Role/RoleForCreateMOPClass.pm",
"version" : "2.4000"
},
"Moose::Exception::Role::TypeConstraint" : {
"file" : "lib/Moose/Exception/Role/TypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::RoleDoesTheExcludedRole" : {
"file" : "lib/Moose/Exception/RoleDoesTheExcludedRole.pm",
"version" : "2.4000"
},
"Moose::Exception::RoleExclusionConflict" : {
"file" : "lib/Moose/Exception/RoleExclusionConflict.pm",
"version" : "2.4000"
},
"Moose::Exception::RoleNameRequired" : {
"file" : "lib/Moose/Exception/RoleNameRequired.pm",
"version" : "2.4000"
},
"Moose::Exception::RoleNameRequiredForMooseMetaRole" : {
"file" : "lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm",
"version" : "2.4000"
},
"Moose::Exception::RolesDoNotSupportAugment" : {
"file" : "lib/Moose/Exception/RolesDoNotSupportAugment.pm",
"version" : "2.4000"
},
"Moose::Exception::RolesDoNotSupportExtends" : {
"file" : "lib/Moose/Exception/RolesDoNotSupportExtends.pm",
"version" : "2.4000"
},
"Moose::Exception::RolesDoNotSupportInner" : {
"file" : "lib/Moose/Exception/RolesDoNotSupportInner.pm",
"version" : "2.4000"
},
"Moose::Exception::RolesDoNotSupportRegexReferencesForMethodModifiers" : {
"file" : "lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm",
"version" : "2.4000"
},
"Moose::Exception::RolesInCreateTakesAnArrayRef" : {
"file" : "lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm",
"version" : "2.4000"
},
"Moose::Exception::RolesListMustBeInstancesOfMooseMetaRole" : {
"file" : "lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm",
"version" : "2.4000"
},
"Moose::Exception::SingleParamsToNewMustBeHashRef" : {
"file" : "lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm",
"version" : "2.4000"
},
"Moose::Exception::TriggerMustBeACodeRef" : {
"file" : "lib/Moose/Exception/TriggerMustBeACodeRef.pm",
"version" : "2.4000"
},
"Moose::Exception::TypeConstraintCannotBeUsedForAParameterizableType" : {
"file" : "lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm",
"version" : "2.4000"
},
"Moose::Exception::TypeConstraintIsAlreadyCreated" : {
"file" : "lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm",
"version" : "2.4000"
},
"Moose::Exception::TypeParameterMustBeMooseMetaType" : {
"file" : "lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm",
"version" : "2.4000"
},
"Moose::Exception::UnableToCanonicalizeHandles" : {
"file" : "lib/Moose/Exception/UnableToCanonicalizeHandles.pm",
"version" : "2.4000"
},
"Moose::Exception::UnableToCanonicalizeNonRolePackage" : {
"file" : "lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm",
"version" : "2.4000"
},
"Moose::Exception::UnableToRecognizeDelegateMetaclass" : {
"file" : "lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm",
"version" : "2.4000"
},
"Moose::Exception::UndefinedHashKeysPassedToMethod" : {
"file" : "lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm",
"version" : "2.4000"
},
"Moose::Exception::UnionCalledWithAnArrayRefAndAdditionalArgs" : {
"file" : "lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm",
"version" : "2.4000"
},
"Moose::Exception::UnionTakesAtleastTwoTypeNames" : {
"file" : "lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm",
"version" : "2.4000"
},
"Moose::Exception::ValidationFailedForInlineTypeConstraint" : {
"file" : "lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::ValidationFailedForTypeConstraint" : {
"file" : "lib/Moose/Exception/ValidationFailedForTypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Exception::WrapTakesACodeRefToBless" : {
"file" : "lib/Moose/Exception/WrapTakesACodeRefToBless.pm",
"version" : "2.4000"
},
"Moose::Exception::WrongTypeConstraintGiven" : {
"file" : "lib/Moose/Exception/WrongTypeConstraintGiven.pm",
"version" : "2.4000"
},
"Moose::Exporter" : {
"file" : "lib/Moose/Exporter.pm",
"version" : "2.4000"
},
"Moose::Intro" : {
"file" : "lib/Moose/Intro.pod",
"version" : "2.4000"
},
"Moose::Manual" : {
"file" : "lib/Moose/Manual.pod",
"version" : "2.4000"
},
"Moose::Manual::Attributes" : {
"file" : "lib/Moose/Manual/Attributes.pod",
"version" : "2.4000"
},
"Moose::Manual::BestPractices" : {
"file" : "lib/Moose/Manual/BestPractices.pod",
"version" : "2.4000"
},
"Moose::Manual::Classes" : {
"file" : "lib/Moose/Manual/Classes.pod",
"version" : "2.4000"
},
"Moose::Manual::Concepts" : {
"file" : "lib/Moose/Manual/Concepts.pod",
"version" : "2.4000"
},
"Moose::Manual::Construction" : {
"file" : "lib/Moose/Manual/Construction.pod",
"version" : "2.4000"
},
"Moose::Manual::Contributing" : {
"file" : "lib/Moose/Manual/Contributing.pod",
"version" : "2.4000"
},
"Moose::Manual::Delegation" : {
"file" : "lib/Moose/Manual/Delegation.pod",
"version" : "2.4000"
},
"Moose::Manual::Delta" : {
"file" : "lib/Moose/Manual/Delta.pod",
"version" : "2.4000"
},
"Moose::Manual::Exceptions" : {
"file" : "lib/Moose/Manual/Exceptions.pod",
"version" : "2.4000"
},
"Moose::Manual::Exceptions::Manifest" : {
"file" : "lib/Moose/Manual/Exceptions/Manifest.pod",
"version" : "2.4000"
},
"Moose::Manual::FAQ" : {
"file" : "lib/Moose/Manual/FAQ.pod",
"version" : "2.4000"
},
"Moose::Manual::MOP" : {
"file" : "lib/Moose/Manual/MOP.pod",
"version" : "2.4000"
},
"Moose::Manual::MethodModifiers" : {
"file" : "lib/Moose/Manual/MethodModifiers.pod",
"version" : "2.4000"
},
"Moose::Manual::MooseX" : {
"file" : "lib/Moose/Manual/MooseX.pod",
"version" : "2.4000"
},
"Moose::Manual::Resources" : {
"file" : "lib/Moose/Manual/Resources.pod",
"version" : "2.4000"
},
"Moose::Manual::Roles" : {
"file" : "lib/Moose/Manual/Roles.pod",
"version" : "2.4000"
},
"Moose::Manual::Support" : {
"file" : "lib/Moose/Manual/Support.pod",
"version" : "2.4000"
},
"Moose::Manual::Types" : {
"file" : "lib/Moose/Manual/Types.pod",
"version" : "2.4000"
},
"Moose::Manual::Unsweetened" : {
"file" : "lib/Moose/Manual/Unsweetened.pod",
"version" : "2.4000"
},
"Moose::Meta::Attribute" : {
"file" : "lib/Moose/Meta/Attribute.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native" : {
"file" : "lib/Moose/Meta/Attribute/Native.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::Array" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/Array.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::Bool" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/Bool.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::Code" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/Code.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::Counter" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/Counter.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::Hash" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/Hash.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::Number" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/Number.pm",
"version" : "2.4000"
},
"Moose::Meta::Attribute::Native::Trait::String" : {
"file" : "lib/Moose/Meta/Attribute/Native/Trait/String.pm",
"version" : "2.4000"
},
"Moose::Meta::Class" : {
"file" : "lib/Moose/Meta/Class.pm",
"version" : "2.4000"
},
"Moose::Meta::Class::Immutable::Trait" : {
"file" : "lib/Moose/Meta/Class/Immutable/Trait.pm",
"version" : "2.4000"
},
"Moose::Meta::Instance" : {
"file" : "lib/Moose/Meta/Instance.pm",
"version" : "2.4000"
},
"Moose::Meta::Method" : {
"file" : "lib/Moose/Meta/Method.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor" : {
"file" : "lib/Moose/Meta/Method/Accessor.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::Writer" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::accessor" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::clear" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::count" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/count.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::delete" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::elements" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::first" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/first.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::first_index" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::get" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/get.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::grep" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::insert" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::is_empty" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::join" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/join.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::map" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/map.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::natatime" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::pop" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::push" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/push.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::reduce" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::set" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/set.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::shallow_clone" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::shift" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::shuffle" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::sort" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::sort_in_place" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::splice" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::uniq" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Array::unshift" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Bool::not" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Bool::set" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Bool::toggle" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Bool::unset" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Code::execute" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Code::execute_method" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Collection" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Collection.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Counter::Writer" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Counter::dec" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Counter::inc" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Counter::reset" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Counter::set" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::Writer" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::accessor" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::clear" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::count" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::defined" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::delete" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::elements" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::exists" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::get" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::is_empty" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::keys" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::kv" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::set" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::shallow_clone" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Hash::values" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::abs" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::add" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/add.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::div" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/div.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::mod" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::mul" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::set" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/set.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Number::sub" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Reader" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Reader.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::append" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/append.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::chomp" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::chop" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/chop.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::clear" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/clear.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::inc" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/inc.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::length" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/length.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::match" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/match.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::prepend" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::replace" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/replace.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::String::substr" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/String/substr.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Accessor::Native::Writer" : {
"file" : "lib/Moose/Meta/Method/Accessor/Native/Writer.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Augmented" : {
"file" : "lib/Moose/Meta/Method/Augmented.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Constructor" : {
"file" : "lib/Moose/Meta/Method/Constructor.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Delegation" : {
"file" : "lib/Moose/Meta/Method/Delegation.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Destructor" : {
"file" : "lib/Moose/Meta/Method/Destructor.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Meta" : {
"file" : "lib/Moose/Meta/Method/Meta.pm",
"version" : "2.4000"
},
"Moose::Meta::Method::Overridden" : {
"file" : "lib/Moose/Meta/Method/Overridden.pm",
"version" : "2.4000"
},
"Moose::Meta::Mixin::AttributeCore" : {
"file" : "lib/Moose/Meta/Mixin/AttributeCore.pm",
"version" : "2.4000"
},
"Moose::Meta::Object::Trait" : {
"file" : "lib/Moose/Meta/Object/Trait.pm",
"version" : "2.4000"
},
"Moose::Meta::Role" : {
"file" : "lib/Moose/Meta/Role.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Application" : {
"file" : "lib/Moose/Meta/Role/Application.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Application::RoleSummation" : {
"file" : "lib/Moose/Meta/Role/Application/RoleSummation.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Application::ToClass" : {
"file" : "lib/Moose/Meta/Role/Application/ToClass.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Application::ToInstance" : {
"file" : "lib/Moose/Meta/Role/Application/ToInstance.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Application::ToRole" : {
"file" : "lib/Moose/Meta/Role/Application/ToRole.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Attribute" : {
"file" : "lib/Moose/Meta/Role/Attribute.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Composite" : {
"file" : "lib/Moose/Meta/Role/Composite.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Method" : {
"file" : "lib/Moose/Meta/Role/Method.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Method::Conflicting" : {
"file" : "lib/Moose/Meta/Role/Method/Conflicting.pm",
"version" : "2.4000"
},
"Moose::Meta::Role::Method::Required" : {
"file" : "lib/Moose/Meta/Role/Method/Required.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeCoercion" : {
"file" : "lib/Moose/Meta/TypeCoercion.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeCoercion::Union" : {
"file" : "lib/Moose/Meta/TypeCoercion/Union.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint" : {
"file" : "lib/Moose/Meta/TypeConstraint.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Class" : {
"file" : "lib/Moose/Meta/TypeConstraint/Class.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::DuckType" : {
"file" : "lib/Moose/Meta/TypeConstraint/DuckType.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Enum" : {
"file" : "lib/Moose/Meta/TypeConstraint/Enum.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Parameterizable" : {
"file" : "lib/Moose/Meta/TypeConstraint/Parameterizable.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Parameterized" : {
"file" : "lib/Moose/Meta/TypeConstraint/Parameterized.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Registry" : {
"file" : "lib/Moose/Meta/TypeConstraint/Registry.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Role" : {
"file" : "lib/Moose/Meta/TypeConstraint/Role.pm",
"version" : "2.4000"
},
"Moose::Meta::TypeConstraint::Union" : {
"file" : "lib/Moose/Meta/TypeConstraint/Union.pm",
"version" : "2.4000"
},
"Moose::Object" : {
"file" : "lib/Moose/Object.pm",
"version" : "2.4000"
},
"Moose::Role" : {
"file" : "lib/Moose/Role.pm",
"version" : "2.4000"
},
"Moose::Spec::Role" : {
"file" : "lib/Moose/Spec/Role.pod",
"version" : "2.4000"
},
"Moose::Unsweetened" : {
"file" : "lib/Moose/Unsweetened.pod",
"version" : "2.4000"
},
"Moose::Util" : {
"file" : "lib/Moose/Util.pm",
"version" : "2.4000"
},
"Moose::Util::MetaRole" : {
"file" : "lib/Moose/Util/MetaRole.pm",
"version" : "2.4000"
},
"Moose::Util::TypeConstraints" : {
"file" : "lib/Moose/Util/TypeConstraints.pm",
"version" : "2.4000"
},
"Moose::Util::TypeConstraints::Builtins" : {
"file" : "lib/Moose/Util/TypeConstraints/Builtins.pm",
"version" : "2.4000"
},
"Test::Moose" : {
"file" : "lib/Test/Moose.pm",
"version" : "2.4000"
},
"metaclass" : {
"file" : "lib/metaclass.pm",
"version" : "2.4000"
},
"oose" : {
"file" : "lib/oose.pm",
"version" : "2.4000"
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"mailto" : "bug-Moose@rt.cpan.org",
"web" : "https://rt.cpan.org/Dist/Display.html?Name=Moose"
},
"homepage" : "http://moose.perl.org/",
"repository" : {
"type" : "git",
"url" : "git://github.com/moose/Moose.git",
"web" : "https://github.com/moose/Moose"
},
"x_IRC" : "irc://irc.perl.org/#moose",
"x_MailingList" : "http://lists.perl.org/list/moose.html"
},
"version" : "2.4000",
"x_Dist_Zilla" : {
"perl" : {
"version" : "5.042000"
},
"plugins" : [
{
"class" : "Dist::Zilla::Plugin::EnsurePrereqsInstalled",
"name" : "EnsurePrereqsInstalled",
"version" : "0.009"
},
{
"class" : "Dist::Zilla::Plugin::Git::GatherDir",
"config" : {
"Dist::Zilla::Plugin::GatherDir" : {
"exclude_filename" : [
"CONTRIBUTING.pod",
"LICENSE",
"Makefile.PL",
"ppport.h"
],
"exclude_match" : [
"^t/recipes/(?!basics_genome_overloadingsubtypesandcoercion)"
],
"include_dotfiles" : 0,
"prefix" : "",
"prune_directory" : [],
"root" : "."
},
"Dist::Zilla::Plugin::Git::GatherDir" : {
"include_untracked" : 0
}
},
"name" : "Git::GatherDir",
"version" : "2.051"
},
{
"class" : "Dist::Zilla::Plugin::PPPort",
"name" : "PPPort",
"version" : "0.010"
},
{
"class" : "Dist::Zilla::Plugin::MetaYAML",
"name" : "MetaYAML",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::MetaJSON",
"name" : "MetaJSON",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::License",
"name" : "License",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::ExecDir",
"name" : "ExecDir",
"version" : "6.033"
},
{
"class" : "inc::MakeMaker",
"config" : {
"Dist::Zilla::Plugin::MakeMaker" : {
"make_path" : "make",
"version" : "6.033"
},
"Dist::Zilla::Plugin::MakeMaker::Awesome" : {
"version" : "0.49"
},
"Dist::Zilla::Role::TestRunner" : {
"default_jobs" : "9",
"version" : "6.033"
}
},
"name" : "=inc::MakeMaker",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::ModuleIncluder",
"config" : {
"Dist::Zilla::Plugin::ModuleIncluder" : {
"background_perl" : "5.008003",
"blacklist" : [],
"module" : [
"ExtUtils::HasCompiler"
],
"only_deps" : 0
},
"Dist::Zilla::Role::ModuleIncluder" : {
"Module::CoreList" : "5.20250702",
"include_dependencies" : 1,
"version" : "0.008"
}
},
"name" : "ModuleIncluder",
"version" : "0.008"
},
{
"class" : "Dist::Zilla::Plugin::Manifest",
"name" : "Manifest",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::MetaConfig",
"name" : "MetaConfig",
"version" : "6.033"
},
{
"class" : "inc::SimpleAuthority",
"name" : "=inc::SimpleAuthority",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::MetaResources",
"name" : "MetaResources",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::UseUnsafeInc",
"config" : {
"Dist::Zilla::Plugin::UseUnsafeInc" : {
"dot_in_INC" : 0
}
},
"name" : "UseUnsafeInc",
"version" : "0.002"
},
{
"class" : "inc::Documentation",
"name" : "=inc::Documentation",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::FileFinder::ByName",
"name" : "PodModules",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FileFinder::Filter",
"name" : "ModulesSansPod",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FileFinder::Filter",
"name" : "VersionedModules",
"version" : "6.033"
},
{
"class" : "inc::SimpleProvides",
"name" : "=inc::SimpleProvides",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::MetaProvides::Package",
"config" : {
"Dist::Zilla::Plugin::MetaProvides::Package" : {
"finder" : [
"ModulesSansPod"
],
"finder_objects" : [
{
"class" : "Dist::Zilla::Plugin::FileFinder::Filter",
"name" : "ModulesSansPod",
"version" : "6.033"
}
],
"include_underscores" : 0
},
"Dist::Zilla::Role::MetaProvider::Provider" : {
"$Dist::Zilla::Role::MetaProvider::Provider::VERSION" : "2.002004",
"inherit_missing" : 1,
"inherit_version" : 1,
"meta_noindex" : "1"
},
"Dist::Zilla::Role::ModuleMetadata" : {
"Module::Metadata" : "1.000038",
"version" : "0.006"
}
},
"name" : "MetaProvides::Package",
"version" : "2.004003"
},
{
"class" : "Dist::Zilla::Plugin::MetaNoIndex",
"name" : "MetaNoIndex",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Git::Contributors",
"config" : {
"Dist::Zilla::Plugin::Git::Contributors" : {
"git_version" : "2.49.0",
"include_authors" : 0,
"include_releaser" : 1,
"order_by" : "commits",
"paths" : []
}
},
"name" : "Git::Contributors",
"version" : "0.038"
},
{
"class" : "Dist::Zilla::Plugin::SurgicalPodWeaver",
"config" : {
"Dist::Zilla::Plugin::PodWeaver" : {
"finder" : [
":InstallModules",
":PerlExecFiles"
],
"plugins" : [
{
"class" : "Pod::Weaver::Plugin::EnsurePod5",
"name" : "@CorePrep/EnsurePod5",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Plugin::H1Nester",
"name" : "@CorePrep/H1Nester",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Plugin::SingleEncoding",
"name" : "@Default/SingleEncoding",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Name",
"name" : "@Default/Name",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Version",
"name" : "@Default/Version",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Region",
"name" : "@Default/prelude",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Generic",
"name" : "SYNOPSIS",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Generic",
"name" : "DESCRIPTION",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Generic",
"name" : "OVERVIEW",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Collect",
"name" : "ATTRIBUTES",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Collect",
"name" : "METHODS",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Collect",
"name" : "FUNCTIONS",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Leftovers",
"name" : "@Default/Leftovers",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Region",
"name" : "@Default/postlude",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Authors",
"name" : "@Default/Authors",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::Legal",
"name" : "@Default/Legal",
"version" : "4.020"
},
{
"class" : "Pod::Weaver::Section::AllowOverride",
"name" : "OverrideLegal",
"version" : "0.05"
}
]
}
},
"name" : "SurgicalPodWeaver",
"version" : "0.0023"
},
{
"class" : "Dist::Zilla::Plugin::RewriteVersion",
"config" : {
"Dist::Zilla::Plugin::RewriteVersion" : {
"add_tarball_name" : 0,
"finders" : [
"VersionedModules"
],
"global" : 0,
"skip_version_provider" : 0
}
},
"name" : "RewriteVersion",
"version" : "0.018"
},
{
"class" : "Dist::Zilla::Plugin::Git::Describe",
"name" : "Git::Describe",
"version" : "0.008"
},
{
"class" : "inc::ExtractInlineTests",
"name" : "=inc::ExtractInlineTests",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::PromptIfStale",
"config" : {
"Dist::Zilla::Plugin::PromptIfStale" : {
"check_all_plugins" : 1,
"check_all_prereqs" : 1,
"modules" : [],
"phase" : "release",
"run_under_travis" : 0,
"skip" : []
}
},
"name" : "PromptIfStale",
"version" : "0.060"
},
{
"class" : "Dist::Zilla::Plugin::Test::EOL",
"config" : {
"Dist::Zilla::Plugin::Test::EOL" : {
"filename" : "xt/author/eol.t",
"finder" : [
":ExecFiles",
":InstallModules",
":TestFiles"
],
"trailing_whitespace" : 1
}
},
"name" : "Test::EOL",
"version" : "0.19"
},
{
"class" : "Dist::Zilla::Plugin::PodSyntaxTests",
"name" : "PodSyntaxTests",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Test::NoTabs",
"config" : {
"Dist::Zilla::Plugin::Test::NoTabs" : {
"filename" : "xt/author/no-tabs.t",
"finder" : [
":InstallModules",
":ExecFiles",
":TestFiles"
]
}
},
"name" : "Test::NoTabs",
"version" : "0.15"
},
{
"class" : "Dist::Zilla::Plugin::MetaTests",
"name" : "MetaTests",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Test::Kwalitee",
"config" : {
"Dist::Zilla::Plugin::Test::Kwalitee" : {
"filename" : "xt/release/kwalitee.t",
"skiptest" : [
"use_strict"
]
}
},
"name" : "Test::Kwalitee",
"version" : "2.12"
},
{
"class" : "Dist::Zilla::Plugin::MojibakeTests",
"name" : "MojibakeTests",
"version" : "0.8"
},
{
"class" : "Dist::Zilla::Plugin::RunExtraTests",
"config" : {
"Dist::Zilla::Role::TestRunner" : {
"default_jobs" : "9"
}
},
"name" : "RunExtraTests",
"version" : "0.029"
},
{
"class" : "Dist::Zilla::Plugin::Test::ReportPrereqs",
"name" : "Test::ReportPrereqs",
"version" : "0.029"
},
{
"class" : "Dist::Zilla::Plugin::Test::CPAN::Changes",
"config" : {
"Dist::Zilla::Plugin::Test::CPAN::Changes" : {
"changelog" : "Changes",
"filename" : "xt/release/cpan-changes.t"
}
},
"name" : "Test::CPAN::Changes",
"version" : "0.013"
},
{
"class" : "Dist::Zilla::Plugin::Test::Compile",
"config" : {
"Dist::Zilla::Plugin::Test::Compile" : {
"bail_out_on_fail" : "1",
"fail_on_warning" : "author",
"fake_home" : 0,
"filename" : "xt/release/00-compile.t",
"module_finder" : [
":InstallModules"
],
"needs_display" : 0,
"phase" : "develop",
"script_finder" : [
":PerlExecFiles"
],
"skips" : [
"^Class::MOP::Attribute$",
"^Class::MOP::Class$",
"^Class::MOP::Method::Accessor$",
"^Class::MOP::Method::Constructor$",
"^Class::MOP::Method::Inlined$",
"^Class::MOP::Method::Wrapped$",
"^Class::MOP::Mixin::HasAttributes$",
"^Class::MOP::Module$",
"^Class::MOP::Package$",
"^Moose::Meta::Attribute$",
"^Moose::Meta::Attribute::Native$",
"^Moose::Meta::Mixin::AttributeCore$",
"^Moose::Meta::Role::Attribute$",
"^Moose::Meta::TypeConstraint::Class$",
"^Moose::Meta::TypeConstraint::DuckType$",
"^Moose::Meta::TypeConstraint::Enum$",
"^Moose::Meta::TypeConstraint::Parameterizable$",
"^Moose::Meta::TypeConstraint::Parameterized$",
"^Moose::Meta::TypeConstraint::Role$",
"^Moose::Meta::TypeConstraint::Union$"
],
"switch" : []
}
},
"name" : "Test::Compile",
"version" : "2.058"
},
{
"class" : "Dist::Zilla::Plugin::CheckVersionIncrement",
"name" : "CheckVersionIncrement",
"version" : "0.121750"
},
{
"class" : "Dist::Zilla::Plugin::Test::ChangesHasContent",
"name" : "Test::ChangesHasContent",
"version" : "0.011"
},
{
"class" : "Dist::Zilla::Plugin::Substitute",
"name" : "Substitute",
"version" : "0.008"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "runtime",
"type" : "requires"
}
},
"name" : "Prereqs",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "test",
"type" : "requires"
}
},
"name" : "TestRequires",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "configure",
"type" : "requires"
}
},
"name" : "ConfigureRequires",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps",
"name" : "Prereqs::AuthorDeps",
"version" : "0.007"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "develop",
"type" : "requires"
}
},
"name" : "DevelopRequires",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "runtime",
"type" : "recommends"
}
},
"name" : "RuntimeRecommends",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "runtime",
"type" : "suggests"
}
},
"name" : "RuntimeSuggests",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Conflicts",
"name" : "Conflicts",
"version" : "0.20"
},
{
"class" : "Dist::Zilla::Plugin::Test::CheckBreaks",
"config" : {
"Dist::Zilla::Plugin::Test::CheckBreaks" : {
"conflicts_module" : [
"Module::Runtime::Conflicts",
"Moose::Conflicts"
],
"no_forced_deps" : 0
},
"Dist::Zilla::Role::ModuleMetadata" : {
"Module::Metadata" : "1.000038",
"version" : "0.006"
}
},
"name" : "Test::CheckBreaks",
"version" : "0.020"
},
{
"class" : "inc::CheckAuthorDeps",
"name" : "=inc::CheckAuthorDeps",
"version" : null
},
{
"class" : "inc::CheckDelta",
"name" : "=inc::CheckDelta",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::Git::Remote::Check",
"name" : "Git::Remote::Check",
"version" : "0.1.2"
},
{
"class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch",
"config" : {
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
}
},
"name" : "Git::CheckFor::CorrectBranch",
"version" : "0.014"
},
{
"class" : "Dist::Zilla::Plugin::Git::Check",
"config" : {
"Dist::Zilla::Plugin::Git::Check" : {
"untracked_files" : "die"
},
"Dist::Zilla::Role::Git::DirtyFiles" : {
"allow_dirty" : [],
"allow_dirty_match" : [],
"changelog" : "Changes"
},
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
}
},
"name" : "Git::Check",
"version" : "2.051"
},
{
"class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts",
"config" : {
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
}
},
"name" : "Git::CheckFor::MergeConflicts",
"version" : "0.014"
},
{
"class" : "Dist::Zilla::Plugin::Run::AfterBuild",
"config" : {
"Dist::Zilla::Plugin::Run::Role::Runner" : {
"fatal_errors" : 1,
"quiet" : 1,
"run" : [
"bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%...
],
"version" : "0.050"
}
},
"name" : ".ackrc",
"version" : "0.050"
},
{
"class" : "Dist::Zilla::Plugin::TestRelease",
"name" : "TestRelease",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::UploadToCPAN",
"name" : "UploadToCPAN",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::CopyFilesFromRelease",
"config" : {
"Dist::Zilla::Plugin::CopyFilesFromRelease" : {
"filename" : [
"Changes"
],
"match" : []
}
},
"name" : "CopyChanges",
"version" : "0.007"
},
{
"class" : "Dist::Zilla::Plugin::CopyFilesFromRelease",
"config" : {
"Dist::Zilla::Plugin::CopyFilesFromRelease" : {
"filename" : [
"LICENSE",
"ppport.h"
],
"match" : []
}
},
"name" : "CopyFilesFromRelease",
"version" : "0.007"
},
{
"class" : "Dist::Zilla::Plugin::Regenerate::AfterReleasers",
"config" : {
"Dist::Zilla::Plugin::Regenerate::AfterReleasers" : {
"plugins" : [
"CopyFilesFromRelease"
]
},
"Dist::Zilla::Role::Regenerator" : {
"$Dist::Zilla::Role::Regenerator::VERSION" : "0.001003"
}
},
"name" : "Regenerate::AfterReleasers",
"version" : "0.001003"
},
{
"class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod",
"config" : {
"Dist::Zilla::Role::FileWatcher" : {
"version" : "0.006"
}
},
"name" : "ReadmeAnyFromPod",
"version" : "0.163250"
},
{
"class" : "Dist::Zilla::Plugin::Git::Commit",
"config" : {
"Dist::Zilla::Plugin::Git::Commit" : {
"add_files_in" : [],
"commit_msg" : "%N-%v%t%n%n%c",
"signoff" : 0
},
"Dist::Zilla::Role::Git::DirtyFiles" : {
"allow_dirty" : [
"CONTRIBUTING.pod",
"Changes",
"LICENSE",
"ppport.h"
],
"allow_dirty_match" : [],
"changelog" : "Changes"
},
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
},
"Dist::Zilla::Role::Git::StringFormatter" : {
"time_zone" : "local"
}
},
"name" : "release snapshot",
"version" : "2.051"
},
{
"class" : "Dist::Zilla::Plugin::Git::Tag",
"config" : {
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : null,
"changelog" : "Changes",
"signed" : 0,
"tag" : "2.4000",
"tag_format" : "%v",
"tag_message" : "%v%t"
},
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
},
"Dist::Zilla::Role::Git::StringFormatter" : {
"time_zone" : "local"
}
},
"name" : "Git::Tag",
"version" : "2.051"
},
{
"class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease",
"config" : {
"Dist::Zilla::Plugin::BumpVersionAfterRelease" : {
"finders" : [
"VersionedModules"
],
"global" : 0,
"munge_makefile_pl" : 1
}
},
"name" : "BumpVersionAfterRelease",
"version" : "0.018"
},
{
"class" : "Dist::Zilla::Plugin::NextRelease",
"name" : "NextRelease",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::Git::Commit",
"config" : {
"Dist::Zilla::Plugin::Git::Commit" : {
"add_files_in" : [],
"commit_msg" : "increment $VERSION after %v release",
"signoff" : 0
},
"Dist::Zilla::Role::Git::DirtyFiles" : {
"allow_dirty" : [
"Changes"
],
"allow_dirty_match" : [
"(?^u:^lib/.*\\.pm$)"
],
"changelog" : "Changes"
},
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
},
"Dist::Zilla::Role::Git::StringFormatter" : {
"time_zone" : "local"
}
},
"name" : "increment version",
"version" : "2.051"
},
{
"class" : "Dist::Zilla::Plugin::Git::Push",
"config" : {
"Dist::Zilla::Plugin::Git::Push" : {
"push_to" : [
"origin"
],
"remotes_must_exist" : 1
},
"Dist::Zilla::Role::Git::Repo" : {
"git_version" : "2.49.0",
"repo_root" : "."
}
},
"name" : "Git::Push",
"version" : "2.051"
},
{
"class" : "inc::GenerateDocs",
"name" : "=inc::GenerateDocs",
"version" : null
},
{
"class" : "inc::Clean",
"name" : "=inc::Clean",
"version" : null
},
{
"class" : "Dist::Zilla::Plugin::ConfirmRelease",
"name" : "ConfirmRelease",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":InstallModules",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":IncModules",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":TestFiles",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":ExtraTestFiles",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":ExecFiles",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":PerlExecFiles",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":ShareFiles",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":MainModule",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":AllFiles",
"version" : "6.033"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":NoFiles",
"version" : "6.033"
}
],
"zilla" : {
"class" : "Dist::Zilla::Dist::Builder",
"config" : {
"is_trial" : 0
},
"version" : "6.033"
}
},
"x_authority" : "cpan:STEVAN",
"x_breaks" : {
"Catalyst" : "<= 5.90049999",
"Config::MVP" : "<= 2.200004",
"Devel::REPL" : "<= 1.003020",
"Dist::Zilla" : "<= 5.043",
"Dist::Zilla::Plugin::Git" : "<= 2.016",
"Fey" : "<= 0.36",
"Fey::ORM" : "<= 0.42",
"File::ChangeNotify" : "<= 0.15",
"HTTP::Throwable" : "<= 0.017",
"KiokuDB" : "<= 0.51",
"Markdent" : "<= 0.16",
"Mason" : "<= 2.18",
"Moose::Autobox" : "<= 0.15",
"MooseX::ABC" : "<= 0.05",
"MooseX::Aliases" : "<= 0.08",
"MooseX::AlwaysCoerce" : "<= 0.13",
"MooseX::App" : "<= 1.22",
"MooseX::Attribute::Deflator" : "<= 2.1.7",
"MooseX::Attribute::Dependent" : "<= 1.1.3",
"MooseX::Attribute::Prototype" : "<= 0.10",
"MooseX::AttributeHelpers" : "<= 0.22",
"MooseX::AttributeIndexes" : "<= 1.0.0",
"MooseX::AttributeInflate" : "<= 0.02",
"MooseX::CascadeClearing" : "<= 0.03",
"MooseX::ClassAttribute" : "<= 0.26",
"MooseX::Constructor::AllErrors" : "<= 0.021",
"MooseX::Declare" : "<= 0.35",
"MooseX::FollowPBP" : "<= 0.02",
"MooseX::Getopt" : "<= 0.56",
"MooseX::InstanceTracking" : "<= 0.04",
"MooseX::LazyRequire" : "<= 0.06",
"MooseX::Meta::Attribute::Index" : "<= 0.04",
"MooseX::Meta::Attribute::Lvalue" : "<= 0.05",
"MooseX::Method::Signatures" : "<= 0.44",
"MooseX::MethodAttributes" : "<= 0.22",
"MooseX::NonMoose" : "<= 0.24",
"MooseX::Object::Pluggable" : "<= 0.0011",
"MooseX::POE" : "<= 0.214",
"MooseX::Params::Validate" : "<= 0.05",
"MooseX::PrivateSetters" : "<= 0.03",
"MooseX::Role::Cmd" : "<= 0.06",
"MooseX::Role::Parameterized" : "<= 1.00",
"MooseX::Role::WithOverloading" : "<= 0.14",
"MooseX::Runnable" : "<= 0.03",
"MooseX::Scaffold" : "<= 0.05",
"MooseX::SemiAffordanceAccessor" : "<= 0.05",
"MooseX::SetOnce" : "<= 0.100473",
"MooseX::Singleton" : "<= 0.25",
"MooseX::SlurpyConstructor" : "<= 1.1",
"MooseX::Storage" : "<= 0.42",
"MooseX::StrictConstructor" : "<= 0.12",
"MooseX::Traits" : "<= 0.11",
"MooseX::Types" : "<= 0.19",
"MooseX::Types::Parameterizable" : "<= 0.05",
"MooseX::Types::Set::Object" : "<= 0.03",
"MooseX::Types::Signal" : "<= 1.101930",
"MooseX::UndefTolerant" : "<= 0.11",
"Net::Twitter" : "<= 4.01041",
"PRANG" : "<= 0.14",
"Pod::Elemental" : "<= 0.093280",
"Pod::Weaver" : "<= 3.101638",
"Reaction" : "<= 0.002003",
"Test::Able" : "<= 0.10",
"Test::CleanNamespaces" : "<= 0.03",
"Test::Moose::More" : "<= 0.022",
"Test::TempDir" : "<= 0.05",
"Throwable" : "<= 0.102080",
"namespace::autoclean" : "<= 0.08"
},
"x_contributors" : [
"Upasana Shukla <me@upasana.me>",
"Graham Knop <haarg@haarg.org>",
"Matt S Trout <mst@shadowcat.co.uk>",
"Tomas Doran <bobtfish@bobtfish.net>",
"Ricardo Signes <rjbs@cpan.org>",
"Guillermo Roditi <groditi@gmail.com>",
"John Napiorkowski <jjnapiork@cpan.org>",
"Aankhen <aankhen@gmail.com>",
"Todd Hepler <thepler@cpan.org>",
"Jonathan Rockway <jrockway@cpan.org>",
"Gerda Shank <gshank@cpan.org>",
"Perlover <perlover@perlover.com>",
"Shlomi Fish <shlomif@cpan.org>",
"Brad Bowman <bowmanbs@cpan.org>",
"Justin Hunter <justin.d.hunter@gmail.com>",
"Kent Fredric <kentnl@cpan.org>",
"Paul Driver <frodwith@cpan.org>",
"Anders Nor Berle <berle@cpan.org>",
"Brian Manning <elspicyjack@gmail.com>",
"Dagfinn Ilmari Manns\u00e5ker <ilmari@ilmari.org>",
"gfx <gfuji@cpan.org>",
"Jay Hannah <jay@jays.net>",
"Lars D\u026a\u1d07\u1d04\u1d0b\u1d0f\u1d21 \u8fea\u62c9\u65af <daxim@cpan.org>",
"Leon Brocard <acme@astray.com>",
"Olivier Mengu\u00e9 <dolmen@cpan.org>",
"Rafael Kitover <rkitover@cpan.org>",
"Christian Hansen <chansen@cpan.org>",
"Cory Watson <github@onemogin.com>",
"Paul Jamieson Fenwick <pjf@perltraining.com.au>",
"Robert Buels <rmb32@cornell.edu>",
"Dan Dascalescu <ddascaNOSPAMlescu@gmail.com>",
"Marcel Gr\u00fcnauer <hanekomu@gmail.com>",
"Scott McWhirter <konobi@cpan.org>",
"\u00c6var Arnfj\u00f6r\u00f0 Bjarmason <avar@cpan.org>",
"Daisuke Maki (lestrrat) <daisuke@endeworks.jp>",
"Dylan William Hardison <dylan@hardison.net>",
"Patrick Donelan <pat@patspam.com>",
"Stefan O'Rear <stefanor@cox.net>",
"Tokuhiro Matsuno <tokuhirom@gp.ath.cx>",
"Ash Berlin <ash@cpan.org>",
"Christian Walde <walde.christian@gmail.com>",
"Chris Weyl <cweyl@alumni.drew.edu>",
"Eric Wilhelm <ewilhelm@cpan.org>",
"Jess Robinson <jrobinson@cpan.org>",
"Marc Mims <marc@questright.com>",
"Marcus Ramberg <mramberg@cpan.org>",
"Mark Allen <mrallen1@yahoo.com>",
"Mateu X Hunter <hunter@missoula.org>",
"matthof <rmhofmann@gmail.com>",
"Robert 'phaylon' Sedlacek <phaylon@cpan.org>",
"Zachary Lome <zachary.lome@baml.com>",
"Aran Clary Deltac <bluefeet@cpan.org>",
"Chip <chip@pobox.com>",
"Christopher J. Madsen <perl@cjmweb.net>",
"Curtis Jewell <perl@csjewell.fastmail.us>",
"Evan Carroll <evan@dealermade.com>",
"Mark A. Stratman <stratman@gmail.com>",
"Mark Fowler <mark@twoshortplanks.com>",
"Matthew Horsfall <alh@cpan.org>",
"mauke <l.mai@web.de>",
"Michael LaGrasta <michael@lagrasta.com>",
"Michael Rykov <mrykov@gmail.com>",
"Mike Whitaker <mike@altrion.org>",
"Moritz Onken <moritz@cpan.org>",
"Nelo Onyiah <io1@sanger.ac.uk>",
"Nick Perez <nperez@cpan.org>",
"Robert Boone <robo4288@gmail.com>",
"Robin V <robinsp-gmail-com@nospam.com>",
"rodrigolive <rodrigolive@gmail.com>",
"shelling <navyblueshellingford@gmail.com>",
"Thomas Sibley <tsibley@cpan.org>",
"Tom Hukins <tom@eborcom.com>",
"Wallace Reis <reis.wallace@gmail.com>",
"Aaron Cohen <aarondcohen@gmail.com>",
"Adam J. Foxson <fhoxh@pobox.com>",
"Adam Kennedy <adamk@cpan.org>",
"Andy Jack <github@veracity.ca>",
"Anirvan Chatterjee <anirvan@users.noreply.github.com>",
"Ansgar Burchardt <ansgar@43-1.org>",
"A. Sinan Unur <nanis@cpan.org>",
"Ben Hutton <relequest@cpan.org>",
"Brendan Byrd <Perl@ResonatorSoft.org>",
"Chad Granum <exodist@cpan.org>",
"Chankey Pathak <chankey007@gmail.com>",
"Chia-liang Kao <clkao@clkao.org>",
"chromatic <chromatic@wgz.org>",
"Daniel B\u00f6hmer <post@daniel-boehmer.de>",
"Dann <techmemo@gmail.com>",
"Dave Romano <dave.romano@ionzero.com>",
"David Leadbeater <dgl@dgl.cx>",
"David Steinbrunner <dsteinbrunner@MountainBook-Pro.local>",
"dmaestro <dmaestro@users.noreply.github.com>",
"E. Choroba <choroba@matfyz.cz>",
"franck cuny <franck@lumberjaph.net>",
"Frew Schmidt <frioux@gmail.com>",
"gregor herrmann <gregoa@debian.org>",
"hakim <hakim.cassimally@gmail.com>",
"Henry Van Styn <vanstyn@cpan.org>",
"James Marca <james@activimetrics.com>",
"Jason May <jason.a.may@gmail.com>",
"Jay Allen <jay@endevver.com>",
"Jay Kuri <jayk@jay-kuris-macbook.local>",
"Jeff Bisbee <jbisbee@biz.(none)>",
"Jens Berthold <jens@jebecs.de>",
"Jesse Vincent <jesse@cpan.org>",
"joel <joel@fysh.org>",
"John Douglas Porter <jdporter@cpan.org>",
"John Goulah <jgoulah@cpan.org>",
"Justin DeVuyst <justin@devuyst.com>",
"Kang-min Liu <gugod@gugod.org>",
"Leon Timmermans <fawaka@gmail.com>",
"Mark O Grady <mark.o'grady@broadbean.com>",
"Matt Kraai <kraai@ftbfs.org>",
"Michael Schout <mschout@gkg.net>",
"Nathan Gray <kolibrie@graystudios.org>",
"Olaf Alders <oalders@cpan.org>",
"Olof Johansson <olof@ethup.se>",
"Paul Cochrane <paul@liekut.de>",
"Pawe\u0142 Murias <pawelmurias@gmail.com>",
"Pedro Melo <melo@simplicidade.org>",
"Peter Shangov <pshangov@yahoo.com>",
"Philippe Bruhat (BooK) <book@cpan.org>",
"Philipp Gortan <mephinet@gmx.net>",
"Phillip Smith <ps@phillipadsmith.com>",
"Piotr Roszatycki <piotr.roszatycki@gmail.com>",
"pktm <pktm@users.noreply.github.com>",
"rouzier <rouzier@gmail.com>",
"Sam Vilain <sam.vilain@catalyst.net.nz>",
"sherrardb <32931314+sherrardb@users.noreply.github.com>",
"Simon Reinhardt <simon.reinhardt@stud.uni-regensburg.de>",
"sue spence <virtuallysue@gmail.com>",
"Tuomas Jormola <tj@solitudo.net>",
"wickline <m-s-w-github@wickline.org>",
"Yanick Champoux <yanick@cpan.org>",
"Zoffix Znet <cpan@zoffix.com>"
],
"x_documentation" : [
"Moose::Manual",
"Moose::Manual::Attributes",
"Moose::Manual::BestPractices",
"Moose::Manual::Classes",
"Moose::Manual::Concepts",
"Moose::Manual::Construction",
"Moose::Manual::Contributing",
"Moose::Manual::Delegation",
"Moose::Manual::Delta",
"Moose::Manual::Exceptions",
"Moose::Manual::FAQ",
"Moose::Manual::MOP",
"Moose::Manual::MethodModifiers",
"Moose::Manual::MooseX",
"Moose::Manual::Resources",
"Moose::Manual::Roles",
"Moose::Manual::Support",
"Moose::Manual::Types",
"Moose::Manual::Unsweetened",
"Moose::Cookbook",
"Moose::Cookbook::Basics::BankAccount_MethodModifiersAndSubclassing",
"Moose::Cookbook::Basics::BinaryTree_AttributeFeatures",
"Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild",
"Moose::Cookbook::Basics::Company_Subtypes",
"Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent",
"Moose::Cookbook::Basics::Document_AugmentAndInner",
"Moose::Cookbook::Basics::Genome_OverloadingSubtypesAndCoercion",
"Moose::Cookbook::Basics::HTTP_SubtypesAndCoercion",
"Moose::Cookbook::Basics::Immutable",
"Moose::Cookbook::Basics::Person_BUILDARGSAndBUILD",
"Moose::Cookbook::Basics::Point_AttributesAndSubclassing",
"Moose::Cookbook::Extending::Debugging_BaseClassRole",
"Moose::Cookbook::Extending::ExtensionOverview",
"Moose::Cookbook::Extending::Mooseish_MooseSugar",
"Moose::Cookbook::Legacy::Debugging_BaseClassReplacement",
"Moose::Cookbook::Legacy::Labeled_AttributeMetaclass",
"Moose::Cookbook::Legacy::Table_ClassMetaclass",
"Moose::Cookbook::Meta::GlobRef_InstanceMetaclass",
"Moose::Cookbook::Meta::Labeled_AttributeTrait",
"Moose::Cookbook::Meta::PrivateOrPublic_MethodMetaclass",
"Moose::Cookbook::Meta::Table_MetaclassTrait",
"Moose::Cookbook::Meta::WhyMeta",
"Moose::Cookbook::Roles::ApplicationToInstance",
"Moose::Cookbook::Roles::Comparable_CodeReuse",
"Moose::Cookbook::Roles::Restartable_AdvancedComposition",
"Moose::Cookbook::Snack::Keywords",
"Moose::Cookbook::Snack::Types",
"Moose::Cookbook::Style"
],
"x_generated_by_perl" : "v5.42.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.39",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later",
"x_use_unsafe_inc" : 0
}
---
abstract: 'A postmodern object system for Perl 5'
author:
- 'Stevan Little <stevan@cpan.org>'
- 'Dave Rolsky <autarch@urth.org>'
- 'Jesse Luehrs <doy@cpan.org>'
- 'Shawn M Moore <sartak@cpan.org>'
- "×××× ×§××'×× (Yuval Kogman) <nothingmuch@woobling.org>"
- 'Karen Etheridge <ether@cpan.org>'
- 'Florian Ragwitz <rafl@debian.org>'
- 'Hans Dieter Pearcey <hdp@cpan.org>'
- 'Chris Prather <chris@prather.org>'
- 'Matt S Trout <mstrout@cpan.org>'
build_requires:
CPAN::Meta::Check: '0.011'
CPAN::Meta::Requirements: '0'
File::Spec: '0'
Module::Metadata: '0'
Test::Fatal: '0.001'
Test::More: '0.96'
Test::Needs: '0.002010'
configure_requires:
Dist::CheckConflicts: '0.02'
ExtUtils::MakeMaker: '0'
perl: '5.008003'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.033, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Moose
no_index:
directory:
- author
- benchmarks
- doc
- inc
provides:
Class::MOP:
file: lib/Class/MOP.pm
version: '2.4000'
Class::MOP::Attribute:
file: lib/Class/MOP/Attribute.pm
version: '2.4000'
Class::MOP::Class:
file: lib/Class/MOP/Class.pm
version: '2.4000'
Class::MOP::Class::Immutable::Trait:
file: lib/Class/MOP/Class/Immutable/Trait.pm
version: '2.4000'
Class::MOP::Deprecated:
file: lib/Class/MOP/Deprecated.pm
version: '2.4000'
Class::MOP::Instance:
file: lib/Class/MOP/Instance.pm
version: '2.4000'
Class::MOP::Method:
file: lib/Class/MOP/Method.pm
version: '2.4000'
Class::MOP::Method::Accessor:
file: lib/Class/MOP/Method/Accessor.pm
version: '2.4000'
Class::MOP::Method::Constructor:
file: lib/Class/MOP/Method/Constructor.pm
version: '2.4000'
Class::MOP::Method::Generated:
file: lib/Class/MOP/Method/Generated.pm
version: '2.4000'
Class::MOP::Method::Inlined:
file: lib/Class/MOP/Method/Inlined.pm
version: '2.4000'
Class::MOP::Method::Meta:
file: lib/Class/MOP/Method/Meta.pm
version: '2.4000'
Class::MOP::Method::Wrapped:
file: lib/Class/MOP/Method/Wrapped.pm
version: '2.4000'
Class::MOP::MiniTrait:
file: lib/Class/MOP/MiniTrait.pm
version: '2.4000'
Class::MOP::Mixin:
file: lib/Class/MOP/Mixin.pm
version: '2.4000'
Class::MOP::Mixin::AttributeCore:
file: lib/Class/MOP/Mixin/AttributeCore.pm
version: '2.4000'
Class::MOP::Mixin::HasAttributes:
file: lib/Class/MOP/Mixin/HasAttributes.pm
version: '2.4000'
Class::MOP::Mixin::HasMethods:
file: lib/Class/MOP/Mixin/HasMethods.pm
version: '2.4000'
Class::MOP::Mixin::HasOverloads:
file: lib/Class/MOP/Mixin/HasOverloads.pm
version: '2.4000'
Class::MOP::Module:
file: lib/Class/MOP/Module.pm
version: '2.4000'
Class::MOP::Object:
file: lib/Class/MOP/Object.pm
version: '2.4000'
Class::MOP::Overload:
file: lib/Class/MOP/Overload.pm
version: '2.4000'
Class::MOP::Package:
file: lib/Class/MOP/Package.pm
version: '2.4000'
Moose:
file: lib/Moose.pm
version: '2.4000'
Moose::Cookbook:
file: lib/Moose/Cookbook.pod
version: '2.4000'
Moose::Cookbook::Basics::BankAccount_MethodModifiersAndSubclassing:
file: lib/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod
version: '2.4000'
Moose::Cookbook::Basics::BinaryTree_AttributeFeatures:
file: lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod
version: '2.4000'
Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild:
file: lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod
version: '2.4000'
Moose::Cookbook::Basics::Company_Subtypes:
file: lib/Moose/Cookbook/Basics/Company_Subtypes.pod
version: '2.4000'
Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent:
file: lib/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod
version: '2.4000'
Moose::Cookbook::Basics::Document_AugmentAndInner:
file: lib/Moose/Cookbook/Basics/Document_AugmentAndInner.pod
version: '2.4000'
Moose::Cookbook::Basics::Genome_OverloadingSubtypesAndCoercion:
file: lib/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod
version: '2.4000'
Moose::Cookbook::Basics::HTTP_SubtypesAndCoercion:
file: lib/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod
version: '2.4000'
Moose::Cookbook::Basics::Immutable:
file: lib/Moose/Cookbook/Basics/Immutable.pod
version: '2.4000'
Moose::Cookbook::Basics::Person_BUILDARGSAndBUILD:
file: lib/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod
version: '2.4000'
Moose::Cookbook::Basics::Point_AttributesAndSubclassing:
file: lib/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod
version: '2.4000'
Moose::Cookbook::Extending::Debugging_BaseClassRole:
file: lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod
version: '2.4000'
Moose::Cookbook::Extending::ExtensionOverview:
file: lib/Moose/Cookbook/Extending/ExtensionOverview.pod
version: '2.4000'
Moose::Cookbook::Extending::Mooseish_MooseSugar:
file: lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod
version: '2.4000'
Moose::Cookbook::Legacy::Debugging_BaseClassReplacement:
file: lib/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod
version: '2.4000'
Moose::Cookbook::Legacy::Labeled_AttributeMetaclass:
file: lib/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod
version: '2.4000'
Moose::Cookbook::Legacy::Table_ClassMetaclass:
file: lib/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod
version: '2.4000'
Moose::Cookbook::Meta::GlobRef_InstanceMetaclass:
file: lib/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod
version: '2.4000'
Moose::Cookbook::Meta::Labeled_AttributeTrait:
file: lib/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod
version: '2.4000'
Moose::Cookbook::Meta::PrivateOrPublic_MethodMetaclass:
file: lib/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod
version: '2.4000'
Moose::Cookbook::Meta::Table_MetaclassTrait:
file: lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod
version: '2.4000'
Moose::Cookbook::Meta::WhyMeta:
file: lib/Moose/Cookbook/Meta/WhyMeta.pod
version: '2.4000'
Moose::Cookbook::Roles::ApplicationToInstance:
file: lib/Moose/Cookbook/Roles/ApplicationToInstance.pod
version: '2.4000'
Moose::Cookbook::Roles::Comparable_CodeReuse:
file: lib/Moose/Cookbook/Roles/Comparable_CodeReuse.pod
version: '2.4000'
Moose::Cookbook::Roles::Restartable_AdvancedComposition:
file: lib/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod
version: '2.4000'
Moose::Cookbook::Snack::Keywords:
file: lib/Moose/Cookbook/Snack/Keywords.pod
version: '2.4000'
Moose::Cookbook::Snack::Types:
file: lib/Moose/Cookbook/Snack/Types.pod
version: '2.4000'
Moose::Cookbook::Style:
file: lib/Moose/Cookbook/Style.pod
version: '2.4000'
Moose::Deprecated:
file: lib/Moose/Deprecated.pm
version: '2.4000'
Moose::Exception:
file: lib/Moose/Exception.pm
version: '2.4000'
Moose::Exception::AccessorMustReadWrite:
file: lib/Moose/Exception/AccessorMustReadWrite.pm
version: '2.4000'
Moose::Exception::AddParameterizableTypeTakesParameterizableType:
file: lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm
version: '2.4000'
Moose::Exception::AddRoleTakesAMooseMetaRoleInstance:
file: lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm
version: '2.4000'
Moose::Exception::AddRoleToARoleTakesAMooseMetaRole:
file: lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm
version: '2.4000'
Moose::Exception::ApplyTakesABlessedInstance:
file: lib/Moose/Exception/ApplyTakesABlessedInstance.pm
version: '2.4000'
Moose::Exception::AttachToClassNeedsAClassMOPClassInstanceOrASubclass:
file: lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm
version: '2.4000'
Moose::Exception::AttributeConflictInRoles:
file: lib/Moose/Exception/AttributeConflictInRoles.pm
version: '2.4000'
Moose::Exception::AttributeConflictInSummation:
file: lib/Moose/Exception/AttributeConflictInSummation.pm
version: '2.4000'
Moose::Exception::AttributeExtensionIsNotSupportedInRoles:
file: lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm
version: '2.4000'
Moose::Exception::AttributeIsRequired:
file: lib/Moose/Exception/AttributeIsRequired.pm
version: '2.4000'
Moose::Exception::AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass:
file: lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm
version: '2.4000'
Moose::Exception::AttributeNamesDoNotMatch:
file: lib/Moose/Exception/AttributeNamesDoNotMatch.pm
version: '2.4000'
Moose::Exception::AttributeValueIsNotAnObject:
file: lib/Moose/Exception/AttributeValueIsNotAnObject.pm
version: '2.4000'
Moose::Exception::AttributeValueIsNotDefined:
file: lib/Moose/Exception/AttributeValueIsNotDefined.pm
version: '2.4000'
Moose::Exception::AutoDeRefNeedsArrayRefOrHashRef:
file: lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm
version: '2.4000'
Moose::Exception::BadOptionFormat:
file: lib/Moose/Exception/BadOptionFormat.pm
version: '2.4000'
Moose::Exception::BothBuilderAndDefaultAreNotAllowed:
file: lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm
version: '2.4000'
Moose::Exception::BuilderDoesNotExist:
file: lib/Moose/Exception/BuilderDoesNotExist.pm
version: '2.4000'
Moose::Exception::BuilderMethodNotSupportedForAttribute:
file: lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm
version: '2.4000'
Moose::Exception::BuilderMethodNotSupportedForInlineAttribute:
file: lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm
version: '2.4000'
Moose::Exception::BuilderMustBeAMethodName:
file: lib/Moose/Exception/BuilderMustBeAMethodName.pm
version: '2.4000'
Moose::Exception::CallingMethodOnAnImmutableInstance:
file: lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm
version: '2.4000'
Moose::Exception::CallingReadOnlyMethodOnAnImmutableInstance:
file: lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm
version: '2.4000'
Moose::Exception::CanExtendOnlyClasses:
file: lib/Moose/Exception/CanExtendOnlyClasses.pm
version: '2.4000'
Moose::Exception::CanOnlyConsumeRole:
file: lib/Moose/Exception/CanOnlyConsumeRole.pm
version: '2.4000'
Moose::Exception::CanOnlyWrapBlessedCode:
file: lib/Moose/Exception/CanOnlyWrapBlessedCode.pm
version: '2.4000'
Moose::Exception::CanReblessOnlyIntoASubclass:
file: lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm
version: '2.4000'
Moose::Exception::CanReblessOnlyIntoASuperclass:
file: lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm
version: '2.4000'
Moose::Exception::CannotAddAdditionalTypeCoercionsToUnion:
file: lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm
version: '2.4000'
Moose::Exception::CannotAddAsAnAttributeToARole:
file: lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm
version: '2.4000'
Moose::Exception::CannotApplyBaseClassRolesToRole:
file: lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm
version: '2.4000'
Moose::Exception::CannotAssignValueToReadOnlyAccessor:
file: lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm
version: '2.4000'
Moose::Exception::CannotAugmentIfLocalMethodPresent:
file: lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm
version: '2.4000'
Moose::Exception::CannotAugmentNoSuperMethod:
file: lib/Moose/Exception/CannotAugmentNoSuperMethod.pm
version: '2.4000'
Moose::Exception::CannotAutoDerefWithoutIsa:
file: lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm
version: '2.4000'
Moose::Exception::CannotAutoDereferenceTypeConstraint:
file: lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm
version: '2.4000'
Moose::Exception::CannotCalculateNativeType:
file: lib/Moose/Exception/CannotCalculateNativeType.pm
version: '2.4000'
Moose::Exception::CannotCallAnAbstractBaseMethod:
file: lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm
version: '2.4000'
Moose::Exception::CannotCallAnAbstractMethod:
file: lib/Moose/Exception/CannotCallAnAbstractMethod.pm
version: '2.4000'
Moose::Exception::CannotCoerceAWeakRef:
file: lib/Moose/Exception/CannotCoerceAWeakRef.pm
version: '2.4000'
Moose::Exception::CannotCoerceAttributeWhichHasNoCoercion:
file: lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm
version: '2.4000'
Moose::Exception::CannotCreateHigherOrderTypeWithoutATypeParameter:
file: lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm
version: '2.4000'
Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresent:
file: lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm
version: '2.4000'
Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresentInClass:
file: lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm
version: '2.4000'
Moose::Exception::CannotDelegateLocalMethodIsPresent:
file: lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm
version: '2.4000'
Moose::Exception::CannotDelegateWithoutIsa:
file: lib/Moose/Exception/CannotDelegateWithoutIsa.pm
version: '2.4000'
Moose::Exception::CannotFindDelegateMetaclass:
file: lib/Moose/Exception/CannotFindDelegateMetaclass.pm
version: '2.4000'
Moose::Exception::CannotFindType:
file: lib/Moose/Exception/CannotFindType.pm
version: '2.4000'
Moose::Exception::CannotFindTypeGivenToMatchOnType:
file: lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm
version: '2.4000'
Moose::Exception::CannotFixMetaclassCompatibility:
file: lib/Moose/Exception/CannotFixMetaclassCompatibility.pm
version: '2.4000'
Moose::Exception::CannotGenerateInlineConstraint:
file: lib/Moose/Exception/CannotGenerateInlineConstraint.pm
version: '2.4000'
Moose::Exception::CannotInitializeMooseMetaRoleComposite:
file: lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm
version: '2.4000'
Moose::Exception::CannotInlineTypeConstraintCheck:
file: lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm
version: '2.4000'
Moose::Exception::CannotLocatePackageInINC:
file: lib/Moose/Exception/CannotLocatePackageInINC.pm
version: '2.4000'
Moose::Exception::CannotMakeMetaclassCompatible:
file: lib/Moose/Exception/CannotMakeMetaclassCompatible.pm
version: '2.4000'
Moose::Exception::CannotOverrideALocalMethod:
file: lib/Moose/Exception/CannotOverrideALocalMethod.pm
version: '2.4000'
Moose::Exception::CannotOverrideBodyOfMetaMethods:
file: lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm
version: '2.4000'
Moose::Exception::CannotOverrideLocalMethodIsPresent:
file: lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm
version: '2.4000'
Moose::Exception::CannotOverrideNoSuperMethod:
file: lib/Moose/Exception/CannotOverrideNoSuperMethod.pm
version: '2.4000'
Moose::Exception::CannotRegisterUnnamedTypeConstraint:
file: lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm
version: '2.4000'
Moose::Exception::CannotUseLazyBuildAndDefaultSimultaneously:
file: lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm
version: '2.4000'
Moose::Exception::CircularReferenceInAlso:
file: lib/Moose/Exception/CircularReferenceInAlso.pm
version: '2.4000'
Moose::Exception::ClassDoesNotHaveInitMeta:
file: lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm
version: '2.4000'
Moose::Exception::ClassDoesTheExcludedRole:
file: lib/Moose/Exception/ClassDoesTheExcludedRole.pm
version: '2.4000'
Moose::Exception::ClassNamesDoNotMatch:
file: lib/Moose/Exception/ClassNamesDoNotMatch.pm
version: '2.4000'
Moose::Exception::CloneObjectExpectsAnInstanceOfMetaclass:
file: lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm
version: '2.4000'
Moose::Exception::CodeBlockMustBeACodeRef:
file: lib/Moose/Exception/CodeBlockMustBeACodeRef.pm
version: '2.4000'
Moose::Exception::CoercingWithoutCoercions:
file: lib/Moose/Exception/CoercingWithoutCoercions.pm
version: '2.4000'
Moose::Exception::CoercionAlreadyExists:
file: lib/Moose/Exception/CoercionAlreadyExists.pm
version: '2.4000'
Moose::Exception::CoercionNeedsTypeConstraint:
file: lib/Moose/Exception/CoercionNeedsTypeConstraint.pm
version: '2.4000'
Moose::Exception::ConflictDetectedInCheckRoleExclusions:
file: lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm
version: '2.4000'
Moose::Exception::ConflictDetectedInCheckRoleExclusionsInToClass:
file: lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm
version: '2.4000'
Moose::Exception::ConstructClassInstanceTakesPackageName:
file: lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm
version: '2.4000'
Moose::Exception::CouldNotCreateMethod:
file: lib/Moose/Exception/CouldNotCreateMethod.pm
version: '2.4000'
Moose::Exception::CouldNotCreateWriter:
file: lib/Moose/Exception/CouldNotCreateWriter.pm
version: '2.4000'
Moose::Exception::CouldNotEvalConstructor:
file: lib/Moose/Exception/CouldNotEvalConstructor.pm
version: '2.4000'
Moose::Exception::CouldNotEvalDestructor:
file: lib/Moose/Exception/CouldNotEvalDestructor.pm
version: '2.4000'
Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom:
file: lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm
version: '2.4000'
Moose::Exception::CouldNotGenerateInlineAttributeMethod:
file: lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm
version: '2.4000'
Moose::Exception::CouldNotLocateTypeConstraintForUnion:
file: lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm
version: '2.4000'
Moose::Exception::CouldNotParseType:
file: lib/Moose/Exception/CouldNotParseType.pm
version: '2.4000'
Moose::Exception::CreateMOPClassTakesArrayRefOfAttributes:
file: lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm
version: '2.4000'
Moose::Exception::CreateMOPClassTakesArrayRefOfSuperclasses:
file: lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm
version: '2.4000'
Moose::Exception::CreateMOPClassTakesHashRefOfMethods:
file: lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm
version: '2.4000'
Moose::Exception::CreateTakesArrayRefOfRoles:
file: lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm
version: '2.4000'
Moose::Exception::CreateTakesHashRefOfAttributes:
file: lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm
version: '2.4000'
Moose::Exception::CreateTakesHashRefOfMethods:
file: lib/Moose/Exception/CreateTakesHashRefOfMethods.pm
version: '2.4000'
Moose::Exception::DefaultToMatchOnTypeMustBeCodeRef:
file: lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm
version: '2.4000'
Moose::Exception::DelegationToAClassWhichIsNotLoaded:
file: lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm
version: '2.4000'
Moose::Exception::DelegationToARoleWhichIsNotLoaded:
file: lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm
version: '2.4000'
Moose::Exception::DelegationToATypeWhichIsNotAClass:
file: lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm
version: '2.4000'
Moose::Exception::DoesRequiresRoleName:
file: lib/Moose/Exception/DoesRequiresRoleName.pm
version: '2.4000'
Moose::Exception::EnumCalledWithAnArrayRefAndAdditionalArgs:
file: lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm
version: '2.4000'
Moose::Exception::EnumValuesMustBeString:
file: lib/Moose/Exception/EnumValuesMustBeString.pm
version: '2.4000'
Moose::Exception::ExtendsMissingArgs:
file: lib/Moose/Exception/ExtendsMissingArgs.pm
version: '2.4000'
Moose::Exception::HandlesMustBeAHashRef:
file: lib/Moose/Exception/HandlesMustBeAHashRef.pm
version: '2.4000'
Moose::Exception::IllegalInheritedOptions:
file: lib/Moose/Exception/IllegalInheritedOptions.pm
version: '2.4000'
Moose::Exception::IllegalMethodTypeToAddMethodModifier:
file: lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm
version: '2.4000'
Moose::Exception::IncompatibleMetaclassOfSuperclass:
file: lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm
version: '2.4000'
Moose::Exception::InitMetaRequiresClass:
file: lib/Moose/Exception/InitMetaRequiresClass.pm
version: '2.4000'
Moose::Exception::InitializeTakesUnBlessedPackageName:
file: lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm
version: '2.4000'
Moose::Exception::InstanceBlessedIntoWrongClass:
file: lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm
version: '2.4000'
Moose::Exception::InstanceMustBeABlessedReference:
file: lib/Moose/Exception/InstanceMustBeABlessedReference.pm
version: '2.4000'
Moose::Exception::InvalidArgPassedToMooseUtilMetaRole:
file: lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm
version: '2.4000'
Moose::Exception::InvalidArgumentToMethod:
file: lib/Moose/Exception/InvalidArgumentToMethod.pm
version: '2.4000'
Moose::Exception::InvalidArgumentsToTraitAliases:
file: lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm
version: '2.4000'
Moose::Exception::InvalidBaseTypeGivenToCreateParameterizedTypeConstraint:
file: lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm
version: '2.4000'
Moose::Exception::InvalidHandleValue:
file: lib/Moose/Exception/InvalidHandleValue.pm
version: '2.4000'
Moose::Exception::InvalidHasProvidedInARole:
file: lib/Moose/Exception/InvalidHasProvidedInARole.pm
version: '2.4000'
Moose::Exception::InvalidNameForType:
file: lib/Moose/Exception/InvalidNameForType.pm
version: '2.4000'
Moose::Exception::InvalidOverloadOperator:
file: lib/Moose/Exception/InvalidOverloadOperator.pm
version: '2.4000'
Moose::Exception::InvalidRoleApplication:
file: lib/Moose/Exception/InvalidRoleApplication.pm
version: '2.4000'
Moose::Exception::InvalidTypeConstraint:
file: lib/Moose/Exception/InvalidTypeConstraint.pm
version: '2.4000'
Moose::Exception::InvalidTypeGivenToCreateParameterizedTypeConstraint:
file: lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm
version: '2.4000'
Moose::Exception::InvalidValueForIs:
file: lib/Moose/Exception/InvalidValueForIs.pm
version: '2.4000'
Moose::Exception::IsaDoesNotDoTheRole:
file: lib/Moose/Exception/IsaDoesNotDoTheRole.pm
version: '2.4000'
Moose::Exception::IsaLacksDoesMethod:
file: lib/Moose/Exception/IsaLacksDoesMethod.pm
version: '2.4000'
Moose::Exception::LazyAttributeNeedsADefault:
file: lib/Moose/Exception/LazyAttributeNeedsADefault.pm
version: '2.4000'
Moose::Exception::Legacy:
file: lib/Moose/Exception/Legacy.pm
version: '2.4000'
Moose::Exception::MOPAttributeNewNeedsAttributeName:
file: lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm
version: '2.4000'
Moose::Exception::MatchActionMustBeACodeRef:
file: lib/Moose/Exception/MatchActionMustBeACodeRef.pm
version: '2.4000'
Moose::Exception::MessageParameterMustBeCodeRef:
file: lib/Moose/Exception/MessageParameterMustBeCodeRef.pm
version: '2.4000'
Moose::Exception::MetaclassIsAClassNotASubclassOfGivenMetaclass:
file: lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm
version: '2.4000'
Moose::Exception::MetaclassIsARoleNotASubclassOfGivenMetaclass:
file: lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm
version: '2.4000'
Moose::Exception::MetaclassIsNotASubclassOfGivenMetaclass:
file: lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm
version: '2.4000'
Moose::Exception::MetaclassMustBeASubclassOfMooseMetaClass:
file: lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm
version: '2.4000'
Moose::Exception::MetaclassMustBeASubclassOfMooseMetaRole:
file: lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm
version: '2.4000'
Moose::Exception::MetaclassMustBeDerivedFromClassMOPClass:
file: lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm
version: '2.4000'
Moose::Exception::MetaclassNotLoaded:
file: lib/Moose/Exception/MetaclassNotLoaded.pm
version: '2.4000'
Moose::Exception::MetaclassTypeIncompatible:
file: lib/Moose/Exception/MetaclassTypeIncompatible.pm
version: '2.4000'
Moose::Exception::MethodExpectedAMetaclassObject:
file: lib/Moose/Exception/MethodExpectedAMetaclassObject.pm
version: '2.4000'
Moose::Exception::MethodExpectsFewerArgs:
file: lib/Moose/Exception/MethodExpectsFewerArgs.pm
version: '2.4000'
Moose::Exception::MethodExpectsMoreArgs:
file: lib/Moose/Exception/MethodExpectsMoreArgs.pm
version: '2.4000'
Moose::Exception::MethodModifierNeedsMethodName:
file: lib/Moose/Exception/MethodModifierNeedsMethodName.pm
version: '2.4000'
Moose::Exception::MethodNameConflictInRoles:
file: lib/Moose/Exception/MethodNameConflictInRoles.pm
version: '2.4000'
Moose::Exception::MethodNameNotFoundInInheritanceHierarchy:
file: lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm
version: '2.4000'
Moose::Exception::MethodNameNotGiven:
file: lib/Moose/Exception/MethodNameNotGiven.pm
version: '2.4000'
Moose::Exception::MustDefineAMethodName:
file: lib/Moose/Exception/MustDefineAMethodName.pm
version: '2.4000'
Moose::Exception::MustDefineAnAttributeName:
file: lib/Moose/Exception/MustDefineAnAttributeName.pm
version: '2.4000'
Moose::Exception::MustDefineAnOverloadOperator:
file: lib/Moose/Exception/MustDefineAnOverloadOperator.pm
version: '2.4000'
Moose::Exception::MustHaveAtLeastOneValueToEnumerate:
file: lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm
version: '2.4000'
Moose::Exception::MustPassAHashOfOptions:
file: lib/Moose/Exception/MustPassAHashOfOptions.pm
version: '2.4000'
Moose::Exception::MustPassAMooseMetaRoleInstanceOrSubclass:
file: lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm
version: '2.4000'
Moose::Exception::MustPassAPackageNameOrAnExistingClassMOPPackageInstance:
file: lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm
version: '2.4000'
Moose::Exception::MustPassEvenNumberOfArguments:
file: lib/Moose/Exception/MustPassEvenNumberOfArguments.pm
version: '2.4000'
Moose::Exception::MustPassEvenNumberOfAttributeOptions:
file: lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm
version: '2.4000'
Moose::Exception::MustProvideANameForTheAttribute:
file: lib/Moose/Exception/MustProvideANameForTheAttribute.pm
version: '2.4000'
Moose::Exception::MustSpecifyAtleastOneMethod:
file: lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm
version: '2.4000'
Moose::Exception::MustSpecifyAtleastOneRole:
file: lib/Moose/Exception/MustSpecifyAtleastOneRole.pm
version: '2.4000'
Moose::Exception::MustSpecifyAtleastOneRoleToApplicant:
file: lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm
version: '2.4000'
Moose::Exception::MustSupplyAClassMOPAttributeInstance:
file: lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm
version: '2.4000'
Moose::Exception::MustSupplyADelegateToMethod:
file: lib/Moose/Exception/MustSupplyADelegateToMethod.pm
version: '2.4000'
Moose::Exception::MustSupplyAMetaclass:
file: lib/Moose/Exception/MustSupplyAMetaclass.pm
version: '2.4000'
Moose::Exception::MustSupplyAMooseMetaAttributeInstance:
file: lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm
version: '2.4000'
Moose::Exception::MustSupplyAnAccessorTypeToConstructWith:
file: lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm
version: '2.4000'
Moose::Exception::MustSupplyAnAttributeToConstructWith:
file: lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm
version: '2.4000'
Moose::Exception::MustSupplyArrayRefAsCurriedArguments:
file: lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm
version: '2.4000'
Moose::Exception::MustSupplyPackageNameAndName:
file: lib/Moose/Exception/MustSupplyPackageNameAndName.pm
version: '2.4000'
Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion:
file: lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm
version: '2.4000'
Moose::Exception::NeitherAttributeNorAttributeNameIsGiven:
file: lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm
version: '2.4000'
Moose::Exception::NeitherClassNorClassNameIsGiven:
file: lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm
version: '2.4000'
Moose::Exception::NeitherRoleNorRoleNameIsGiven:
file: lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm
version: '2.4000'
Moose::Exception::NeitherTypeNorTypeNameIsGiven:
file: lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm
version: '2.4000'
Moose::Exception::NoAttributeFoundInSuperClass:
file: lib/Moose/Exception/NoAttributeFoundInSuperClass.pm
version: '2.4000'
Moose::Exception::NoBodyToInitializeInAnAbstractBaseClass:
file: lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm
version: '2.4000'
Moose::Exception::NoCasesMatched:
file: lib/Moose/Exception/NoCasesMatched.pm
version: '2.4000'
Moose::Exception::NoConstraintCheckForTypeConstraint:
file: lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm
version: '2.4000'
Moose::Exception::NoDestructorClassSpecified:
file: lib/Moose/Exception/NoDestructorClassSpecified.pm
version: '2.4000'
Moose::Exception::NoImmutableTraitSpecifiedForClass:
file: lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm
version: '2.4000'
Moose::Exception::NoParentGivenToSubtype:
file: lib/Moose/Exception/NoParentGivenToSubtype.pm
version: '2.4000'
Moose::Exception::OnlyInstancesCanBeCloned:
file: lib/Moose/Exception/OnlyInstancesCanBeCloned.pm
version: '2.4000'
Moose::Exception::OperatorIsRequired:
file: lib/Moose/Exception/OperatorIsRequired.pm
version: '2.4000'
Moose::Exception::OverloadConflictInSummation:
file: lib/Moose/Exception/OverloadConflictInSummation.pm
version: '2.4000'
Moose::Exception::OverloadRequiresAMetaClass:
file: lib/Moose/Exception/OverloadRequiresAMetaClass.pm
version: '2.4000'
Moose::Exception::OverloadRequiresAMetaMethod:
file: lib/Moose/Exception/OverloadRequiresAMetaMethod.pm
version: '2.4000'
Moose::Exception::OverloadRequiresAMetaOverload:
file: lib/Moose/Exception/OverloadRequiresAMetaOverload.pm
version: '2.4000'
Moose::Exception::OverloadRequiresAMethodNameOrCoderef:
file: lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm
version: '2.4000'
Moose::Exception::OverloadRequiresAnOperator:
file: lib/Moose/Exception/OverloadRequiresAnOperator.pm
version: '2.4000'
Moose::Exception::OverloadRequiresNamesForCoderef:
file: lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm
version: '2.4000'
Moose::Exception::OverrideConflictInComposition:
file: lib/Moose/Exception/OverrideConflictInComposition.pm
version: '2.4000'
Moose::Exception::OverrideConflictInSummation:
file: lib/Moose/Exception/OverrideConflictInSummation.pm
version: '2.4000'
Moose::Exception::PackageDoesNotUseMooseExporter:
file: lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm
version: '2.4000'
Moose::Exception::PackageNameAndNameParamsNotGivenToWrap:
file: lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm
version: '2.4000'
Moose::Exception::PackagesAndModulesAreNotCachable:
file: lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm
version: '2.4000'
Moose::Exception::ParameterIsNotSubtypeOfParent:
file: lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm
version: '2.4000'
Moose::Exception::ReferencesAreNotAllowedAsDefault:
file: lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm
version: '2.4000'
Moose::Exception::RequiredAttributeLacksInitialization:
file: lib/Moose/Exception/RequiredAttributeLacksInitialization.pm
version: '2.4000'
Moose::Exception::RequiredAttributeNeedsADefault:
file: lib/Moose/Exception/RequiredAttributeNeedsADefault.pm
version: '2.4000'
Moose::Exception::RequiredMethodsImportedByClass:
file: lib/Moose/Exception/RequiredMethodsImportedByClass.pm
version: '2.4000'
Moose::Exception::RequiredMethodsNotImplementedByClass:
file: lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm
version: '2.4000'
Moose::Exception::Role::Attribute:
file: lib/Moose/Exception/Role/Attribute.pm
version: '2.4000'
Moose::Exception::Role::AttributeName:
file: lib/Moose/Exception/Role/AttributeName.pm
version: '2.4000'
Moose::Exception::Role::Class:
file: lib/Moose/Exception/Role/Class.pm
version: '2.4000'
Moose::Exception::Role::EitherAttributeOrAttributeName:
file: lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm
version: '2.4000'
Moose::Exception::Role::Instance:
file: lib/Moose/Exception/Role/Instance.pm
version: '2.4000'
Moose::Exception::Role::InstanceClass:
file: lib/Moose/Exception/Role/InstanceClass.pm
version: '2.4000'
Moose::Exception::Role::InvalidAttributeOptions:
file: lib/Moose/Exception/Role/InvalidAttributeOptions.pm
version: '2.4000'
Moose::Exception::Role::Method:
file: lib/Moose/Exception/Role/Method.pm
version: '2.4000'
Moose::Exception::Role::ParamsHash:
file: lib/Moose/Exception/Role/ParamsHash.pm
version: '2.4000'
Moose::Exception::Role::Role:
file: lib/Moose/Exception/Role/Role.pm
version: '2.4000'
Moose::Exception::Role::RoleForCreate:
file: lib/Moose/Exception/Role/RoleForCreate.pm
version: '2.4000'
Moose::Exception::Role::RoleForCreateMOPClass:
file: lib/Moose/Exception/Role/RoleForCreateMOPClass.pm
version: '2.4000'
Moose::Exception::Role::TypeConstraint:
file: lib/Moose/Exception/Role/TypeConstraint.pm
version: '2.4000'
Moose::Exception::RoleDoesTheExcludedRole:
file: lib/Moose/Exception/RoleDoesTheExcludedRole.pm
version: '2.4000'
Moose::Exception::RoleExclusionConflict:
file: lib/Moose/Exception/RoleExclusionConflict.pm
version: '2.4000'
Moose::Exception::RoleNameRequired:
file: lib/Moose/Exception/RoleNameRequired.pm
version: '2.4000'
Moose::Exception::RoleNameRequiredForMooseMetaRole:
file: lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm
version: '2.4000'
Moose::Exception::RolesDoNotSupportAugment:
file: lib/Moose/Exception/RolesDoNotSupportAugment.pm
version: '2.4000'
Moose::Exception::RolesDoNotSupportExtends:
file: lib/Moose/Exception/RolesDoNotSupportExtends.pm
version: '2.4000'
Moose::Exception::RolesDoNotSupportInner:
file: lib/Moose/Exception/RolesDoNotSupportInner.pm
version: '2.4000'
Moose::Exception::RolesDoNotSupportRegexReferencesForMethodModifiers:
file: lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm
version: '2.4000'
Moose::Exception::RolesInCreateTakesAnArrayRef:
file: lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm
version: '2.4000'
Moose::Exception::RolesListMustBeInstancesOfMooseMetaRole:
file: lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm
version: '2.4000'
Moose::Exception::SingleParamsToNewMustBeHashRef:
file: lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm
version: '2.4000'
Moose::Exception::TriggerMustBeACodeRef:
file: lib/Moose/Exception/TriggerMustBeACodeRef.pm
version: '2.4000'
Moose::Exception::TypeConstraintCannotBeUsedForAParameterizableType:
file: lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm
version: '2.4000'
Moose::Exception::TypeConstraintIsAlreadyCreated:
file: lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm
version: '2.4000'
Moose::Exception::TypeParameterMustBeMooseMetaType:
file: lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm
version: '2.4000'
Moose::Exception::UnableToCanonicalizeHandles:
file: lib/Moose/Exception/UnableToCanonicalizeHandles.pm
version: '2.4000'
Moose::Exception::UnableToCanonicalizeNonRolePackage:
file: lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm
version: '2.4000'
Moose::Exception::UnableToRecognizeDelegateMetaclass:
file: lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm
version: '2.4000'
Moose::Exception::UndefinedHashKeysPassedToMethod:
file: lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm
version: '2.4000'
Moose::Exception::UnionCalledWithAnArrayRefAndAdditionalArgs:
file: lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm
version: '2.4000'
Moose::Exception::UnionTakesAtleastTwoTypeNames:
file: lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm
version: '2.4000'
Moose::Exception::ValidationFailedForInlineTypeConstraint:
file: lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm
version: '2.4000'
Moose::Exception::ValidationFailedForTypeConstraint:
file: lib/Moose/Exception/ValidationFailedForTypeConstraint.pm
version: '2.4000'
Moose::Exception::WrapTakesACodeRefToBless:
file: lib/Moose/Exception/WrapTakesACodeRefToBless.pm
version: '2.4000'
Moose::Exception::WrongTypeConstraintGiven:
file: lib/Moose/Exception/WrongTypeConstraintGiven.pm
version: '2.4000'
Moose::Exporter:
file: lib/Moose/Exporter.pm
version: '2.4000'
Moose::Intro:
file: lib/Moose/Intro.pod
version: '2.4000'
Moose::Manual:
file: lib/Moose/Manual.pod
version: '2.4000'
Moose::Manual::Attributes:
file: lib/Moose/Manual/Attributes.pod
version: '2.4000'
Moose::Manual::BestPractices:
file: lib/Moose/Manual/BestPractices.pod
version: '2.4000'
Moose::Manual::Classes:
file: lib/Moose/Manual/Classes.pod
version: '2.4000'
Moose::Manual::Concepts:
file: lib/Moose/Manual/Concepts.pod
version: '2.4000'
Moose::Manual::Construction:
file: lib/Moose/Manual/Construction.pod
version: '2.4000'
Moose::Manual::Contributing:
file: lib/Moose/Manual/Contributing.pod
version: '2.4000'
Moose::Manual::Delegation:
file: lib/Moose/Manual/Delegation.pod
version: '2.4000'
Moose::Manual::Delta:
file: lib/Moose/Manual/Delta.pod
version: '2.4000'
Moose::Manual::Exceptions:
file: lib/Moose/Manual/Exceptions.pod
version: '2.4000'
Moose::Manual::Exceptions::Manifest:
file: lib/Moose/Manual/Exceptions/Manifest.pod
version: '2.4000'
Moose::Manual::FAQ:
file: lib/Moose/Manual/FAQ.pod
version: '2.4000'
Moose::Manual::MOP:
file: lib/Moose/Manual/MOP.pod
version: '2.4000'
Moose::Manual::MethodModifiers:
file: lib/Moose/Manual/MethodModifiers.pod
version: '2.4000'
Moose::Manual::MooseX:
file: lib/Moose/Manual/MooseX.pod
version: '2.4000'
Moose::Manual::Resources:
file: lib/Moose/Manual/Resources.pod
version: '2.4000'
Moose::Manual::Roles:
file: lib/Moose/Manual/Roles.pod
version: '2.4000'
Moose::Manual::Support:
file: lib/Moose/Manual/Support.pod
version: '2.4000'
Moose::Manual::Types:
file: lib/Moose/Manual/Types.pod
version: '2.4000'
Moose::Manual::Unsweetened:
file: lib/Moose/Manual/Unsweetened.pod
version: '2.4000'
Moose::Meta::Attribute:
file: lib/Moose/Meta/Attribute.pm
version: '2.4000'
Moose::Meta::Attribute::Native:
file: lib/Moose/Meta/Attribute/Native.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait:
file: lib/Moose/Meta/Attribute/Native/Trait.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::Array:
file: lib/Moose/Meta/Attribute/Native/Trait/Array.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::Bool:
file: lib/Moose/Meta/Attribute/Native/Trait/Bool.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::Code:
file: lib/Moose/Meta/Attribute/Native/Trait/Code.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::Counter:
file: lib/Moose/Meta/Attribute/Native/Trait/Counter.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::Hash:
file: lib/Moose/Meta/Attribute/Native/Trait/Hash.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::Number:
file: lib/Moose/Meta/Attribute/Native/Trait/Number.pm
version: '2.4000'
Moose::Meta::Attribute::Native::Trait::String:
file: lib/Moose/Meta/Attribute/Native/Trait/String.pm
version: '2.4000'
Moose::Meta::Class:
file: lib/Moose/Meta/Class.pm
version: '2.4000'
Moose::Meta::Class::Immutable::Trait:
file: lib/Moose/Meta/Class/Immutable/Trait.pm
version: '2.4000'
Moose::Meta::Instance:
file: lib/Moose/Meta/Instance.pm
version: '2.4000'
Moose::Meta::Method:
file: lib/Moose/Meta/Method.pm
version: '2.4000'
Moose::Meta::Method::Accessor:
file: lib/Moose/Meta/Method/Accessor.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native:
file: lib/Moose/Meta/Method/Accessor/Native.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array:
file: lib/Moose/Meta/Method/Accessor/Native/Array.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::Writer:
file: lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::accessor:
file: lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::clear:
file: lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::count:
file: lib/Moose/Meta/Method/Accessor/Native/Array/count.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::delete:
file: lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::elements:
file: lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::first:
file: lib/Moose/Meta/Method/Accessor/Native/Array/first.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::first_index:
file: lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::get:
file: lib/Moose/Meta/Method/Accessor/Native/Array/get.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::grep:
file: lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::insert:
file: lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::is_empty:
file: lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::join:
file: lib/Moose/Meta/Method/Accessor/Native/Array/join.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::map:
file: lib/Moose/Meta/Method/Accessor/Native/Array/map.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::natatime:
file: lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::pop:
file: lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::push:
file: lib/Moose/Meta/Method/Accessor/Native/Array/push.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::reduce:
file: lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::set:
file: lib/Moose/Meta/Method/Accessor/Native/Array/set.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::shallow_clone:
file: lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::shift:
file: lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::shuffle:
file: lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::sort:
file: lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::sort_in_place:
file: lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::splice:
file: lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::uniq:
file: lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Array::unshift:
file: lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Bool::not:
file: lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Bool::set:
file: lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Bool::toggle:
file: lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Bool::unset:
file: lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Code::execute:
file: lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Code::execute_method:
file: lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Collection:
file: lib/Moose/Meta/Method/Accessor/Native/Collection.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Counter::Writer:
file: lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Counter::dec:
file: lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Counter::inc:
file: lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Counter::reset:
file: lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Counter::set:
file: lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash:
file: lib/Moose/Meta/Method/Accessor/Native/Hash.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::Writer:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::accessor:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::clear:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::count:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::defined:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::delete:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::elements:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::exists:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::get:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::is_empty:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::keys:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::kv:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::set:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::shallow_clone:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Hash::values:
file: lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::abs:
file: lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::add:
file: lib/Moose/Meta/Method/Accessor/Native/Number/add.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::div:
file: lib/Moose/Meta/Method/Accessor/Native/Number/div.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::mod:
file: lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::mul:
file: lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::set:
file: lib/Moose/Meta/Method/Accessor/Native/Number/set.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Number::sub:
file: lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Reader:
file: lib/Moose/Meta/Method/Accessor/Native/Reader.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::append:
file: lib/Moose/Meta/Method/Accessor/Native/String/append.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::chomp:
file: lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::chop:
file: lib/Moose/Meta/Method/Accessor/Native/String/chop.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::clear:
file: lib/Moose/Meta/Method/Accessor/Native/String/clear.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::inc:
file: lib/Moose/Meta/Method/Accessor/Native/String/inc.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::length:
file: lib/Moose/Meta/Method/Accessor/Native/String/length.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::match:
file: lib/Moose/Meta/Method/Accessor/Native/String/match.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::prepend:
file: lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::replace:
file: lib/Moose/Meta/Method/Accessor/Native/String/replace.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::String::substr:
file: lib/Moose/Meta/Method/Accessor/Native/String/substr.pm
version: '2.4000'
Moose::Meta::Method::Accessor::Native::Writer:
file: lib/Moose/Meta/Method/Accessor/Native/Writer.pm
version: '2.4000'
Moose::Meta::Method::Augmented:
file: lib/Moose/Meta/Method/Augmented.pm
version: '2.4000'
Moose::Meta::Method::Constructor:
file: lib/Moose/Meta/Method/Constructor.pm
version: '2.4000'
Moose::Meta::Method::Delegation:
file: lib/Moose/Meta/Method/Delegation.pm
version: '2.4000'
Moose::Meta::Method::Destructor:
file: lib/Moose/Meta/Method/Destructor.pm
version: '2.4000'
Moose::Meta::Method::Meta:
file: lib/Moose/Meta/Method/Meta.pm
version: '2.4000'
Moose::Meta::Method::Overridden:
file: lib/Moose/Meta/Method/Overridden.pm
version: '2.4000'
Moose::Meta::Mixin::AttributeCore:
file: lib/Moose/Meta/Mixin/AttributeCore.pm
version: '2.4000'
Moose::Meta::Object::Trait:
file: lib/Moose/Meta/Object/Trait.pm
version: '2.4000'
Moose::Meta::Role:
file: lib/Moose/Meta/Role.pm
version: '2.4000'
Moose::Meta::Role::Application:
file: lib/Moose/Meta/Role/Application.pm
version: '2.4000'
Moose::Meta::Role::Application::RoleSummation:
file: lib/Moose/Meta/Role/Application/RoleSummation.pm
version: '2.4000'
Moose::Meta::Role::Application::ToClass:
file: lib/Moose/Meta/Role/Application/ToClass.pm
version: '2.4000'
Moose::Meta::Role::Application::ToInstance:
file: lib/Moose/Meta/Role/Application/ToInstance.pm
version: '2.4000'
Moose::Meta::Role::Application::ToRole:
file: lib/Moose/Meta/Role/Application/ToRole.pm
version: '2.4000'
Moose::Meta::Role::Attribute:
file: lib/Moose/Meta/Role/Attribute.pm
version: '2.4000'
Moose::Meta::Role::Composite:
file: lib/Moose/Meta/Role/Composite.pm
version: '2.4000'
Moose::Meta::Role::Method:
file: lib/Moose/Meta/Role/Method.pm
version: '2.4000'
Moose::Meta::Role::Method::Conflicting:
file: lib/Moose/Meta/Role/Method/Conflicting.pm
version: '2.4000'
Moose::Meta::Role::Method::Required:
file: lib/Moose/Meta/Role/Method/Required.pm
version: '2.4000'
Moose::Meta::TypeCoercion:
file: lib/Moose/Meta/TypeCoercion.pm
version: '2.4000'
Moose::Meta::TypeCoercion::Union:
file: lib/Moose/Meta/TypeCoercion/Union.pm
version: '2.4000'
Moose::Meta::TypeConstraint:
file: lib/Moose/Meta/TypeConstraint.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Class:
file: lib/Moose/Meta/TypeConstraint/Class.pm
version: '2.4000'
Moose::Meta::TypeConstraint::DuckType:
file: lib/Moose/Meta/TypeConstraint/DuckType.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Enum:
file: lib/Moose/Meta/TypeConstraint/Enum.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Parameterizable:
file: lib/Moose/Meta/TypeConstraint/Parameterizable.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Parameterized:
file: lib/Moose/Meta/TypeConstraint/Parameterized.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Registry:
file: lib/Moose/Meta/TypeConstraint/Registry.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Role:
file: lib/Moose/Meta/TypeConstraint/Role.pm
version: '2.4000'
Moose::Meta::TypeConstraint::Union:
file: lib/Moose/Meta/TypeConstraint/Union.pm
version: '2.4000'
Moose::Object:
file: lib/Moose/Object.pm
version: '2.4000'
Moose::Role:
file: lib/Moose/Role.pm
version: '2.4000'
Moose::Spec::Role:
file: lib/Moose/Spec/Role.pod
version: '2.4000'
Moose::Unsweetened:
file: lib/Moose/Unsweetened.pod
version: '2.4000'
Moose::Util:
file: lib/Moose/Util.pm
version: '2.4000'
Moose::Util::MetaRole:
file: lib/Moose/Util/MetaRole.pm
version: '2.4000'
Moose::Util::TypeConstraints:
file: lib/Moose/Util/TypeConstraints.pm
version: '2.4000'
Moose::Util::TypeConstraints::Builtins:
file: lib/Moose/Util/TypeConstraints/Builtins.pm
version: '2.4000'
Test::Moose:
file: lib/Test/Moose.pm
version: '2.4000'
metaclass:
file: lib/metaclass.pm
version: '2.4000'
oose:
file: lib/oose.pm
version: '2.4000'
recommends:
Data::OptList: '0.110'
requires:
Carp: '1.22'
Class::Load: '0.09'
Class::Load::XS: '0.01'
Data::OptList: '0.107'
Devel::GlobalDestruction: '0'
Devel::OverloadInfo: '0.005'
Devel::StackTrace: '2.03'
Dist::CheckConflicts: '0.02'
Eval::Closure: '0.04'
List::Util: '1.56'
MRO::Compat: '0.05'
Module::Runtime: '0.014'
Module::Runtime::Conflicts: '0.002'
Package::DeprecationManager: '0.11'
Package::Stash: '0.32'
Package::Stash::XS: '0.24'
Params::Util: '1.00'
Scalar::Util: '1.19'
Sub::Exporter: '0.980'
Sub::Util: '1.40'
Try::Tiny: '0.17'
parent: '0.223'
perl: '5.008003'
strict: '1.03'
warnings: '1.03'
resources:
IRC: irc://irc.perl.org/#moose
MailingList: http://lists.perl.org/list/moose.html
bugtracker: https://rt.cpan.org/Dist/Display.html?Name=Moose
homepage: http://moose.perl.org/
repository: git://github.com/moose/Moose.git
version: '2.4000'
x_Dist_Zilla:
perl:
version: '5.042000'
plugins:
-
class: Dist::Zilla::Plugin::EnsurePrereqsInstalled
name: EnsurePrereqsInstalled
version: '0.009'
-
class: Dist::Zilla::Plugin::Git::GatherDir
config:
Dist::Zilla::Plugin::GatherDir:
exclude_filename:
- CONTRIBUTING.pod
- LICENSE
- Makefile.PL
- ppport.h
exclude_match:
- ^t/recipes/(?!basics_genome_overloadingsubtypesandcoercion)
include_dotfiles: 0
prefix: ''
prune_directory: []
root: .
Dist::Zilla::Plugin::Git::GatherDir:
include_untracked: 0
name: Git::GatherDir
version: '2.051'
-
class: Dist::Zilla::Plugin::PPPort
name: PPPort
version: '0.010'
-
class: Dist::Zilla::Plugin::MetaYAML
name: MetaYAML
version: '6.033'
-
class: Dist::Zilla::Plugin::MetaJSON
name: MetaJSON
version: '6.033'
-
class: Dist::Zilla::Plugin::License
name: License
version: '6.033'
-
class: Dist::Zilla::Plugin::ExecDir
name: ExecDir
version: '6.033'
-
class: inc::MakeMaker
config:
Dist::Zilla::Plugin::MakeMaker:
make_path: make
version: '6.033'
Dist::Zilla::Plugin::MakeMaker::Awesome:
version: '0.49'
Dist::Zilla::Role::TestRunner:
default_jobs: '9'
version: '6.033'
name: =inc::MakeMaker
version: ~
-
class: Dist::Zilla::Plugin::ModuleIncluder
config:
Dist::Zilla::Plugin::ModuleIncluder:
background_perl: '5.008003'
blacklist: []
module:
- ExtUtils::HasCompiler
only_deps: 0
Dist::Zilla::Role::ModuleIncluder:
Module::CoreList: '5.20250702'
include_dependencies: 1
version: '0.008'
name: ModuleIncluder
version: '0.008'
-
class: Dist::Zilla::Plugin::Manifest
name: Manifest
version: '6.033'
-
class: Dist::Zilla::Plugin::MetaConfig
name: MetaConfig
version: '6.033'
-
class: inc::SimpleAuthority
name: =inc::SimpleAuthority
version: ~
-
class: Dist::Zilla::Plugin::MetaResources
name: MetaResources
version: '6.033'
-
class: Dist::Zilla::Plugin::UseUnsafeInc
config:
Dist::Zilla::Plugin::UseUnsafeInc:
dot_in_INC: 0
name: UseUnsafeInc
version: '0.002'
-
class: inc::Documentation
name: =inc::Documentation
version: ~
-
class: Dist::Zilla::Plugin::FileFinder::ByName
name: PodModules
version: '6.033'
-
class: Dist::Zilla::Plugin::FileFinder::Filter
name: ModulesSansPod
version: '6.033'
-
class: Dist::Zilla::Plugin::FileFinder::Filter
name: VersionedModules
version: '6.033'
-
class: inc::SimpleProvides
name: =inc::SimpleProvides
version: ~
-
class: Dist::Zilla::Plugin::MetaProvides::Package
config:
Dist::Zilla::Plugin::MetaProvides::Package:
finder:
- ModulesSansPod
finder_objects:
-
class: Dist::Zilla::Plugin::FileFinder::Filter
name: ModulesSansPod
version: '6.033'
include_underscores: 0
Dist::Zilla::Role::MetaProvider::Provider:
$Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004'
inherit_missing: 1
inherit_version: 1
meta_noindex: '1'
Dist::Zilla::Role::ModuleMetadata:
Module::Metadata: '1.000038'
version: '0.006'
name: MetaProvides::Package
version: '2.004003'
-
class: Dist::Zilla::Plugin::MetaNoIndex
name: MetaNoIndex
version: '6.033'
-
class: Dist::Zilla::Plugin::Git::Contributors
config:
Dist::Zilla::Plugin::Git::Contributors:
git_version: 2.49.0
include_authors: 0
include_releaser: 1
order_by: commits
paths: []
name: Git::Contributors
version: '0.038'
-
class: Dist::Zilla::Plugin::SurgicalPodWeaver
config:
Dist::Zilla::Plugin::PodWeaver:
finder:
- ':InstallModules'
- ':PerlExecFiles'
plugins:
-
class: Pod::Weaver::Plugin::EnsurePod5
name: '@CorePrep/EnsurePod5'
version: '4.020'
-
class: Pod::Weaver::Plugin::H1Nester
name: '@CorePrep/H1Nester'
version: '4.020'
-
class: Pod::Weaver::Plugin::SingleEncoding
name: '@Default/SingleEncoding'
version: '4.020'
-
class: Pod::Weaver::Section::Name
name: '@Default/Name'
version: '4.020'
-
class: Pod::Weaver::Section::Version
name: '@Default/Version'
version: '4.020'
-
class: Pod::Weaver::Section::Region
name: '@Default/prelude'
version: '4.020'
-
class: Pod::Weaver::Section::Generic
name: SYNOPSIS
version: '4.020'
-
class: Pod::Weaver::Section::Generic
name: DESCRIPTION
version: '4.020'
-
class: Pod::Weaver::Section::Generic
name: OVERVIEW
version: '4.020'
-
class: Pod::Weaver::Section::Collect
name: ATTRIBUTES
version: '4.020'
-
class: Pod::Weaver::Section::Collect
name: METHODS
version: '4.020'
-
class: Pod::Weaver::Section::Collect
name: FUNCTIONS
version: '4.020'
-
class: Pod::Weaver::Section::Leftovers
name: '@Default/Leftovers'
version: '4.020'
-
class: Pod::Weaver::Section::Region
name: '@Default/postlude'
version: '4.020'
-
class: Pod::Weaver::Section::Authors
name: '@Default/Authors'
version: '4.020'
-
class: Pod::Weaver::Section::Legal
name: '@Default/Legal'
version: '4.020'
-
class: Pod::Weaver::Section::AllowOverride
name: OverrideLegal
version: '0.05'
name: SurgicalPodWeaver
version: '0.0023'
-
class: Dist::Zilla::Plugin::RewriteVersion
config:
Dist::Zilla::Plugin::RewriteVersion:
add_tarball_name: 0
finders:
- VersionedModules
global: 0
skip_version_provider: 0
name: RewriteVersion
version: '0.018'
-
class: Dist::Zilla::Plugin::Git::Describe
name: Git::Describe
version: '0.008'
-
class: inc::ExtractInlineTests
name: =inc::ExtractInlineTests
version: ~
-
class: Dist::Zilla::Plugin::PromptIfStale
config:
Dist::Zilla::Plugin::PromptIfStale:
check_all_plugins: 1
check_all_prereqs: 1
modules: []
phase: release
run_under_travis: 0
skip: []
name: PromptIfStale
version: '0.060'
-
class: Dist::Zilla::Plugin::Test::EOL
config:
Dist::Zilla::Plugin::Test::EOL:
filename: xt/author/eol.t
finder:
- ':ExecFiles'
- ':InstallModules'
- ':TestFiles'
trailing_whitespace: 1
name: Test::EOL
version: '0.19'
-
class: Dist::Zilla::Plugin::PodSyntaxTests
name: PodSyntaxTests
version: '6.033'
-
class: Dist::Zilla::Plugin::Test::NoTabs
config:
Dist::Zilla::Plugin::Test::NoTabs:
filename: xt/author/no-tabs.t
finder:
- ':InstallModules'
- ':ExecFiles'
- ':TestFiles'
name: Test::NoTabs
version: '0.15'
-
class: Dist::Zilla::Plugin::MetaTests
name: MetaTests
version: '6.033'
-
class: Dist::Zilla::Plugin::Test::Kwalitee
config:
Dist::Zilla::Plugin::Test::Kwalitee:
filename: xt/release/kwalitee.t
skiptest:
- use_strict
name: Test::Kwalitee
version: '2.12'
-
class: Dist::Zilla::Plugin::MojibakeTests
name: MojibakeTests
version: '0.8'
-
class: Dist::Zilla::Plugin::RunExtraTests
config:
Dist::Zilla::Role::TestRunner:
default_jobs: '9'
name: RunExtraTests
version: '0.029'
-
class: Dist::Zilla::Plugin::Test::ReportPrereqs
name: Test::ReportPrereqs
version: '0.029'
-
class: Dist::Zilla::Plugin::Test::CPAN::Changes
config:
Dist::Zilla::Plugin::Test::CPAN::Changes:
changelog: Changes
filename: xt/release/cpan-changes.t
name: Test::CPAN::Changes
version: '0.013'
-
class: Dist::Zilla::Plugin::Test::Compile
config:
Dist::Zilla::Plugin::Test::Compile:
bail_out_on_fail: '1'
fail_on_warning: author
fake_home: 0
filename: xt/release/00-compile.t
module_finder:
- ':InstallModules'
needs_display: 0
phase: develop
script_finder:
- ':PerlExecFiles'
skips:
- ^Class::MOP::Attribute$
- ^Class::MOP::Class$
- ^Class::MOP::Method::Accessor$
- ^Class::MOP::Method::Constructor$
- ^Class::MOP::Method::Inlined$
- ^Class::MOP::Method::Wrapped$
- ^Class::MOP::Mixin::HasAttributes$
- ^Class::MOP::Module$
- ^Class::MOP::Package$
- ^Moose::Meta::Attribute$
- ^Moose::Meta::Attribute::Native$
- ^Moose::Meta::Mixin::AttributeCore$
- ^Moose::Meta::Role::Attribute$
- ^Moose::Meta::TypeConstraint::Class$
- ^Moose::Meta::TypeConstraint::DuckType$
- ^Moose::Meta::TypeConstraint::Enum$
- ^Moose::Meta::TypeConstraint::Parameterizable$
- ^Moose::Meta::TypeConstraint::Parameterized$
- ^Moose::Meta::TypeConstraint::Role$
- ^Moose::Meta::TypeConstraint::Union$
switch: []
name: Test::Compile
version: '2.058'
-
class: Dist::Zilla::Plugin::CheckVersionIncrement
name: CheckVersionIncrement
version: '0.121750'
-
class: Dist::Zilla::Plugin::Test::ChangesHasContent
name: Test::ChangesHasContent
version: '0.011'
-
class: Dist::Zilla::Plugin::Substitute
name: Substitute
version: '0.008'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: runtime
type: requires
name: Prereqs
version: '6.033'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: test
type: requires
name: TestRequires
version: '6.033'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: configure
type: requires
name: ConfigureRequires
version: '6.033'
-
class: Dist::Zilla::Plugin::Prereqs::AuthorDeps
name: Prereqs::AuthorDeps
version: '0.007'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: develop
type: requires
name: DevelopRequires
version: '6.033'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: runtime
type: recommends
name: RuntimeRecommends
version: '6.033'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: runtime
type: suggests
name: RuntimeSuggests
version: '6.033'
-
class: Dist::Zilla::Plugin::Conflicts
name: Conflicts
version: '0.20'
-
class: Dist::Zilla::Plugin::Test::CheckBreaks
config:
Dist::Zilla::Plugin::Test::CheckBreaks:
conflicts_module:
- Module::Runtime::Conflicts
- Moose::Conflicts
no_forced_deps: 0
Dist::Zilla::Role::ModuleMetadata:
Module::Metadata: '1.000038'
version: '0.006'
name: Test::CheckBreaks
version: '0.020'
-
class: inc::CheckAuthorDeps
name: =inc::CheckAuthorDeps
version: ~
-
class: inc::CheckDelta
name: =inc::CheckDelta
version: ~
-
class: Dist::Zilla::Plugin::Git::Remote::Check
name: Git::Remote::Check
version: 0.1.2
-
class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch
config:
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
name: Git::CheckFor::CorrectBranch
version: '0.014'
-
class: Dist::Zilla::Plugin::Git::Check
config:
Dist::Zilla::Plugin::Git::Check:
untracked_files: die
Dist::Zilla::Role::Git::DirtyFiles:
allow_dirty: []
allow_dirty_match: []
changelog: Changes
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
name: Git::Check
version: '2.051'
-
class: Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts
config:
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
name: Git::CheckFor::MergeConflicts
version: '0.014'
-
class: Dist::Zilla::Plugin::Run::AfterBuild
config:
Dist::Zilla::Plugin::Run::Role::Runner:
fatal_errors: 1
quiet: 1
run:
- "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> ....
version: '0.050'
name: .ackrc
version: '0.050'
-
class: Dist::Zilla::Plugin::TestRelease
name: TestRelease
version: '6.033'
-
class: Dist::Zilla::Plugin::UploadToCPAN
name: UploadToCPAN
version: '6.033'
-
class: Dist::Zilla::Plugin::CopyFilesFromRelease
config:
Dist::Zilla::Plugin::CopyFilesFromRelease:
filename:
- Changes
match: []
name: CopyChanges
version: '0.007'
-
class: Dist::Zilla::Plugin::CopyFilesFromRelease
config:
Dist::Zilla::Plugin::CopyFilesFromRelease:
filename:
- LICENSE
- ppport.h
match: []
name: CopyFilesFromRelease
version: '0.007'
-
class: Dist::Zilla::Plugin::Regenerate::AfterReleasers
config:
Dist::Zilla::Plugin::Regenerate::AfterReleasers:
plugins:
- CopyFilesFromRelease
Dist::Zilla::Role::Regenerator:
$Dist::Zilla::Role::Regenerator::VERSION: '0.001003'
name: Regenerate::AfterReleasers
version: '0.001003'
-
class: Dist::Zilla::Plugin::ReadmeAnyFromPod
config:
Dist::Zilla::Role::FileWatcher:
version: '0.006'
name: ReadmeAnyFromPod
version: '0.163250'
-
class: Dist::Zilla::Plugin::Git::Commit
config:
Dist::Zilla::Plugin::Git::Commit:
add_files_in: []
commit_msg: '%N-%v%t%n%n%c'
signoff: 0
Dist::Zilla::Role::Git::DirtyFiles:
allow_dirty:
- CONTRIBUTING.pod
- Changes
- LICENSE
- ppport.h
allow_dirty_match: []
changelog: Changes
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
Dist::Zilla::Role::Git::StringFormatter:
time_zone: local
name: 'release snapshot'
version: '2.051'
-
class: Dist::Zilla::Plugin::Git::Tag
config:
Dist::Zilla::Plugin::Git::Tag:
branch: ~
changelog: Changes
signed: 0
tag: '2.4000'
tag_format: '%v'
tag_message: '%v%t'
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
Dist::Zilla::Role::Git::StringFormatter:
time_zone: local
name: Git::Tag
version: '2.051'
-
class: Dist::Zilla::Plugin::BumpVersionAfterRelease
config:
Dist::Zilla::Plugin::BumpVersionAfterRelease:
finders:
- VersionedModules
global: 0
munge_makefile_pl: 1
name: BumpVersionAfterRelease
version: '0.018'
-
class: Dist::Zilla::Plugin::NextRelease
name: NextRelease
version: '6.033'
-
class: Dist::Zilla::Plugin::Git::Commit
config:
Dist::Zilla::Plugin::Git::Commit:
add_files_in: []
commit_msg: 'increment $VERSION after %v release'
signoff: 0
Dist::Zilla::Role::Git::DirtyFiles:
allow_dirty:
- Changes
allow_dirty_match:
- (?^u:^lib/.*\.pm$)
changelog: Changes
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
Dist::Zilla::Role::Git::StringFormatter:
time_zone: local
name: 'increment version'
version: '2.051'
-
class: Dist::Zilla::Plugin::Git::Push
config:
Dist::Zilla::Plugin::Git::Push:
push_to:
- origin
remotes_must_exist: 1
Dist::Zilla::Role::Git::Repo:
git_version: 2.49.0
repo_root: .
name: Git::Push
version: '2.051'
-
class: inc::GenerateDocs
name: =inc::GenerateDocs
version: ~
-
class: inc::Clean
name: =inc::Clean
version: ~
-
class: Dist::Zilla::Plugin::ConfirmRelease
name: ConfirmRelease
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':InstallModules'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':IncModules'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':TestFiles'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':ExtraTestFiles'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':ExecFiles'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':PerlExecFiles'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':ShareFiles'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':MainModule'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':AllFiles'
version: '6.033'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':NoFiles'
version: '6.033'
zilla:
class: Dist::Zilla::Dist::Builder
config:
is_trial: 0
version: '6.033'
x_authority: cpan:STEVAN
x_breaks:
Catalyst: '<= 5.90049999'
Config::MVP: '<= 2.200004'
Devel::REPL: '<= 1.003020'
Dist::Zilla: '<= 5.043'
Dist::Zilla::Plugin::Git: '<= 2.016'
Fey: '<= 0.36'
Fey::ORM: '<= 0.42'
File::ChangeNotify: '<= 0.15'
HTTP::Throwable: '<= 0.017'
KiokuDB: '<= 0.51'
Markdent: '<= 0.16'
Mason: '<= 2.18'
Moose::Autobox: '<= 0.15'
MooseX::ABC: '<= 0.05'
MooseX::Aliases: '<= 0.08'
MooseX::AlwaysCoerce: '<= 0.13'
MooseX::App: '<= 1.22'
MooseX::Attribute::Deflator: '<= 2.1.7'
MooseX::Attribute::Dependent: '<= 1.1.3'
MooseX::Attribute::Prototype: '<= 0.10'
MooseX::AttributeHelpers: '<= 0.22'
MooseX::AttributeIndexes: '<= 1.0.0'
MooseX::AttributeInflate: '<= 0.02'
MooseX::CascadeClearing: '<= 0.03'
MooseX::ClassAttribute: '<= 0.26'
MooseX::Constructor::AllErrors: '<= 0.021'
MooseX::Declare: '<= 0.35'
MooseX::FollowPBP: '<= 0.02'
MooseX::Getopt: '<= 0.56'
MooseX::InstanceTracking: '<= 0.04'
MooseX::LazyRequire: '<= 0.06'
MooseX::Meta::Attribute::Index: '<= 0.04'
MooseX::Meta::Attribute::Lvalue: '<= 0.05'
MooseX::Method::Signatures: '<= 0.44'
MooseX::MethodAttributes: '<= 0.22'
MooseX::NonMoose: '<= 0.24'
MooseX::Object::Pluggable: '<= 0.0011'
MooseX::POE: '<= 0.214'
MooseX::Params::Validate: '<= 0.05'
MooseX::PrivateSetters: '<= 0.03'
MooseX::Role::Cmd: '<= 0.06'
MooseX::Role::Parameterized: '<= 1.00'
MooseX::Role::WithOverloading: '<= 0.14'
MooseX::Runnable: '<= 0.03'
MooseX::Scaffold: '<= 0.05'
MooseX::SemiAffordanceAccessor: '<= 0.05'
MooseX::SetOnce: '<= 0.100473'
MooseX::Singleton: '<= 0.25'
MooseX::SlurpyConstructor: '<= 1.1'
MooseX::Storage: '<= 0.42'
MooseX::StrictConstructor: '<= 0.12'
MooseX::Traits: '<= 0.11'
MooseX::Types: '<= 0.19'
MooseX::Types::Parameterizable: '<= 0.05'
MooseX::Types::Set::Object: '<= 0.03'
MooseX::Types::Signal: '<= 1.101930'
MooseX::UndefTolerant: '<= 0.11'
Net::Twitter: '<= 4.01041'
PRANG: '<= 0.14'
Pod::Elemental: '<= 0.093280'
Pod::Weaver: '<= 3.101638'
Reaction: '<= 0.002003'
Test::Able: '<= 0.10'
Test::CleanNamespaces: '<= 0.03'
Test::Moose::More: '<= 0.022'
Test::TempDir: '<= 0.05'
Throwable: '<= 0.102080'
namespace::autoclean: '<= 0.08'
x_contributors:
- 'Upasana Shukla <me@upasana.me>'
- 'Graham Knop <haarg@haarg.org>'
- 'Matt S Trout <mst@shadowcat.co.uk>'
- 'Tomas Doran <bobtfish@bobtfish.net>'
- 'Ricardo Signes <rjbs@cpan.org>'
- 'Guillermo Roditi <groditi@gmail.com>'
- 'John Napiorkowski <jjnapiork@cpan.org>'
- 'Aankhen <aankhen@gmail.com>'
- 'Todd Hepler <thepler@cpan.org>'
- 'Jonathan Rockway <jrockway@cpan.org>'
- 'Gerda Shank <gshank@cpan.org>'
- 'Perlover <perlover@perlover.com>'
- 'Shlomi Fish <shlomif@cpan.org>'
- 'Brad Bowman <bowmanbs@cpan.org>'
- 'Justin Hunter <justin.d.hunter@gmail.com>'
- 'Kent Fredric <kentnl@cpan.org>'
- 'Paul Driver <frodwith@cpan.org>'
- 'Anders Nor Berle <berle@cpan.org>'
- 'Brian Manning <elspicyjack@gmail.com>'
- 'Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>'
- 'gfx <gfuji@cpan.org>'
- 'Jay Hannah <jay@jays.net>'
- 'Lars Dɪá´á´á´á´á´¡ è¿ªææ¯ <daxim@cpan.org>'
- 'Leon Brocard <acme@astray.com>'
- 'Olivier Mengué <dolmen@cpan.org>'
- 'Rafael Kitover <rkitover@cpan.org>'
- 'Christian Hansen <chansen@cpan.org>'
- 'Cory Watson <github@onemogin.com>'
- 'Paul Jamieson Fenwick <pjf@perltraining.com.au>'
- 'Robert Buels <rmb32@cornell.edu>'
- 'Dan Dascalescu <ddascaNOSPAMlescu@gmail.com>'
- 'Marcel Grünauer <hanekomu@gmail.com>'
- 'Scott McWhirter <konobi@cpan.org>'
- 'Ãvar Arnfjörð Bjarmason <avar@cpan.org>'
- 'Daisuke Maki (lestrrat) <daisuke@endeworks.jp>'
- 'Dylan William Hardison <dylan@hardison.net>'
- 'Patrick Donelan <pat@patspam.com>'
- "Stefan O'Rear <stefanor@cox.net>"
- 'Tokuhiro Matsuno <tokuhirom@gp.ath.cx>'
- 'Ash Berlin <ash@cpan.org>'
- 'Christian Walde <walde.christian@gmail.com>'
- 'Chris Weyl <cweyl@alumni.drew.edu>'
- 'Eric Wilhelm <ewilhelm@cpan.org>'
- 'Jess Robinson <jrobinson@cpan.org>'
- 'Marc Mims <marc@questright.com>'
- 'Marcus Ramberg <mramberg@cpan.org>'
- 'Mark Allen <mrallen1@yahoo.com>'
- 'Mateu X Hunter <hunter@missoula.org>'
- 'matthof <rmhofmann@gmail.com>'
- "Robert 'phaylon' Sedlacek <phaylon@cpan.org>"
- 'Zachary Lome <zachary.lome@baml.com>'
- 'Aran Clary Deltac <bluefeet@cpan.org>'
- 'Chip <chip@pobox.com>'
- 'Christopher J. Madsen <perl@cjmweb.net>'
- 'Curtis Jewell <perl@csjewell.fastmail.us>'
- 'Evan Carroll <evan@dealermade.com>'
- 'Mark A. Stratman <stratman@gmail.com>'
- 'Mark Fowler <mark@twoshortplanks.com>'
- 'Matthew Horsfall <alh@cpan.org>'
- 'mauke <l.mai@web.de>'
- 'Michael LaGrasta <michael@lagrasta.com>'
- 'Michael Rykov <mrykov@gmail.com>'
- 'Mike Whitaker <mike@altrion.org>'
- 'Moritz Onken <moritz@cpan.org>'
- 'Nelo Onyiah <io1@sanger.ac.uk>'
- 'Nick Perez <nperez@cpan.org>'
- 'Robert Boone <robo4288@gmail.com>'
- 'Robin V <robinsp-gmail-com@nospam.com>'
- 'rodrigolive <rodrigolive@gmail.com>'
- 'shelling <navyblueshellingford@gmail.com>'
- 'Thomas Sibley <tsibley@cpan.org>'
- 'Tom Hukins <tom@eborcom.com>'
- 'Wallace Reis <reis.wallace@gmail.com>'
- 'Aaron Cohen <aarondcohen@gmail.com>'
- 'Adam J. Foxson <fhoxh@pobox.com>'
- 'Adam Kennedy <adamk@cpan.org>'
- 'Andy Jack <github@veracity.ca>'
- 'Anirvan Chatterjee <anirvan@users.noreply.github.com>'
- 'Ansgar Burchardt <ansgar@43-1.org>'
- 'A. Sinan Unur <nanis@cpan.org>'
- 'Ben Hutton <relequest@cpan.org>'
- 'Brendan Byrd <Perl@ResonatorSoft.org>'
- 'Chad Granum <exodist@cpan.org>'
- 'Chankey Pathak <chankey007@gmail.com>'
- 'Chia-liang Kao <clkao@clkao.org>'
- 'chromatic <chromatic@wgz.org>'
- 'Daniel Böhmer <post@daniel-boehmer.de>'
- 'Dann <techmemo@gmail.com>'
- 'Dave Romano <dave.romano@ionzero.com>'
- 'David Leadbeater <dgl@dgl.cx>'
- 'David Steinbrunner <dsteinbrunner@MountainBook-Pro.local>'
- 'dmaestro <dmaestro@users.noreply.github.com>'
- 'E. Choroba <choroba@matfyz.cz>'
- 'franck cuny <franck@lumberjaph.net>'
- 'Frew Schmidt <frioux@gmail.com>'
- 'gregor herrmann <gregoa@debian.org>'
- 'hakim <hakim.cassimally@gmail.com>'
- 'Henry Van Styn <vanstyn@cpan.org>'
- 'James Marca <james@activimetrics.com>'
- 'Jason May <jason.a.may@gmail.com>'
- 'Jay Allen <jay@endevver.com>'
- 'Jay Kuri <jayk@jay-kuris-macbook.local>'
- 'Jeff Bisbee <jbisbee@biz.(none)>'
- 'Jens Berthold <jens@jebecs.de>'
- 'Jesse Vincent <jesse@cpan.org>'
- 'joel <joel@fysh.org>'
- 'John Douglas Porter <jdporter@cpan.org>'
- 'John Goulah <jgoulah@cpan.org>'
- 'Justin DeVuyst <justin@devuyst.com>'
- 'Kang-min Liu <gugod@gugod.org>'
- 'Leon Timmermans <fawaka@gmail.com>'
- "Mark O Grady <mark.o'grady@broadbean.com>"
- 'Matt Kraai <kraai@ftbfs.org>'
- 'Michael Schout <mschout@gkg.net>'
- 'Nathan Gray <kolibrie@graystudios.org>'
- 'Olaf Alders <oalders@cpan.org>'
- 'Olof Johansson <olof@ethup.se>'
- 'Paul Cochrane <paul@liekut.de>'
- 'PaweÅ Murias <pawelmurias@gmail.com>'
- 'Pedro Melo <melo@simplicidade.org>'
- 'Peter Shangov <pshangov@yahoo.com>'
- 'Philippe Bruhat (BooK) <book@cpan.org>'
- 'Philipp Gortan <mephinet@gmx.net>'
- 'Phillip Smith <ps@phillipadsmith.com>'
- 'Piotr Roszatycki <piotr.roszatycki@gmail.com>'
- 'pktm <pktm@users.noreply.github.com>'
- 'rouzier <rouzier@gmail.com>'
- 'Sam Vilain <sam.vilain@catalyst.net.nz>'
- 'sherrardb <32931314+sherrardb@users.noreply.github.com>'
- 'Simon Reinhardt <simon.reinhardt@stud.uni-regensburg.de>'
- 'sue spence <virtuallysue@gmail.com>'
- 'Tuomas Jormola <tj@solitudo.net>'
- 'wickline <m-s-w-github@wickline.org>'
- 'Yanick Champoux <yanick@cpan.org>'
- 'Zoffix Znet <cpan@zoffix.com>'
x_documentation:
- Moose::Manual
- Moose::Manual::Attributes
- Moose::Manual::BestPractices
- Moose::Manual::Classes
- Moose::Manual::Concepts
- Moose::Manual::Construction
- Moose::Manual::Contributing
- Moose::Manual::Delegation
- Moose::Manual::Delta
- Moose::Manual::Exceptions
- Moose::Manual::FAQ
- Moose::Manual::MOP
- Moose::Manual::MethodModifiers
- Moose::Manual::MooseX
- Moose::Manual::Resources
- Moose::Manual::Roles
- Moose::Manual::Support
- Moose::Manual::Types
- Moose::Manual::Unsweetened
- Moose::Cookbook
- Moose::Cookbook::Basics::BankAccount_MethodModifiersAndSubclassing
- Moose::Cookbook::Basics::BinaryTree_AttributeFeatures
- Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild
- Moose::Cookbook::Basics::Company_Subtypes
- Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent
- Moose::Cookbook::Basics::Document_AugmentAndInner
- Moose::Cookbook::Basics::Genome_OverloadingSubtypesAndCoercion
- Moose::Cookbook::Basics::HTTP_SubtypesAndCoercion
- Moose::Cookbook::Basics::Immutable
- Moose::Cookbook::Basics::Person_BUILDARGSAndBUILD
- Moose::Cookbook::Basics::Point_AttributesAndSubclassing
- Moose::Cookbook::Extending::Debugging_BaseClassRole
- Moose::Cookbook::Extending::ExtensionOverview
- Moose::Cookbook::Extending::Mooseish_MooseSugar
- Moose::Cookbook::Legacy::Debugging_BaseClassReplacement
- Moose::Cookbook::Legacy::Labeled_AttributeMetaclass
- Moose::Cookbook::Legacy::Table_ClassMetaclass
- Moose::Cookbook::Meta::GlobRef_InstanceMetaclass
- Moose::Cookbook::Meta::Labeled_AttributeTrait
- Moose::Cookbook::Meta::PrivateOrPublic_MethodMetaclass
- Moose::Cookbook::Meta::Table_MetaclassTrait
- Moose::Cookbook::Meta::WhyMeta
- Moose::Cookbook::Roles::ApplicationToInstance
- Moose::Cookbook::Roles::Comparable_CodeReuse
- Moose::Cookbook::Roles::Restartable_AdvancedComposition
- Moose::Cookbook::Snack::Keywords
- Moose::Cookbook::Snack::Types
- Moose::Cookbook::Style
x_generated_by_perl: v5.42.0
x_serialization_backend: 'YAML::Tiny version 1.76'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'
x_use_unsafe_inc: 0
Makefile.PL view on Meta::CPAN
# This Makefile.PL for Moose was generated by
# inc::MakeMaker <self>
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.49.
# Don't edit it but the dist.ini and plugins used to construct it.
use strict;
use warnings;
# Secondary compile testing via ExtUtils::HasCompiler
use lib 'inc';
use ExtUtils::HasCompiler 0.014 'can_compile_loadable_object';
die 'This distribution requires a working compiler'
unless can_compile_loadable_object(quiet => 1);
use ExtUtils::MakeMaker;
check_conflicts();
my %WriteMakefileArgs = (
"ABSTRACT" => "A postmodern object system for Perl 5",
"AUTHOR" => "Stevan Little <stevan\@cpan.org>, Dave Rolsky <autarch\@urth.org>, Jesse Luehrs <doy\@cpan.org>, Shawn M Moore <sartak\@cpan.org>, \x{5d9}\x{5d5}\x{5d1}\x{5dc} \x{5e7}\x{5d5}\x{5d2}'\x{5de}\x{5df} (Yuval Kogman) <nothingmuch\@woobling....
"CONFIGURE_REQUIRES" => {
"Dist::CheckConflicts" => "0.02",
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Moose",
"EXE_FILES" => [
"bin/moose-outdated"
],
"LICENSE" => "perl",
"NAME" => "Moose",
"OBJECT" => "xs/Attribute\$(OBJ_EXT) xs/AttributeCore\$(OBJ_EXT) xs/Class\$(OBJ_EXT) xs/Generated\$(OBJ_EXT) xs/HasAttributes\$(OBJ_EXT) xs/HasMethods\$(OBJ_EXT) xs/Inlined\$(OBJ_EXT) xs/Instance\$(OBJ_EXT) xs/Method\$(OBJ_EXT) xs/Moose\$(OBJ_EXT) ...
"PREREQ_PM" => {
"Carp" => "1.22",
"Class::Load" => "0.09",
"Class::Load::XS" => "0.01",
"Data::OptList" => "0.107",
"Devel::GlobalDestruction" => 0,
"Devel::OverloadInfo" => "0.005",
"Devel::StackTrace" => "2.03",
"Dist::CheckConflicts" => "0.02",
"Eval::Closure" => "0.04",
"List::Util" => "1.56",
"MRO::Compat" => "0.05",
"Module::Runtime" => "0.014",
"Module::Runtime::Conflicts" => "0.002",
"Package::DeprecationManager" => "0.11",
"Package::Stash" => "0.32",
"Package::Stash::XS" => "0.24",
"Params::Util" => "1.00",
"Scalar::Util" => "1.19",
"Sub::Exporter" => "0.980",
"Sub::Util" => "1.40",
"Try::Tiny" => "0.17",
"parent" => "0.223",
"strict" => "1.03",
"warnings" => "1.03"
},
"TEST_REQUIRES" => {
"CPAN::Meta::Check" => "0.011",
"CPAN::Meta::Requirements" => 0,
"File::Spec" => 0,
"Module::Metadata" => 0,
"Test::Fatal" => "0.001",
"Test::More" => "0.96",
"Test::Needs" => "0.002010"
},
"VERSION" => "2.4000",
"XS" => {
"xs/Attribute.xs" => "xs/Attribute.c",
"xs/AttributeCore.xs" => "xs/AttributeCore.c",
"xs/Class.xs" => "xs/Class.c",
"xs/Generated.xs" => "xs/Generated.c",
"xs/HasAttributes.xs" => "xs/HasAttributes.c",
"xs/HasMethods.xs" => "xs/HasMethods.c",
"xs/Inlined.xs" => "xs/Inlined.c",
"xs/Instance.xs" => "xs/Instance.c",
"xs/MOP.xs" => "xs/MOP.c",
"xs/Method.xs" => "xs/Method.c",
"xs/Moose.xs" => "xs/Moose.c",
"xs/Package.xs" => "xs/Package.c",
"xs/ToInstance.xs" => "xs/ToInstance.c"
},
"clean" => {
"FILES" => "xs/Attribute\$(OBJ_EXT) xs/AttributeCore\$(OBJ_EXT) xs/Class\$(OBJ_EXT) xs/Generated\$(OBJ_EXT) xs/HasAttributes\$(OBJ_EXT) xs/HasMethods\$(OBJ_EXT) xs/Inlined\$(OBJ_EXT) xs/Instance\$(OBJ_EXT) xs/Method\$(OBJ_EXT) xs/Moose\$(OBJ_EXT)...
},
"test" => {
"TESTS" => "t/*.t t/attributes/*.t t/basics/*.t t/bugs/*.t t/cmop/*.t t/compat/*.t t/examples/*.t t/exceptions/*.t t/immutable/*.t t/metaclasses/*.t t/moose_util/*.t t/native_traits/*.t t/recipes/*.t t/roles/*.t t/test_moose/*.t t/todo_tests/*.t ...
}
);
my %FallbackPrereqs = (
"CPAN::Meta::Check" => "0.011",
"CPAN::Meta::Requirements" => 0,
"Carp" => "1.22",
"Class::Load" => "0.09",
"Class::Load::XS" => "0.01",
"Data::OptList" => "0.107",
"Devel::GlobalDestruction" => 0,
"Devel::OverloadInfo" => "0.005",
"Devel::StackTrace" => "2.03",
"Dist::CheckConflicts" => "0.02",
"Eval::Closure" => "0.04",
"File::Spec" => 0,
"List::Util" => "1.56",
"MRO::Compat" => "0.05",
"Module::Metadata" => 0,
"Module::Runtime" => "0.014",
"Module::Runtime::Conflicts" => "0.002",
"Package::DeprecationManager" => "0.11",
"Package::Stash" => "0.32",
"Package::Stash::XS" => "0.24",
"Params::Util" => "1.00",
"Scalar::Util" => "1.19",
"Sub::Exporter" => "0.980",
"Sub::Util" => "1.40",
"Test::Fatal" => "0.001",
"Test::More" => "0.96",
"Test::Needs" => "0.002010",
"Try::Tiny" => "0.17",
"parent" => "0.223",
"strict" => "1.03",
"warnings" => "1.03"
);
unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
$WriteMakefileArgs{CCFLAGS} = ( $Config::Config{ccflags} || '' ) . ' -I.';
WriteMakefile(%WriteMakefileArgs);
{
package MY;
use Config;
# These two are necessary to keep bmake happy
sub xs_c {
my $self = shift;
my $ret = $self->SUPER::xs_c(@_);
$ret =~ s/\$\*\.xs/\$</g;
$ret =~ s/\$\*\.c\b/\$@/g;
return $ret;
}
sub c_o {
my $self = shift;
my $ret = $self->SUPER::c_o(@_);
$ret =~ s/\$\*\.c\b/\$</g;
$ret =~ s/\$\*\$\(OBJ_EXT\)/\$@/g;
return $ret;
}
sub const_cccmd {
my $ret = shift->SUPER::const_cccmd(@_);
return q{} unless $ret;
if ($Config{cc} =~ /^cl\b/i) {
warn 'you are using MSVC... we may not have gotten some options quite right.';
$ret .= ' /Fo$@';
}
else {
$ret .= ' -o $@';
}
return $ret;
}
sub postamble {
return <<'EOF';
$(OBJECT) : mop.h
EOF
}
}
sub check_conflicts {
if ( eval { require './lib/Moose/Conflicts.pm'; 1; } ) {
if ( eval { Moose::Conflicts->check_conflicts; 1 } ) {
return;
}
else {
my $err = $@;
$err =~ s/^/ /mg;
warn "***\n$err***\n";
}
}
else {
print <<'EOF';
***
Your toolchain doesn't support configure_requires, so Dist::CheckConflicts
hasn't been installed yet. You should check for conflicting modules
manually using the 'moose-outdated' script that is installed with
this distribution once the installation finishes.
***
EOF
}
return if $ENV{AUTOMATED_TESTING} || $ENV{NONINTERACTIVE_TESTING};
# More or less copied from Module::Build
return if $ENV{PERL_MM_USE_DEFAULT};
return unless -t STDIN && ( -t STDOUT || !( -f STDOUT || -c STDOUT ) );
sleep 4;
}
[](http://badge.fury.io/pl/Moose)
[](https://travis-ci.org/moose/Moose)
[](https://coveralls.io/r/moose/Moose?branch=master)
Moose
=====
Moose is a postmodern object system for Perl 5.
Moose on CPAN: [https://metacpan.org/release/Moose]
# vim: set ft=markdown :
## Uncontroversial Items
These items are reasonably well thought out, and can go in any major release.
### RT Tickets
RT#59478/RT#63000 - 0+ overload causes NV conversion on == on perls before
5.14 - this causes comparisons to fail when the number can't fit in an NV
without precision loss. I'd like to fix this in a more general way (forcing
anyone else who might be using == on tc objects to do weird things isn't very
good), although it's hard to test to see what actually works.
### Revise MetaRole API to reunify class/role metaroles:
apply_metaroles(
for => $meta,
roles => {
attribute => [...],
class => [...],
role_attribute => [ ... ],
}
);
If the $meta is a class, we apply the roles to the class. If it's a role, we
hold onto them and apply them as part of applying the role to a class.
To make this all work nicely, we'll probably want to track the original role
where a method was defined, just like we do with attributes currently. We'll
also need to store method modifiers with their original role, which may mean
adding some sort of Moose::Meta::Role::MethodModifier class.
For each role-specific thing (methods, attributes, etc.) we should allow a
`role_attribute`, `role_method`, etc. key. The common case will be that the
metaroles are intended for the consuming class, but we should allow for
metaroles on the role's metaobjects as well.
### Deprecate old-style Moose extensions
Moose extensions that work by calling `Moose->init_meta(metaclass =>
'Some::Custom::Metaclass', ...)` during their own `init_meta` should be
deprecated, so they can be removed later (this should fix the issues with
`init_meta` generation in Moose::Exporter, see RT51561)
This needs to wait until the previous fix gets in, since it will hopefully
eliminate the need to write custom `init_meta` methods entirely.
### Attributes in roles need to be able to participate in role composition
Right now, this fails with no decent workaround:
package R1;
use Moose::Role;
has foo => (is => 'ro');
package R2;
use Moose::Role;
with 'R1';
requires 'foo';
package C;
use Moose;
with 'R2';
Role attributes really need to be able to participate in role-role combination.
This should also fix "with 'Role1', 'Role2'" being broken when Role1 implements
a method as an accessor and Role2 requires that method, but at least in that
case you can split it into two 'with' statements with minimal loss of
functionality.
### Method modifiers in roles should silently add 'requires' for them
This shouldn't be a functionality change, just a better error message (and
better introspectability). This shouldn't happen if the role already contains a
method by that name, so it'll depend on the previous fix going in (so "has foo
=> (is => 'ro'); around foo => sub { }" doesn't produce a 'requires' entry).
### has +foo in roles
There's no actual reason for this not to work, and it gets asked often enough
that we really should just do it at some point.
## Needs Thought
These are things we think are good ideas, but they need more fleshing out.
### Actual API for metaclass extensions
Right now, the only way to bundle multiple metaclass traits is via
Moose::Exporter. This is unhelpful if you want to apply the extension to a
metaclass object rather than a class you're actually writing. We should come up
with an API for doing this.
### MooseX::NonMoose in core
I think all of the actual issues are solved at this point. The only issue is
the (necessary) implementation weirdness - it sets up multiple inheritance
between the non-Moose class and Moose::Object, and it installs a custom
constructor method at 'extends' time (although perhaps this could be solved by
moving some of the logic back into Moose::Object::new?). Other than that, it
handles everything transparently as far as I can tell.
### Fix attribute and method metaclass compatibility
So i got this wrong when rewriting it last year - right now, metaclass compat
checks the default attribute and method metaclasses, which is wrong. This means
that if a parent class does "use MooseX::FollowPBP", then attributes declared
in a subclass will get PBP-style accessors, which is quite surprising.
On the other hand, sometimes metaclasses might need to be able to say "I'm
going to assume that all of my attributes at least inherit from this custom
class", so we might need to split it into "default specified by the user" and
"default specified by the metaclass" and only do compat checking on the second?
I'm not actually sure this is a valid use case though.
Something that probably should be taken into account though is attributes and
methods that extend existing attributes or methods from a superclass should
inherit the metaclass of the existing one. Also not sure if this is correct,
but something to think about.
### Rename a bunch of the public API methods
Right now the public API is kind of a mess - we have things like `get_method`
vs `find_method_by_name` (you almost always want to use the latter), there
being no `has_method` equivalent that checks superclasses, `get_method_list`
being public but only returning method names, while `_get_local_methods` is
private (returning method objects), and yet neither of those looks at
superclasses, and basically none of this naming follows any kind of consistent
pattern.
What we really need is a consistent and easy to remember API where the method
that people would think to use first is the method that they actually mean.
Something like renaming `find_method_by_name` to `find_method`, and `get_method` to
`find_local_method` or something along those lines.
### Clean up metaclass constructors
There's a _lot_ of different conventions in here. Some things to consider:
* `new` vs `_new`
* allowing new( 'name', %args ) vs ( name => 'name', %args )
* `Method->wrap` vs `Method->new`
### Move method modifiers out to an external module
Class::Method::Modifiers uses a different method for doing method modifiers,
which I'm not sure why we aren't using in Moose right now. Optionally using
Class::Method::Modifiers::Fast would be even better - it uses Data::Util to
implement XS method modifiers, which could help things a lot.
### Move type constraints out to an external module
There's nothing about our type constraint system that requires being tied to
Moose - it's conceptually an entirely separate system that Moose just happens
to use. Splitting it out into its own thing (that Moose could extend to add
things like role types) would make things conceptually a lot cleaner, and would
let people interested in just the type system have that.
### Merge Class::MOP and Moose
This is a long term goal, but would allow for a lot of things to be cleaned up.
There's a bunch of stuff that's duplicated, and other stuff that's not
implemented as well as it could be (Class::MOP::Method::Wrapped should be a
role, for instance).
### Moose::Util::TypeConstraints vs Moose::Meta::Type{Coercion,Constraint}
The Util module has _way_ too much functionality. It needs to be
refactored so it's a thin sugar layer on top of the meta API. As it
stands now, it does things like parse type names (and determine if
they're valid), manage the registry, and much more.
### Anything with a \_(meta)?class method
Every method that returns a class name needs to become a rw attribute
that can be set via the constructor.
## Things to contemplate
These are ideas we're not sure about. Prototypes are welcome, but we may never
merge the feature.
### Does applying metaroles really need to reinitialize the metaclass?
Seems like the logic that's actually necessary is already contained in
`rebless_instance`, and not reinitializing means that existing attributes and
methods won't be blown away when metaroles are applied.
### Do we want to core namespace::autoclean behavior somehow?
This would add Variable::Magic as a required XS dep (not a huge deal at the
moment, since Sub::Util is also a required XS dep, but it'd be nice for Moose
to be able to be pure perl again at some point in the future).
If we enabled it by default, this would also break things for people who
have introduced Moose into legacy-ish systems where roles are faked using
exporters (since those imported methods would be cleaned).
If we decide we want this, we may want to core it as an option first ("use
Moose -clean" or so), and move to making it the default later.
### Should using -excludes with a role add 'requires' for excluded methods?
It seems to make sense, since otherwise you're violating the role's API
contract.
### Moose "strict" mode
use Moose 'strict'; This would allow us to have all sort of expensive tests
which can be turned off in prod.
### Moose::Philosophy.pod
To explain Moose from a very high level
### moosedoc
We certainly have enough meta-information to make pretty complete POD docs.
## TODO test summary
Note that some of these are fairly old, and may not be things we actually want
to do anymore.
### `t/basics/basic_class_setup.t`
Imports aren't automatically cleaned. Need to think about bringing
namespace::autoclean functionality into core.
### `t/bugs/create_anon_recursion.t`
Loading Moose::Meta::Class (or probably a lot of other metaclasses) before
loading Moose or Class::MOP causes issues (the bootstrapping gets confused).
### `t/bugs/handles_foreign_class_bug.t`
There should be a warning when delegated methods override 'new' (and possibly
others?).
### `t/bugs/role_caller.t`
Role methods should be cloned into classes on composition so that using
caller(0) in a role method uses the class's package, not the role's.
### `t/cmop/metaclass_incompatibility.t`
If a child class is created before a parent class, metaclass compatibility
checks won't run on the child when the parent is created, and so the child
could end up with an incompatible metaclass.
### `t/cmop/modify_parent_method.t`
Modifying parent class methods after a child class has already wrapped them
with a method modifier will cause the child class method to retain the original
method that it wrapped, not the new one it was replaced with.
### `t/immutable/inline_close_over.t`
Initializers and custom error classes still close over metaobjects.
Initializers do it because the initializer has to be passed in the attribute
metaobject as a parameter, and custom error classes can't be automatically
inlined.
### `t/metaclasses/moose_exporter_trait_aliases.t`
Renamed imports aren't cleaned on unimport. For instance:
package Foo;
use Moose has => { -as => 'my_has' };
no Moose;
# Foo still contains my_has
### `t/metaclasses/reinitialize.t`
Special method types can't have method metaroles applied. Applying a method
metarole to a class doesn't apply that role to things like constructors,
accessors, etc.
### `t/roles/method_modifiers.t`
Method modifiers in roles don't support the regex form of method selection.
### `t/roles/role_compose_requires.t`
Accessors for attributes defined in roles don't satisfy role method
requirements (this is detailed above - Attributes in roles need to be able to
participate in role composition).
### `t/todo_tests/exception_reflects_failed_constraint.t`
Type constraint failures should indicate which ancestor constraint failed -
subtype 'Foo', as 'Str', where { length < 5 } should mention Str when passed an
arrayref, but not when passed the string "ArrayRef".
### `t/todo_tests/moose_and_threads.t`
On 5.8, the type constraint name parser isn't thread safe.
### `t/todo_tests/replacing_super_methods.t`
Modifying parent class methods after a child class has already wrapped them
with a override will cause 'super' in the child class to call the original
parent class method, not the one it was overridden with.
### `t/todo_tests/required_role_accessors.t`
Role attribute accessors don't satisfy requires from roles they consume.
### `t/todo_tests/role_insertion_order.t`
Roles don't preserve attribute `insertion_order`.
### `t/todo_tests/various_role_features.t`
* Role attribute accessors don't satisfy requires from roles they consume.
* Role combination should produce a conflict when one role has an actual method
and the other role has an accessor.
* Role attribute accessors should not override methods in the class the role is
applied to.
* Role attribute accessors should be delegated when a class does
handles => 'Role'.
* Delegating to a role doesn't make $class->does('Role') true.
* Method modifier in a role doesn't create a method requirement.
* `Role->meta->has_method('attr_accessor')` is false.
### `t/type_constraints/type_names.t`
Type constraint object constructors don't validate the type name provided.
### MooseX::Aliases in core
Is there any reason why this would be bad? It would certainly make the
implementation a little faster (it can be inlined better).
### MooseX::MethodAttributes in core
discuss
----
## Old todo
Old todo stuff which may be totally out of date.
### DDuncan's Str types
subtype 'Str'
=> as 'Value'
=> where { Encode::is_utf8( $_[0] ) or $_[0] !~ m/[^0x00-0x7F]/x }
=> optimize_as { defined($_[0]) && !ref($_[0]) };
subtype 'Blob'
=> as 'Value'
=> where { !Encode::is_utf8( $_[0] ) }
=> optimize_as { defined($_[0]) && !ref($_[0]) };
### type unions
Add support for doing it with Classes which do not have a type constraint yet
created
### type intersections
Mostly just for Roles
KENTNL is working on this
### inherited slot specs
'does' can be added to,.. but not changed (need type unions for this)
### proxy attributes
a proxied attribute is an attribute which looks like an attribute, talks like
an attribute, smells like an attribute,.. but if you look behind the
curtain,.. its over there.. in that other object
(... probably be a custom metaclass)
### local coerce
[13:16] mst stevan: slight problem with coerce
[13:16] mst I only get to declare it once
[13:17] mst so if I'm trying to declare it cast-style per-source-class rather than per-target-class
[13:17] mst I am extremely screwed
[13:17] stevan yes
[13:17] stevan they are not class specific
[13:18] stevan they are attached to the type constraint itself
[13:18] * stevan ponders anon-coercion-metaobjects
[13:18] mst yes, that's fine
[13:19] mst but when I declare a class
[13:19] mst I want to be able to say "this class coerces to X type via <this>"
[13:19] stevan yeah something like that
[13:19] stevan oh,.. hmm
[13:20] stevan sort of like inflate/deflate?
[13:20] stevan around the accessors?
[13:25] * bluefeet has quit (Remote host closed the connection)
[13:27] mst no
[13:27] mst nothing like that
[13:27] mst like a cast
[13:31] mst stevan: $obj->foo($bar); where 'foo' expects a 'Foo' object
[13:31] mst stevan: is effectively <Foo>$bar, right?
[13:32] mst stevan: I want to be able to say in package Bar
[13:32] mst stevan: coerce_to 'Foo' via { ... };
[13:32] mst etc.
[13:53] stevan hmm
### add support for locally scoped TC
This would borrow from MooseX::TypeLibrary to prefix the TC with the name
of the package. It would then be accesible from the outside as the fully
scoped name, but the local attributes would use it first. (this would need support
in the registry for this).
### look into sugar extensions
Use roles as sugar layer function providers (ala MooseX::AttributeHelpers). This
would allow custom metaclasses to provide roles to extend the sugar syntax with.
(NOTE: Talk to phaylon a bit more on this)
### allow a switch of some kind to optionally turn TC checking off at runtime
The type checks can get expensive and some people have suggested that allowing
the checks to be turned off would be helpful for deploying into performance
intensive systems. Perhaps this can actually be done as an option to `make_immutable`?
### misc. minor bits
* make the errors for TCs use `->message`
* look into localizing the messages too
* make ANON TCs be lazy, so they can possibly be subsituted for the real thing later
* make ANON TCs more introspectable
* add this ...
subtype 'Username',
from 'Str',
where { (/[a-z][a-z0-9]+/i or fail('Invalid character(s)'))
and (length($_) >= 5 or fail('Too short (less than 5 chars)'))
}
on_fail { MyException->throw(value => $_[0], message => $_[1]) };
fail() will just return false unless the call is made via `$tc->check_or_fail($value);`
* and then something like this:
subtype Foo => as Bar => where { ... } => scoped => -global;
subtype Foo => as Bar => where { ... } => scoped => -local;
# or
subtype Foo => as Bar => where { ... } => in __PACKAGE__ ;
# or (not sure if it would be possible)
my $Foo = subtype Bar => where { ... };
### Deep coercion?
[17:10] <autarch> stevan: it should do it if I pass coerce => 1 as part of the attribute definition
[17:12] <stevan> autarch: what I am not 100% sure of is how to tell it to deep coerce and when to not
[17:13] <stevan> cause a basic coerce is from A to B
[17:13] <autarch> hmm
[17:13] <stevan> which is valid for collection types too
[17:13] <stevan> deep coercion is what you are asking for
[17:13] <autarch> yeah
[17:13] <stevan> so perhaps we add deep_coerce => 1
[17:13] <stevan> which will do it
[17:13] <autarch> that's fine for me
[17:13] <stevan> k
`coerce_deeply => 1 # reads better`
### Moose::Meta::TypeConstraint::Parameter{izable,ized}
The relationship between these two classes is very odd. In particular,
this line in Parameterized is insane:
foreach my $type (Moose::Util::TypeConstraints::get_all_parameterizable_types()) {
Why does it need to loop through all parameterizable types? Shouldn't
it know which parameterizable type it "came from"?
author/doc-generator view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use autodie;
# We want to make sure that when we load an exception class we're getting the
# version for the release-to-be, not the installed version.
use blib;
use Module::Runtime qw( require_module );
use Moose::Util qw( english_list find_meta );
use Path::Tiny qw( path );
sub main {
my $exception_dir = path(qw( lib Moose Exception ));
my @classes;
my $iter = $exception_dir->iterator();
while ( my $file = $iter->() ) {
next if $file->is_dir();
my ($class) = $file =~ m{.*(Moose/Exception/.+)\.pm};
$class =~ s{/}{::}g;
require_module($class);
push @classes, $class;
}
print_header();
for my $class (sort @classes) {
print_class_manifest($class);
}
print_footer();
}
sub print_header {
print <<'EOF';
=head1 DESCRIPTION
This document contains a manifest of all the exception classes that are thrown
as Moose internal errors.
=head1 COMMON ELEMENTS
Unless otherwise stated, all classes are subclasses of L<Moose::Exception>.
Similarly, all classes provide the following attribute reader methods:
=head2 $exception->message
This method returns the error message for the exception.
=head2 $exception->trace
This method returns a L<Devel::StackTrace> object.
=head1 EXCEPTION CLASSES
Moose ships with the following exception classes:
EOF
}
sub print_class_manifest {
my $class = shift;
my $meta = find_meta($class) or return;
print '=head2 ' . $class . "\n\n";
my $superclass_text = _superclass_text_for($meta);
my $role_text = _role_text_for($meta);
if ($superclass_text || $role_text) {
print join q{ }, grep { defined } $superclass_text, $role_text;
print "\n\n";
}
print _attribute_text_for($meta);
print "\n";
}
sub _superclass_text_for {
my $meta = shift;
my @superclasses = $meta->superclasses();
if ( !@superclasses ) {
die $meta->name . ' does not have any superclasses!';
}
return unless @superclasses > 1 || $superclasses[0] ne 'Moose::Exception';
return
'This class is a subclass of '
. linked_english_list(@superclasses) . '.';
}
sub _role_text_for {
my $meta = shift;
# The individual members of composite roles will also show up individually
# in the return value of calculate_all_roles()
my @roles = sort { $a cmp $b }
grep { !/\|/ }
map { $_->name() } $meta->calculate_all_roles();
return unless @roles;
# Change to linked_english_list if we ever add POD for each exception role.
my $role_noun = @roles > 1 ? 'roles' : 'role';
return 'This class consumes the ' . english_list(@roles) . " $role_noun.";
}
my %common = map { $_ => 1 } qw( message trace );
sub _attribute_text_for {
my $meta = shift;
for my $attr_name ( keys %common ) {
unless ( $meta->find_attribute_by_name($attr_name) ) {
die $meta->name . " has no $attr_name attribute!";
}
}
my @attributes = sort { $a->name() cmp $b->name() }
grep { !$common{ $_->name() } } $meta->get_all_attributes();
unless (@attributes) {
return "This class has no attributes except for C<message> and C<trace()>.\n";
}
my $text = "This class has the following methods:\n\n";
$text .= "=over 4\n\n";
for my $attr (@attributes) {
$text .= _one_attribute_text( $meta, $attr );
}
$text .= "=back\n";
return $text;
}
sub _one_attribute_text {
my $meta = shift;
my $attr = shift;
my $text = q{};
if ( my $reader = $attr->get_read_method() ) {
$text = '=item * $exception->' . "$reader()\n\n";
if ( $attr->has_type_constraint() ) {
$text .= _type_constraint_text($attr);
}
}
elsif ( $attr->has_handles() ) {
for my $method ( %{ $attr->handles() } ) {
$text .= '=item * $exception->' . "$method()\n\n";
}
}
else {
die 'no read method name or handles for '
. $attr->name() . ' in '
. $meta->name() . '!';
}
if ( $attr->has_documentation() ) {
my $doc = $attr->documentation();
# This ensures that code sections in the documentation are separated
# from preceding text.
$doc =~ s/\n /\n\n /;
$text .= "$doc\n\n";
}
return $text;
}
sub _type_constraint_text {
my $attr = shift;
my $tc = $attr->type_constraint();
return q{} if $tc->name() eq 'Any';
my $tc_name;
if ( $tc->isa('Moose::Meta::TypeConstraint::Class') ) {
$tc_name = 'L<' . $tc->class() . '> object';
}
elsif ( $tc->isa('Moose::Meta::TypeConstraint::Role') ) {
$tc_name = 'object which does the L<' . $tc->class() . '> role';
}
else {
$tc_name = $tc->name() . ' value';
}
my $preposition = $tc_name =~ /^[aeiou]/i ? 'an' : 'a';
return "Returns $preposition $tc_name.\n\n";
}
sub linked_english_list {
my @items = @_;
return unless @items;
return english_list( map {"L<$_>"} @items );
}
sub print_footer {
print "=cut\n";
}
main();
author/extract-inline-tests view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use File::Find::Rule;
use Getopt::Long;
use Test::Inline;
use lib 'inc';
use MyInline;
my $quiet;
GetOptions( 'quiet' => \$quiet );
my $inline = Test::Inline->new(
verbose => !$quiet,
ExtractHandler => 'My::Extract',
ContentHandler => 'My::Content',
OutputHandler => 'My::Output',
);
for my $pod (
File::Find::Rule->file->name(qr/\.pod$/)->in('lib/Moose/Cookbook') ) {
$inline->add($pod);
}
$inline->save;
{
package My::Output;
use Path::Tiny;
sub write {
my $class = shift;
my $name = shift;
my $content = shift;
$name =~ s/^moose_cookbook_//;
path( "t/recipes/$name" )->spew( $content );
return 1;
}
}
author/find-dupe-test-numbers view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use File::Basename qw( basename );
for my $subdir ( glob 't/*' ) {
my %files;
for my $file ( map { basename($_) } glob "$subdir/*.t" ) {
my ($number) = $file =~ /^(\d+)/;
next unless defined $number;
push @{ $files{$number} }, $file;
}
for my $number ( grep { @{ $files{$_} } > 1 } keys %files ) {
print $subdir, "\n";
print ' - ', $_, "\n" for @{ $files{$number} };
print "\n";
}
}
benchmarks/caf_vs_moose.pl view on Meta::CPAN
#!perl
### MODULES
{
package PlainMoose;
use Moose;
has foo => (is => 'rw');
}
{
package MooseImmutable;
use Moose;
has foo => (is => 'rw');
__PACKAGE__->meta->make_immutable();
}
{
package MooseImmutable::NoConstructor;
use Moose;
has foo => (is => 'rw');
__PACKAGE__->meta->make_immutable(inline_constructor => 0);
}
{
package ClassAccessorFast;
use warnings;
use strict;
use base 'Class::Accessor::Fast';
__PACKAGE__->mk_accessors(qw(foo));
}
use Benchmark qw(cmpthese);
use Benchmark ':hireswallclock';
my $moose = PlainMoose->new;
my $moose_immut = MooseImmutable->new;
my $moose_immut_no_const = MooseImmutable::NoConstructor->new;
my $caf = ClassAccessorFast->new;
my $acc_rounds = 100_000;
my $ins_rounds = 100_000;
print "\nSETTING\n";
cmpthese($acc_rounds, {
Moose => sub { $moose->foo(23) },
MooseImmutable => sub { $moose_immut->foo(23) },
MooseImmutableNoConstructor => sub { $moose_immut_no_const->foo(23) },
ClassAccessorFast => sub { $caf->foo(23) },
}, 'noc');
print "\nGETTING\n";
cmpthese($acc_rounds, {
Moose => sub { $moose->foo },
MooseImmutable => sub { $moose_immut->foo },
MooseImmutableNoConstructor => sub { $moose_immut_no_const->foo },
ClassAccessorFast => sub { $caf->foo },
}, 'noc');
my (@moose, @moose_immut, @moose_immut_no_const, @caf_stall);
print "\nCREATION\n";
cmpthese($ins_rounds, {
Moose => sub { push @moose, PlainMoose->new(foo => 23) },
MooseImmutable => sub { push @moose_immut, MooseImmutable->new(foo => 23) },
MooseImmutableNoConstructor => sub { push @moose_immut_no_const, MooseImmutable::NoConstructor->new(foo => 23) },
ClassAccessorFast => sub { push @caf_stall, ClassAccessorFast->new({foo => 23}) },
}, 'noc');
my ( $moose_idx, $moose_immut_idx, $moose_immut_no_const_idx, $caf_idx ) = ( 0, 0, 0, 0 );
print "\nDESTRUCTION\n";
cmpthese($ins_rounds, {
Moose => sub {
$moose[$moose_idx] = undef;
$moose_idx++;
},
MooseImmutable => sub {
$moose_immut[$moose_immut_idx] = undef;
$moose_immut_idx++;
},
MooseImmutableNoConstructor => sub {
$moose_immut_no_const[$moose_immut_no_const_idx] = undef;
$moose_immut_no_const_idx++;
},
ClassAccessorFast => sub {
$caf_stall[$caf_idx] = undef;
$caf_idx++;
},
}, 'noc');
benchmarks/cmop/all.yml view on Meta::CPAN
---
- name: Point classes
classes:
- 'MOP::Point'
- 'MOP::Point3D'
- 'MOP::Immutable::Point'
- 'MOP::Immutable::Point3D'
- 'MOP::Installed::Point'
- 'MOP::Installed::Point3D'
- 'Plain::Point'
- 'Plain::Point3D'
benchmarks:
- class: 'Bench::Construct'
name: object construction
args:
y: 137
- class: 'Bench::Accessor'
name: accessor get
construct:
x: 4
y: 6
accessor: x
- class: 'Bench::Accessor'
name: accessor set
construct:
x: 4
y: 6
accessor: x
accessor_args: [ 5 ]
benchmarks/cmop/foo.pl view on Meta::CPAN
#!perl -wd:NYTProf
# a moose using script for profiling
# Usage: perl bench/profile.pl
require KiokuDB;
benchmarks/cmop/lib/Bench/Accessor.pm view on Meta::CPAN
#!/usr/bin/perl
package Bench::Accessor;
use Moose;
use Moose::Util::TypeConstraints;
eval {
coerce ArrayRef
=> from HashRef
=> via { [ %$_ ] };
};
has class => (
isa => "Str",
is => "ro",
);
has construct => (
isa => "ArrayRef",
is => "ro",
auto_deref => 1,
coerce => 1,
);
has accessor => (
isa => "Str",
is => "ro",
);
has accessor_args => (
isa => "ArrayRef",
is => "ro",
auto_deref => 1,
coerce => 1,
);
sub code {
my $self = shift;
my $obj = $self->class->new( $self->construct );
my @accessor_args = $self->accessor_args;
my $accessor = $self->accessor;
sub { $obj->$accessor( @accessor_args ) };
}
__PACKAGE__;
__END__
benchmarks/cmop/lib/Bench/Construct.pm view on Meta::CPAN
#!/usr/bin/perl
package Bench::Construct;
use Moose;
use Moose::Util::TypeConstraints;
has class => (
isa => "Str",
is => "ro",
);
eval {
coerce ArrayRef
=> from HashRef
=> via { [ %$_ ] };
};
has args => (
isa => "ArrayRef",
is => "ro",
auto_deref => 1,
coerce => 1,
);
sub code {
my $self = shift;
my $class = $self->class;
my @args = $self->args;
sub { my $obj = $class->new( @args ) }
}
__PACKAGE__;
__END__
benchmarks/cmop/lib/Bench/Run.pm view on Meta::CPAN
#!/usr/bin/perl
package Bench::Run;
use Moose;
use Benchmark qw/:hireswallclock :all/;
has classes => (
isa => "ArrayRef",
is => "rw",
auto_deref => 1,
);
has benchmarks => (
isa => "ArrayRef",
is => "rw",
auto_deref => 1,
);
has min_time => (
isa => "Num",
is => "rw",
default => 5,
);
sub run {
my $self = shift;
foreach my $bench ( $self->benchmarks ) {
my $bench_class = delete $bench->{class};
my $name = delete $bench->{name} || $bench_class;
my @bench_args = %$bench;
eval "require $bench_class";
die $@ if $@;
my %res;
foreach my $class ( $self->classes ) {
eval "require $class";
die $@ if $@;
my $b = $bench_class->new( @bench_args, class => $class );
$res{$class} = countit( $self->min_time, $b->code );
}
print "- $name:\n";
cmpthese( \%res );
print "\n";
}
}
__PACKAGE__;
__END__
benchmarks/cmop/lib/MOP/Immutable/Point.pm view on Meta::CPAN
package MOP::Immutable::Point;
use strict;
use warnings;
use metaclass;
__PACKAGE__->meta->add_attribute('x' => (accessor => 'x', default => 10));
__PACKAGE__->meta->add_attribute('y' => (accessor => 'y'));
sub clear {
my $self = shift;
$self->x(0);
$self->y(0);
}
__PACKAGE__->meta->make_immutable;
1;
__END__
benchmarks/cmop/lib/MOP/Immutable/Point3D.pm view on Meta::CPAN
package MOP::Immutable::Point3D;
use strict;
use warnings;
use metaclass;
use base 'MOP::Point';
__PACKAGE__->meta->add_attribute('z' => (accessor => 'z'));
sub clear {
my $self = shift;
$self->SUPER::clear();
$self->z(0);
}
__PACKAGE__->meta->make_immutable;
1;
__END__
benchmarks/cmop/lib/MOP/Installed/Point.pm view on Meta::CPAN
use lib reverse @INC;
package MOP::Installed::Point;
use strict;
use warnings;
use metaclass;
__PACKAGE__->meta->add_attribute('x' => (accessor => 'x', default => 10));
__PACKAGE__->meta->add_attribute('y' => (accessor => 'y'));
sub new {
my $class = shift;
$class->meta->new_object(@_);
}
sub clear {
my $self = shift;
$self->x(0);
$self->y(0);
}
1;
__END__
benchmarks/cmop/lib/MOP/Installed/Point3D.pm view on Meta::CPAN
use lib reverse @INC;
package MOP::Installed::Point3D;
use strict;
use warnings;
use metaclass;
use base 'MOP::Point';
__PACKAGE__->meta->add_attribute('z' => (accessor => 'z'));
sub clear {
my $self = shift;
$self->SUPER::clear();
$self->z(0);
}
1;
__END__
benchmarks/cmop/lib/MOP/Point.pm view on Meta::CPAN
package MOP::Point;
use strict;
use warnings;
use metaclass;
__PACKAGE__->meta->add_attribute('x' => (accessor => 'x', default => 10));
__PACKAGE__->meta->add_attribute('y' => (accessor => 'y'));
sub new {
my $class = shift;
$class->meta->new_object(@_);
}
sub clear {
my $self = shift;
$self->x(0);
$self->y(0);
}
1;
__END__
benchmarks/cmop/lib/MOP/Point3D.pm view on Meta::CPAN
package MOP::Point3D;
use strict;
use warnings;
use metaclass;
use base 'MOP::Point';
__PACKAGE__->meta->add_attribute('z' => (accessor => 'z'));
sub clear {
my $self = shift;
$self->SUPER::clear();
$self->z(0);
}
1;
__END__
benchmarks/cmop/lib/Plain/Point.pm view on Meta::CPAN
#!/usr/bin/perl
package Plain::Point;
use strict;
use warnings;
sub new {
my ( $class, %params ) = @_;
return bless {
x => $params{x} || 10,
y => $params{y},
}, $class;
}
sub x {
my ( $self, @args ) = @_;
if ( @args ) {
$self->{x} = $args[0];
}
return $self->{x};
}
sub y {
my ( $self, @args ) = @_;
if ( @args ) {
$self->{y} = $args[0];
}
return $self->{y};
}
sub clear {
my $self = shift;
@{$self}{qw/x y/} = (0, 0);
}
__PACKAGE__;
__END__
benchmarks/cmop/lib/Plain/Point3D.pm view on Meta::CPAN
#!/usr/bin/perl
package Plain::Point3D;
use strict;
use warnings;
use base 'Plain::Point';
sub new {
my ( $class, %params ) = @_;
my $self = $class->SUPER::new( %params );
$self->{z} = $params{z};
return $self;
}
sub z {
my ( $self, @args ) = @_;
if ( @args ) {
$self->{z} = $args[0];
}
return $self->{z};
}
sub clear {
my $self = shift;
$self->SUPER::clear();
$self->{z} = 0;
}
__PACKAGE__;
__END__
benchmarks/cmop/loading-benchmark.pl view on Meta::CPAN
#!perl -w
use strict;
use Benchmark qw(:all);
my ( $count, $module ) = @ARGV;
$count ||= 10;
$module ||= 'Moose';
my @blib
= qw(-Iblib/lib -Iblib/arch -I../Moose/blib/lib -I../Moose/blib/arch -I../Moose/lib);
$| = 1; # autoflush
print 'Installed: ';
system $^X, '-le', 'require Moose; print $INC{q{Moose.pm}}';
print 'Blead: ';
system $^X, @blib, '-le', 'require Moose; print $INC{q{Moose.pm}}';
cmpthese timethese $count => {
released => sub {
system( $^X, '-e', "require $module" ) == 0 or die;
},
blead => sub {
system( $^X, @blib, '-e', "require $module" ) == 0 or die;
},
};
benchmarks/cmop/profile.pl view on Meta::CPAN
#!perl -w
# Usage: perl bench/profile.pl (no other options including -Mblib are reqired)
use strict;
my $script = 'bench/foo.pl';
my $branch = do {
open my $in, '.git/HEAD' or die "Cannot open .git/HEAD: $!";
my $s = scalar <$in>;
chomp $s;
$s =~ s{^ref: \s+ refs/heads/}{}xms;
$s =~ s{/}{_}xmsg;
$s;
};
print "Profiling $branch ...\n";
my @cmd = ( $^X, '-Iblib/lib', '-Iblib/arch', $script );
print "> @cmd\n";
system(@cmd) == 0 or die "Cannot profile";
@cmd = ( $^X, '-S', 'nytprofhtml', '--out', "nytprof-$branch" );
print "> @cmd\n";
system(@cmd) == 0 or die "Cannot profile";
benchmarks/cmop/run_yml.pl view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/lib";
use YAML::Syck;
use Bench::Run;
my $data = LoadFile( shift || "$FindBin::Bin/all.yml" );
foreach my $bench ( @$data ) {
print "== ", delete $bench->{name}, " ==\n\n";
Bench::Run->new( %$bench )->run;
print "\n\n";
}
benchmarks/immutable.pl view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Benchmark qw[cmpthese];
use Moose::Util::TypeConstraints;
{
package Foo;
use Moose;
Foo->meta->make_immutable(debug => 0);
}
coerce 'Foo'
=> from 'ArrayRef'
=> via { Foo->new(@{$_}) };
{
package Foo::Normal;
use Moose;
has 'default' => (is => 'rw', default => 10);
has 'default_sub' => (is => 'rw', default => sub { [] });
has 'lazy' => (is => 'rw', default => 10, lazy => 1);
has 'required' => (is => 'rw', required => 1);
has 'weak_ref' => (is => 'rw', weak_ref => 1);
has 'type_constraint' => (is => 'rw', isa => 'Foo');
has 'coercion' => (is => 'rw', isa => 'Foo', coerce => 1);
package Bar::Normal;
use Moose;
extends 'Foo::Normal';
has 'default_w_type_constraint' => (
is => 'rw',
isa => 'Int',
default => 10,
);
}
{
package Foo::Immutable;
use Moose;
has 'default' => (is => 'rw', default => 10);
has 'default_sub' => (is => 'rw', default => sub { [] });
has 'lazy' => (is => 'rw', default => 10, lazy => 1);
has 'required' => (is => 'rw', required => 1);
has 'weak_ref' => (is => 'rw', weak_ref => 1);
has 'type_constraint' => (is => 'rw', isa => 'Foo');
has 'coercion' => (is => 'rw', isa => 'Foo', coerce => 1);
#sub BUILD {
# # ...
#}
Foo::Immutable->meta->make_immutable(debug => 0);
package Bar::Immutable;
use Moose;
extends 'Foo::Immutable';
has 'default_w_type_constraint' => (
is => 'rw',
isa => 'Int',
default => 10,
);
Bar::Immutable->meta->make_immutable(debug => 0);
}
#__END__
my $foo = Foo->new;
cmpthese(10_000,
{
'normal' => sub {
Foo::Normal->new(
required => 'BAR',
type_constraint => $foo,
coercion => [],
weak_ref => {},
);
},
'immutable' => sub {
Foo::Immutable->new(
required => 'BAR',
type_constraint => $foo,
coercion => [],
weak_ref => {},
);
},
}
);