CONTRIBUTING 000664 001750 001750 6146 12406050620 14277 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 NAME
CONTRIBUTING
DESCRIPTION
If you're reading this document, that means you might be thinking about
helping me out with this project. Thanks!
Here's some ways you could help out:
* Bug reports
Found a bug? Great! (Well, not so great I suppose.)
The place to report them is . Don't e-mail me
about it, as your e-mail is more than likely to get lost amongst the
spam.
An example script clearly demonstrating the bug (preferably written
using Test::More) would be greatly appreciated.
* Patches
If you've found a bug and written a fix for it, even better!
Generally speaking you should check out the latest copy of the code
from the source repository rather than using the CPAN distribution.
The file META.yml should contain a link to the source repository. If
not, then try or submit a bug report.
(As far as I'm concerned the lack of a link is a bug.) Many of my
distributions are also mirrored at .
To submit the patch, do a pull request on GitHub or Bitbucket, or
attach a diff file to a bug report. Unless otherwise stated, I'll
assume that your contributions are licensed under the same terms as
the rest of the project.
(If using git, feel free to work in a branch. For Mercurial, I'd
prefer bookmarks within the default branch.)
* Documentation
If there's anything unclear in the documentation, please submit this
as a bug report or patch as above.
Non-toy example scripts that I can bundle would also be appreciated.
* Translation
Translations of documentation would be welcome.
For translations of error messages and other strings embedded in the
code, check with me first. Sometimes the English strings may not in
a stable state, so it would be a waste of time translating them.
Coding Style
I tend to write using something approximating the Allman style, using
tabs for indentation and Unix-style line breaks.
*
*
I nominally encode all source files as UTF-8, though in practice most of
them use a 7-bit-safe ASCII-compatible subset of UTF-8.
AUTHOR
Toby Inkster .
COPYRIGHT AND LICENCE
Copyright (c) 2012-2014 by Toby Inkster.
CONTRIBUTING is available under three different licences permitting its
redistribution: the CC-BY-SA_UK-2.0 licence, plus the same licences as
Perl itself, which is distributed under the GNU General Public Licence
version 1, and the Artistic Licence.
This file is licensed under the Creative Commons Attribution-ShareAlike
2.0 UK: England & Wales License. To view a copy of this license, visit
.
This file is free software; you can redistribute it and/or modify it
under the same terms as the Perl 5 programming language system itself.
COPYRIGHT 000664 001750 001750 3267 12406050621 13742 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: MooX-Traits
Upstream-Contact: Toby Inkster (TOBYINK)
Source: https://metacpan.org/release/MooX-Traits
Files: README
lib/MooX/Traits.pm
lib/MooX/Traits/Util.pm
t/01basic.t
t/04onebyone.t
Copyright: This software is copyright (c) 2014 by Toby Inkster.
License: GPL-1.0+ or Artistic-1.0
Files: Changes
META.json
META.yml
dist.ini
doap.ttl
Copyright: Copyright 2014 Toby Inkster.
License: GPL-1.0+ or Artistic-1.0
Files: CONTRIBUTING
INSTALL
LICENSE
Makefile.PL
Copyright: Unknown
License: Unknown
Files: COPYRIGHT
CREDITS
SIGNATURE
Copyright: None
License: public-domain
Files: t/from-moosex-traits/class.t
t/from-moosex-traits/subclass.t
t/from-moosex-traits/with-traits.t
Copyright: This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, and Karen Etheridge.
License: GPL-1.0+ or Artistic-1.0
Files: t/02packagevariant.t
t/from-moosex-traits/parameterized.t
Copyright: This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, Tomas Doran, and Karen Etheridge.
License: GPL-1.0+ or Artistic-1.0
Files: t/03roletiny.t
t/from-moosex-traits/basic.t
Copyright: This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, Tomas Doran, Rafael Kitover, and Karen Etheridge.
License: GPL-1.0+ or Artistic-1.0
License: Artistic-1.0
This software is Copyright (c) 2014 by the copyright holder(s).
This is free software, licensed under:
The Artistic License 1.0
License: GPL-1.0
This software is Copyright (c) 2014 by the copyright holder(s).
This is free software, licensed under:
The GNU General Public License, Version 1, February 1989
CREDITS 000664 001750 001750 156 12406050617 13446 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 Maintainer:
- Toby Inkster (TOBYINK)
Thanks:
- Torsten Raudssus (GETTY)
Changes 000664 001750 001750 1320 12406050617 13733 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 MooX-Traits
===========
Created: 2014-05-24
Home page:
Bug tracker:
Maintainer: Toby Inkster (TOBYINK)
0.005 2014-09-16
[ Packaging ]
- Add link to #moose on IRC.
- Fix repo link.
0.004 2014-05-29
[ Bug Fixes ]
- MooX::Traits::Util should also load UNIVERSAL::DOES.
0.003 2014-05-29
[ Bug Fixes ]
- Load UNIVERSAL::DOES on Perls older than 5.10.
0.002 2014-05-29
- Added: Bundle a MooX::Traits::Util module, broadly similar to
MooseX::Traits::Util.
- Added: Provide a `new_class_with_traits_one_by_one` function.
Torsten Raudssus++
0.001 2014-05-25 Initial release
INSTALL 000664 001750 001750 1665 12406050616 13504 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 Installing MooX-Traits should be straightforward.
INSTALLATION WITH CPANMINUS
If you have cpanm, you only need one line:
% cpanm MooX::Traits
If you are installing into a system-wide directory, you may need to pass
the "-S" flag to cpanm, which uses sudo to install the module:
% cpanm -S MooX::Traits
INSTALLATION WITH THE CPAN SHELL
Alternatively, if your CPAN shell is set up, you should just be able to
do:
% cpan MooX::Traits
MANUAL INSTALLATION
As a last resort, you can manually install it. Download the tarball and
unpack it.
Consult the file META.json for a list of pre-requisites. Install these
first.
To build MooX-Traits:
% perl Makefile.PL
% make && make test
Then install it:
% make install
If you are installing into a system-wide directory, you may need to run:
% sudo make install
LICENSE 000664 001750 001750 43655 12406050616 13505 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 This software is copyright (c) 2014 by Toby Inkster.
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) 2014 by Toby Inkster.
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.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
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.
Copyright (C) 19yy
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
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.
, 1 April 1989
Ty Coon, President of Vice
That's all there is to it!
--- The Artistic License 1.0 ---
This software is Copyright (c) 2014 by Toby Inkster.
This is free software, licensed under:
The 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.
- "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 ftp.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) accompany any non-standard executables with their corresponding Standard
Version executables, giving the non-standard executables non-standard
names, and clearly documenting 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.
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 whomever generated them, and may be sold
commercially, and may be aggregated with this Package.
7. C or perl subroutines supplied by you and linked into this Package shall not
be considered part of this Package.
8. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
MANIFEST 000664 001750 001750 616 12406050621 13553 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 CONTRIBUTING
COPYRIGHT
CREDITS
Changes
INSTALL
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README
SIGNATURE
dist.ini
doap.ttl
lib/MooX/Traits.pm
lib/MooX/Traits/Util.pm
t/01basic.t
t/02packagevariant.t
t/03roletiny.t
t/04onebyone.t
t/from-moosex-traits/basic.t
t/from-moosex-traits/class.t
t/from-moosex-traits/parameterized.t
t/from-moosex-traits/subclass.t
t/from-moosex-traits/with-traits.t
META.json 000664 001750 001750 4507 12406050620 14065 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 {
"abstract" : "automatically apply roles at object creation time",
"author" : [
"Toby Inkster (TOBYINK) "
],
"dynamic_config" : 1,
"generated_by" : "Dist::Inkt::Profile::TOBYINK version 0.021, CPAN::Meta::Converter version 2.140640",
"keywords" : [],
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "MooX-Traits",
"no_index" : {
"directory" : [
"eg",
"examples",
"inc",
"t",
"xt"
]
},
"optional_features" : {},
"prereqs" : {
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "6.17"
}
},
"develop" : {
"recommends" : {
"Dist::Inkt::Profile::TOBYINK" : "0.001"
}
},
"runtime" : {
"recommends" : {
"Moo::Role" : "0"
},
"requires" : {
"Exporter::Shiny" : "0",
"Module::Runtime" : "0",
"Role::Tiny" : "1.000000",
"Scalar::Util" : "0",
"perl" : "5.006000"
}
},
"test" : {
"recommends" : {
"Moo" : "0",
"MooseX::Role::Parameterized" : "0",
"Package::Variant" : "0",
"Test::Fatal" : "0"
},
"requires" : {
"Test::More" : "0.96",
"Test::Requires" : "0"
}
}
},
"provides" : {
"MooX::Traits" : {
"file" : "lib/MooX/Traits.pm",
"version" : "0.005"
},
"MooX::Traits::Util" : {
"file" : "lib/MooX/Traits/Util.pm",
"version" : "0.005"
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "http://rt.cpan.org/Dist/Display.html?Queue=MooX-Traits"
},
"homepage" : "https://metacpan.org/release/MooX-Traits",
"license" : [
"http://dev.perl.org/licenses/"
],
"repository" : {
"type" : "git",
"url" : "git://github.com/tobyink/p5-moox-traits.git",
"web" : "https://github.com/tobyink/p5-moox-traits"
},
"x_IRC" : "irc://irc.perl.org/#moose",
"x_identifier" : "http://purl.org/NET/cpan-uri/dist/MooX-Traits/project"
},
"version" : "0.005"
}
META.yml 000664 001750 001750 2320 12406050620 13704 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 ---
abstract: 'automatically apply roles at object creation time'
author:
- 'Toby Inkster (TOBYINK) '
build_requires:
Test::More: '0.96'
Test::Requires: '0'
configure_requires:
ExtUtils::MakeMaker: '6.17'
dynamic_config: 1
generated_by: 'Dist::Inkt::Profile::TOBYINK version 0.021, CPAN::Meta::Converter version 2.140640'
keywords: []
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: MooX-Traits
no_index:
directory:
- eg
- examples
- inc
- t
- xt
optional_features: {}
provides:
MooX::Traits:
file: lib/MooX/Traits.pm
version: '0.005'
MooX::Traits::Util:
file: lib/MooX/Traits/Util.pm
version: '0.005'
recommends:
Moo::Role: '0'
requires:
Exporter::Shiny: '0'
Module::Runtime: '0'
Role::Tiny: '1.000000'
Scalar::Util: '0'
perl: '5.006000'
resources:
IRC: irc://irc.perl.org/#moose
Identifier: http://purl.org/NET/cpan-uri/dist/MooX-Traits/project
bugtracker: http://rt.cpan.org/Dist/Display.html?Queue=MooX-Traits
homepage: https://metacpan.org/release/MooX-Traits
license: http://dev.perl.org/licenses/
repository: git://github.com/tobyink/p5-moox-traits.git
version: '0.005'
Makefile.PL 000664 001750 001750 14045 12406050620 14434 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 use strict;
use ExtUtils::MakeMaker 6.17;
my $EUMM = eval( $ExtUtils::MakeMaker::VERSION );
my $meta = {
"abstract" => "automatically apply roles at object creation time",
"author" => ["Toby Inkster (TOBYINK) "],
"dynamic_config" => 1,
"generated_by" => "Dist::Inkt::Profile::TOBYINK version 0.021, CPAN::Meta::Converter version 2.140640",
"keywords" => [],
"license" => ["perl_5"],
"meta-spec" => {
url => "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
version => 2,
},
"name" => "MooX-Traits",
"no_index" => { directory => ["eg", "examples", "inc", "t", "xt"] },
"prereqs" => {
configure => { requires => { "ExtUtils::MakeMaker" => 6.17 } },
develop => { recommends => { "Dist::Inkt::Profile::TOBYINK" => 0.001 } },
runtime => {
recommends => { "Moo::Role" => 0 },
requires => {
"Exporter::Shiny" => 0,
"Module::Runtime" => 0,
"perl" => "5.006000",
"Role::Tiny" => "1.000000",
"Scalar::Util" => 0,
},
},
test => {
recommends => {
"Moo" => 0,
"MooseX::Role::Parameterized" => 0,
"Package::Variant" => 0,
"Test::Fatal" => 0,
},
requires => { "Test::More" => 0.96, "Test::Requires" => 0 },
},
},
"provides" => {
"MooX::Traits" => { file => "lib/MooX/Traits.pm", version => 0.005 },
"MooX::Traits::Util" => { file => "lib/MooX/Traits/Util.pm", version => 0.005 },
},
"release_status" => "stable",
"resources" => {
bugtracker => { web => "http://rt.cpan.org/Dist/Display.html?Queue=MooX-Traits" },
homepage => "https://metacpan.org/release/MooX-Traits",
license => ["http://dev.perl.org/licenses/"],
repository => {
type => "git",
url => "git://github.com/tobyink/p5-moox-traits.git",
web => "https://github.com/tobyink/p5-moox-traits",
},
x_identifier => "http://purl.org/NET/cpan-uri/dist/MooX-Traits/project",
x_IRC => "irc://irc.perl.org/#moose",
},
"version" => 0.005,
};
my %dynamic_config;
do {
$meta->{prereqs}{runtime}{requires}{'UNIVERSAL::DOES'} = 0 if $] < 5.010000;
};
my %WriteMakefileArgs = (
ABSTRACT => $meta->{abstract},
AUTHOR => ($EUMM >= 6.5702 ? $meta->{author} : $meta->{author}[0]),
DISTNAME => $meta->{name},
VERSION => $meta->{version},
EXE_FILES => [ map $_->{file}, values %{ $meta->{x_provides_scripts} || {} } ],
NAME => do { my $n = $meta->{name}; $n =~ s/-/::/g; $n },
test => { TESTS => "t/*.t t/from-moosex-traits/*.t" },
%dynamic_config,
);
$WriteMakefileArgs{LICENSE} = $meta->{license}[0] if $EUMM >= 6.3001;
sub deps
{
my %r;
for my $stage (@_)
{
for my $dep (keys %{$meta->{prereqs}{$stage}{requires}})
{
next if $dep eq 'perl';
my $ver = $meta->{prereqs}{$stage}{requires}{$dep};
$r{$dep} = $ver if !exists($r{$dep}) || $ver >= $r{$dep};
}
}
\%r;
}
my ($build_requires, $configure_requires, $runtime_requires, $test_requires);
if ($EUMM >= 6.6303)
{
$WriteMakefileArgs{BUILD_REQUIRES} ||= deps('build');
$WriteMakefileArgs{CONFIGURE_REQUIRES} ||= deps('configure');
$WriteMakefileArgs{TEST_REQUIRES} ||= deps('test');
$WriteMakefileArgs{PREREQ_PM} ||= deps('runtime');
}
elsif ($EUMM >= 6.5503)
{
$WriteMakefileArgs{BUILD_REQUIRES} ||= deps('build', 'test');
$WriteMakefileArgs{CONFIGURE_REQUIRES} ||= deps('configure');
$WriteMakefileArgs{PREREQ_PM} ||= deps('runtime');
}
elsif ($EUMM >= 6.52)
{
$WriteMakefileArgs{CONFIGURE_REQUIRES} ||= deps('configure');
$WriteMakefileArgs{PREREQ_PM} ||= deps('runtime', 'build', 'test');
}
else
{
$WriteMakefileArgs{PREREQ_PM} ||= deps('configure', 'build', 'test', 'runtime');
}
{
my ($minperl) = reverse sort(
grep defined && /^[0-9]+(\.[0-9]+)?$/,
map $meta->{prereqs}{$_}{requires}{perl},
qw( configure build runtime )
);
if (defined($minperl))
{
die "Installing $meta->{name} requires Perl >= $minperl"
unless $] >= $minperl;
$WriteMakefileArgs{MIN_PERL_VERSION} ||= $minperl
if $EUMM >= 6.48;
}
}
sub FixMakefile
{
return unless -d 'inc';
my $file = shift;
local *MAKEFILE;
open MAKEFILE, "< $file" or die "FixMakefile: Couldn't open $file: $!; bailing out";
my $makefile = do { local $/; };
close MAKEFILE or die $!;
$makefile =~ s/\b(test_harness\(\$\(TEST_VERBOSE\), )/$1'inc', /;
$makefile =~ s/( -I\$\(INST_ARCHLIB\))/ -Iinc$1/g;
$makefile =~ s/( "-I\$\(INST_LIB\)")/ "-Iinc"$1/g;
$makefile =~ s/^(FULLPERL = .*)/$1 "-Iinc"/m;
$makefile =~ s/^(PERL = .*)/$1 "-Iinc"/m;
open MAKEFILE, "> $file" or die "FixMakefile: Couldn't open $file: $!; bailing out";
print MAKEFILE $makefile or die $!;
close MAKEFILE or die $!;
}
my $mm = WriteMakefile(%WriteMakefileArgs);
FixMakefile($mm->{FIRST_MAKEFILE} || 'Makefile');
exit(0);
README 000664 001750 001750 5340 12406050616 13325 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 NAME
MooX::Traits - automatically apply roles at object creation time
SYNOPSIS
Given some roles:
package Role;
use Moo::Role;
has foo => ( is => 'ro', required => 1 );
And a class:
package Class;
use Moo;
with 'MooX::Traits';
Apply the roles to the class:
my $class = Class->with_traits('Role');
Then use your customized class:
my $object = $class->new( foo => 42 );
$object->isa('Class'); # true
$object->does('Role'); # true
$object->foo; # 42
DESCRIPTION
Was any of the SYNOPSIS unexpected? Basically, this module is the same
thing as MooseX::Traits and MouseX::Traits, only for Moo. *Quelle
surprise*, right?
Methods
`$class->with_traits( @traits )`
Return a new class name with the traits applied.
`$class->new_with_traits(%args, traits => \@traits)`
`new_with_traits` can also take a hashref, e.g.:
my $instance = $class->new_with_traits({ traits => \@traits, foo => 'bar' });
This method exists for compatibility with the MooseX and MouseX
equivalents of this module, but generally speaking you should prefer
to use `with_traits`.
`$class->_trait_namespace`
This returns undef, but you can override it in your class to
automatically prepend a namespace to supplied traits.
This differs slightly from the MooseX and MouseX versions of this
module which have `_trait_namespace` as an attribute instead of a
method.
Compatibility
Although called MooX::Traits, this module actually uses Role::Tiny, so
doesn't really require Moo. If you use it in a non-Moo class, you should
be able to safely consume any Role::Tiny-based traits.
If you use it in a Moo class, you should also be able to consume
Moo::Role-based traits and Moose::Role-based traits.
Package::Variant and MooseX::Role::Parameterized roles should be usable;
just provide a hashref of arguments:
$class->with_traits( $param_role => \%args )->new( ... )
BUGS
Please report any bugs to
.
SEE ALSO
MooX::Traits::Util.
Moo::Role, Role::Tiny.
MooseX::Traits, MouseX::Traits.
AUTHOR
Toby Inkster .
COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the
same terms as the Perl 5 programming language system itself.
DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
SIGNATURE 000664 001750 001750 4237 12406050621 13731 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 This file contains message digests of all files listed in MANIFEST,
signed via the Module::Signature module, version 0.73.
To verify the content in this distribution, first make sure you have
Module::Signature installed, then type:
% cpansign -v
It will check each file's integrity, as well as the signature's
validity. If "==> Signature verified OK! <==" is not displayed,
the distribution may already have been compromised, and you should
not run its Makefile.PL or Build.PL.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
SHA1 33317486c4fa2cf7fec85bf92ed38ac0f64233a0 CONTRIBUTING
SHA1 8d268790097b5a85aaf71b52eff5113d54e1e8fa COPYRIGHT
SHA1 0ad7d008b15a7ff0409d5482c6430cbd084fd06e CREDITS
SHA1 fa5cab7eb140e461c9fc2eba9833d7adaa4b22c0 Changes
SHA1 11f9e802209b6051237857029df435cca7fd190b INSTALL
SHA1 34f5e12514b91055de4b164a1f2327ef5c30ba53 LICENSE
SHA1 2aa50479d84da60384bed45b9fbf907f5dbb501a MANIFEST
SHA1 bdd7fc6be2b60d6872e70a7193b3ea1a377f71a0 META.json
SHA1 d69e0fd20613e360592cbfa3b5b086d54deb6c5b META.yml
SHA1 00c23bdff5acbad5dc29f30ffad327463a79c5c6 Makefile.PL
SHA1 0ff081e05e108a5c168f3d8f86ba169948372061 README
SHA1 17c0fc1832dd20e7483268f7769412b325dbe406 dist.ini
SHA1 7a304cd66ab61d1eafed8a7dea3484ed04c6ea34 doap.ttl
SHA1 a3cc81397d66026d99241285d782ca30b66dfafd lib/MooX/Traits.pm
SHA1 f6134f07787ae86d82c1ec4a9721e9f3f2907706 lib/MooX/Traits/Util.pm
SHA1 370b3c37cf8098397528244d9da20855de32b9f4 t/01basic.t
SHA1 b11948927058ea0c45ae48c2d2cd1e962f89d561 t/02packagevariant.t
SHA1 f13af5d89420320e2a2912830998ca44a76ff2d0 t/03roletiny.t
SHA1 15673794dc290d70e70f1f25a4dbb31e1ed0a5db t/04onebyone.t
SHA1 8bc56f3829a35c427a109df636a3a3aa09e462a4 t/from-moosex-traits/basic.t
SHA1 e5ec359ed8ce1969544addbf368b6ad9c12c59ac t/from-moosex-traits/class.t
SHA1 36391e32c7c9b7a316aa402a20234bc89e34e89e t/from-moosex-traits/parameterized.t
SHA1 47038a93283b1cc62a75aaaa52a5f22ff13cc2fc t/from-moosex-traits/subclass.t
SHA1 cd9531b27260e9061e737fde05bd251b72d84a31 t/from-moosex-traits/with-traits.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEARECAAYFAlQYUZEACgkQzr+BKGoqfTmongCgqbC6yHx0vugYbDL2hyJNzA5t
KJsAnREEL/VLw+/cInf93a7xeU6pbN0B
=u4V1
-----END PGP SIGNATURE-----
dist.ini 000664 001750 001750 75 12406050616 14051 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 ;;class='Dist::Inkt::Profile::TOBYINK'
;;name='MooX-Traits'
doap.ttl 000664 001750 001750 13730 12406050620 14132 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005 @prefix cpan-uri: .
@prefix dc: .
@prefix doap: .
@prefix doap-changeset: .
@prefix doap-deps: .
@prefix foaf: .
@prefix rdfs: .
@prefix xsd: .
dc:title "the same terms as the perl 5 programming language system itself".
a doap:Project;
cpan-uri:x_IRC ;
dc:contributor ;
doap-deps:develop-recommendation [
doap-deps:on "Dist::Inkt::Profile::TOBYINK 0.001"^^doap-deps:CpanId;
];
doap-deps:runtime-recommendation [ doap-deps:on "Moo::Role"^^doap-deps:CpanId ];
doap-deps:runtime-requirement [ doap-deps:on "perl 5.006000"^^doap-deps:CpanId ], [ doap-deps:on "Scalar::Util"^^doap-deps:CpanId ], [
doap-deps:on "Role::Tiny 1.000000"^^doap-deps:CpanId;
], [ doap-deps:on "Module::Runtime"^^doap-deps:CpanId ], [ doap-deps:on "Exporter::Shiny"^^doap-deps:CpanId ];
doap-deps:test-recommendation [
doap-deps:on "MooseX::Role::Parameterized"^^doap-deps:CpanId;
], [ doap-deps:on "Package::Variant"^^doap-deps:CpanId ], [ doap-deps:on "Test::Fatal"^^doap-deps:CpanId ], [ doap-deps:on "Moo"^^doap-deps:CpanId ];
doap-deps:test-requirement [ doap-deps:on "Test::More 0.96"^^doap-deps:CpanId ], [ doap-deps:on "Test::Requires"^^doap-deps:CpanId ];
doap:bug-database ;
doap:created "2014-05-24"^^xsd:date;
doap:developer ;
doap:download-page ;
doap:homepage ;
doap:license ;
doap:maintainer ;
doap:name "MooX-Traits";
doap:programming-language "Perl";
doap:release , , , , ;
doap:repository [
a doap:GitRepository;
doap:browse ;
];
doap:shortdesc "automatically apply roles at object creation time".
a doap:Version;
rdfs:label "Initial release";
dc:identifier "MooX-Traits-0.001"^^xsd:string;
dc:issued "2014-05-25"^^xsd:date;
doap-changeset:released-by ;
doap:file-release ;
doap:revision "0.001"^^xsd:string.
a doap:Version;
dc:identifier "MooX-Traits-0.002"^^xsd:string;
dc:issued "2014-05-29"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Bundle a MooX::Traits::Util module, broadly similar to MooseX::Traits::Util.";
], [
a doap-changeset:Addition;
rdfs:label "Provide a `new_class_with_traits_one_by_one` function.";
doap-changeset:thanks ;
];
];
doap-changeset:released-by ;
doap:file-release ;
doap:revision "0.002"^^xsd:string.
a doap:Version;
dc:identifier "MooX-Traits-0.003"^^xsd:string;
dc:issued "2014-05-29"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Load UNIVERSAL::DOES on Perls older than 5.10.";
];
];
doap-changeset:released-by ;
doap:file-release ;
doap:revision "0.003"^^xsd:string.
a doap:Version;
dc:identifier "MooX-Traits-0.004"^^xsd:string;
dc:issued "2014-05-29"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "MooX::Traits::Util should also load UNIVERSAL::DOES.";
];
];
doap-changeset:released-by ;
doap:file-release ;
doap:revision "0.004"^^xsd:string.
a doap:Version;
dc:identifier "MooX-Traits-0.005"^^xsd:string;
dc:issued "2014-09-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Fix repo link.";
], [
a doap-changeset:Packaging;
rdfs:label "Add link to #moose on IRC.";
];
];
doap-changeset:released-by ;
doap:file-release ;
doap:revision "0.005"^^xsd:string.
a foaf:Person;
foaf:name "Torsten Raudssus";
foaf:nick "GETTY";
foaf:page .
a foaf:Person;
foaf:mbox ;
foaf:name "Toby Inkster";
foaf:nick "TOBYINK";
foaf:page .
01basic.t 000664 001750 001750 667 12406050616 14306 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t =pod
=encoding utf-8
=head1 PURPOSE
Test that MooX::Traits compiles.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::More;
use_ok('MooX::Traits');
done_testing;
02packagevariant.t 000664 001750 001750 5625 12406050616 16225 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test that MooX::Traits can compose L-based roles,
and pass arguments to them.
=head1 DEPENDENCIES
This test requires L, L and L.
Otherwise, it will be skipped.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< parameterized.t >> from the L test suite,
by Jonathan Rockway, Tomas Doran, and Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, Tomas Doran, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::Requires { 'Test::Fatal' => '0' };
{ package AAA; use Test::Requires { 'Moo' => '1.000000' } };
{ package BBB; use Test::Requires { 'Package::Variant' => '0' } };
use Test::More;
use Test::Fatal;
plan tests => 11;
{
package Role;
use Moo::Role;
has 'gorge' => (
is => 'ro',
required => 1,
);
}
{
package PRole;
use Package::Variant
importing => ['Moo::Role'],
subs => [ qw(has around before after with) ];
sub make_variant {
my ($class, $target_package, %p) = @_;
has $p{foo} => (
is => 'ro',
required => 1,
);
}
}
{
package Class;
use Moo;
with 'MooX::Traits';
}
is
exception { Class->new; },
undef,
'making class is OK';
is
exception { Class->new_with_traits; },
undef,
'making class with no traits is OK';
my $a;
is
exception {
$a = Class->new_with_traits(
traits => ['PRole' => { foo => 'OHHAI' }],
OHHAI => 'I FIXED THAT FOR YOU',
);
},
undef,
'prole is applied OK';
isa_ok $a, 'Class';
is $a->OHHAI, 'I FIXED THAT FOR YOU', 'OHHAI accessor works';
is
exception {
undef $a;
$a = Class->new_with_traits(
traits => ['PRole' => { foo => 'OHHAI' }, 'Role'],
OHHAI => 'I FIXED THAT FOR YOU',
gorge => 'three rivers',
);
},
undef,
'prole is applied OK along with a normal role';
can_ok $a, 'OHHAI', 'gorge';
is
exception {
undef $a;
$a = Class->new_with_traits(
traits => ['Role', 'PRole' => { foo => 'OHHAI' }],
OHHAI => 'I FIXED THAT FOR YOU',
gorge => 'columbia river',
);
},
undef,
'prole is applied OK along with a normal role (2)';
can_ok $a, 'OHHAI', 'gorge';
is
exception {
undef $a;
$a = Class->new_with_traits(
traits => ['Role' => { bullshit => 'params', go => 'here' }],
gorge => 'i should have just called this foo',
);
},
undef,
'regular roles with args can be applied, but args are ignored';
can_ok $a, 'gorge';
03roletiny.t 000664 001750 001750 4420 12406050616 15103 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test that MooX::Traits can compose L-based roles.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< basic.t >> from the L test suite,
by Jonathan Rockway, Tomas Doran, Rafael Kitover, Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, Tomas Doran, Rafael Kitover, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::More;
my $constructor = sub
{
my $class = shift;
bless { @_==1 ? %{+shift} : @_ }, $class;
};
{ package Trait;
use Role::Tiny;
sub foo { shift->{foo} }
package Class;
use Role::Tiny::With;
*new = $constructor;
my $x = \*new; # no warnings
with 'MooX::Traits';
package Another::Trait;
use Role::Tiny;
sub bar { shift->{bar} }
package Another::Class;
use Role::Tiny::With;
*new = $constructor;
$x = \*new;
with 'MooX::Traits';
sub _trait_namespace { 'Another' }
}
foreach my $trait ( 'Trait', ['Trait' ] ) {
my $instance = Class->new_with_traits( traits => $trait, foo => 'hello' );
isa_ok $instance, 'Class';
can_ok $instance, 'foo';
is $instance->foo, 'hello';
}
{
my $instance = Class->with_traits->new;
isa_ok $instance, 'Class';
ok !$instance->can('foo'), 'this one cannot foo';
}
{
my $instance = Class->with_traits()->new;
isa_ok $instance, 'Class';
ok !$instance->can('foo'), 'this one cannot foo either';
}
{
my $instance = Another::Class->with_traits( 'Trait' )->new( bar => 'bar' );
isa_ok $instance, 'Another::Class';
can_ok $instance, 'bar';
is $instance->bar, 'bar';
}
# try hashref form
{
my $instance = Another::Class->with_traits('Trait')->new({ bar => 'bar' });
isa_ok $instance, 'Another::Class';
can_ok $instance, 'bar';
is $instance->bar, 'bar';
}
{
my $instance = Another::Class->with_traits('Trait', '+Trait')->new(
foo => 'foo',
bar => 'bar',
);
isa_ok $instance, 'Another::Class';
can_ok $instance, 'foo';
can_ok $instance, 'bar';
is $instance->foo, 'foo';
is $instance->bar, 'bar';
}
done_testing;
04onebyone.t 000664 001750 001750 2364 12406050616 15062 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t =pod
=encoding utf-8
=head1 PURPOSE
Test that C works.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::More 0.96;
use Test::Requires { 'Test::Fatal' => 0 };
{
package Foo;
use Role::Tiny;
sub foolishness { 1 };
requires 'barbary_pirates';
}
{
package Bar;
use Role::Tiny;
sub barbary_pirates { 2 };
requires 'foolishness';
}
{
package MyClass;
sub new { bless [], shift }
}
use MooX::Traits::Util -all;
like(
exception { new_class_with_traits_one_by_one( MyClass => qw(Foo Bar) ) },
qr/barbary_pirates/,
'Cannot compose Foo because missing Bar',
);
like(
exception { new_class_with_traits_one_by_one( MyClass => qw(Bar Foo) ) },
qr/foolishness/,
'Cannot compose Bar because missing Foo',
);
my $class = 'MyClass';
is(
exception { $class = new_class_with_traits( MyClass => qw(Foo Bar) ) },
undef,
'Can compose Foo and Bar simultaneously',
);
can_ok($class, qw( new foolishness barbary_pirates ));
done_testing;
Traits.pm 000664 001750 001750 6733 12406050616 15710 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/lib/MooX use 5.006;
use strict;
use warnings;
BEGIN { if ($] < 5.010000) { require UNIVERSAL::DOES } };
package MooX::Traits;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.005';
use Role::Tiny;
sub _trait_namespace
{
();
}
sub with_traits
{
my $class = shift;
return $class unless @_;
require MooX::Traits::Util;
MooX::Traits::Util::new_class_with_traits($class, @_);
}
sub new_with_traits
{
my $class = shift;
my (%args, $pass_as_ref);
if (@_==1 and ref($_[0]) eq 'HASH')
{
%args = %{$_[0]};
$pass_as_ref = !!1;
}
else
{
%args = @_;
$pass_as_ref = !!0;
}
my $traits_arr = delete($args{traits}) || [];
my @traits = ref($traits_arr) ? @$traits_arr : $traits_arr;
$class->with_traits(@traits)->new( $pass_as_ref ? \%args : %args );
}
1;
__END__
=pod
=encoding utf-8
=for stopwords MooseX MouseX prepend
=head1 NAME
MooX::Traits - automatically apply roles at object creation time
=head1 SYNOPSIS
Given some roles:
package Role;
use Moo::Role;
has foo => ( is => 'ro', required => 1 );
And a class:
package Class;
use Moo;
with 'MooX::Traits';
Apply the roles to the class:
my $class = Class->with_traits('Role');
Then use your customized class:
my $object = $class->new( foo => 42 );
$object->isa('Class'); # true
$object->does('Role'); # true
$object->foo; # 42
=head1 DESCRIPTION
Was any of the SYNOPSIS unexpected? Basically, this module is the same
thing as L and L, only for L.
I, right?
=head2 Methods
=over
=item C<< $class->with_traits( @traits ) >>
Return a new class name with the traits applied.
=item C<< $class->new_with_traits(%args, traits => \@traits) >>
C can also take a hashref, e.g.:
my $instance = $class->new_with_traits({ traits => \@traits, foo => 'bar' });
This method exists for compatibility with the MooseX and MouseX
equivalents of this module, but generally speaking you should prefer
to use C.
=item C<< $class->_trait_namespace >>
This returns undef, but you can override it in your class to
automatically prepend a namespace to supplied traits.
This differs slightly from the MooseX and MouseX versions of this
module which have C<_trait_namespace> as an attribute instead of
a method.
=back
=head2 Compatibility
Although called MooX::Traits, this module actually uses L,
so doesn't really require L. If you use it in a non-Moo class,
you should be able to safely consume any Role::Tiny-based traits.
If you use it in a Moo class, you should also be able to consume
Moo::Role-based traits and Moose::Role-based traits.
L and L roles should be
usable; just provide a hashref of arguments:
$class->with_traits( $param_role => \%args )->new( ... )
=head1 BUGS
Please report any bugs to
L.
=head1 SEE ALSO
L.
L,
L.
L,
L.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
basic.t 000664 001750 001750 5103 12406050616 17732 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t/from-moosex-traits ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test that MooX::Traits can compose L-based roles.
=head1 DEPENDENCIES
This test requires L and L.
Otherwise, it will be skipped.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< basic.t >> from the L test suite,
by Jonathan Rockway, Tomas Doran, Rafael Kitover, and Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, Tomas Doran, Rafael Kitover, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::Requires { 'Test::Fatal' => '0' };
use Test::Requires { 'Moo' => '1.000000' };
use Test::More;
use Test::Fatal;
{ package Trait;
use Moo::Role;
has 'foo' => (
is => 'ro',
isa => sub { defined($_[0]) && !ref($_[0]) or die },
required => 1,
);
package Class;
use Moo;
with 'MooX::Traits';
package Another::Trait;
use Moo::Role;
has 'bar' => (
is => 'ro',
isa => sub { defined($_[0]) && !ref($_[0]) or die },
required => 1,
);
package Another::Class;
use Moo;
with 'MooX::Traits';
sub _trait_namespace { 'Another' }
}
foreach my $trait ( 'Trait', ['Trait' ] ) {
my $instance = Class->new_with_traits( traits => $trait, foo => 'hello' );
isa_ok $instance, 'Class';
can_ok $instance, 'foo';
is $instance->foo, 'hello';
}
like
exception { Class->with_traits('Trait')->new; },
qr/required/,
'foo is required';
{
my $instance = Class->with_traits->new;
isa_ok $instance, 'Class';
ok !$instance->can('foo'), 'this one cannot foo';
}
{
my $instance = Class->with_traits()->new;
isa_ok $instance, 'Class';
ok !$instance->can('foo'), 'this one cannot foo either';
}
{
my $instance = Another::Class->with_traits( 'Trait' )->new( bar => 'bar' );
isa_ok $instance, 'Another::Class';
can_ok $instance, 'bar';
is $instance->bar, 'bar';
}
# try hashref form
{
my $instance = Another::Class->with_traits('Trait')->new({ bar => 'bar' });
isa_ok $instance, 'Another::Class';
can_ok $instance, 'bar';
is $instance->bar, 'bar';
}
{
my $instance = Another::Class->with_traits('Trait', '+Trait')->new(
foo => 'foo',
bar => 'bar',
);
isa_ok $instance, 'Another::Class';
can_ok $instance, 'foo';
can_ok $instance, 'bar';
is $instance->foo, 'foo';
is $instance->bar, 'bar';
}
done_testing;
class.t 000664 001750 001750 4054 12406050616 17762 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t/from-moosex-traits ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test MooX::Traits::Util works.
=head1 DEPENDENCIES
This test requires L and L.
Otherwise, it will be skipped.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< class.t >> from the L test suite,
by Jonathan Rockway and Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::Requires { 'Test::Fatal' => '0' };
{ package AAA; use Test::Requires { 'Moo' => '1.000000' } };
use Test::More tests => 10;
{ package Trait;
use Moo::Role;
has 'foo' => (
is => 'ro',
required => 1,
);
package Class;
use Moo;
with 'MooX::Traits';
package Another::Trait;
use Moo::Role;
has 'bar' => (
is => 'ro',
required => 1,
);
package Another::Class;
use Moo;
with 'MooX::Traits';
sub _trait_namespace { 'Another' };
package YetAnother::Class;
use Moo;
# NOT with 'MooX::Traits';
sub _trait_namespace { 'Another' };
}
use MooX::Traits::Util qw(new_class_with_traits);
isnt
exception { new_class_with_traits( 'OH NOES', 'Trait' ); },
undef,
'OH NOES is not a MX::Traits class';
is
exception { new_class_with_traits( 'Moo', 'Trait' ); },
undef,
'Moose::Meta::Class is not a MX::Traits class';
my $class;
is
exception { $class = new_class_with_traits( 'Another::Class' => 'Trait' ); },
undef,
'new_class_with_traits works';
ok $class;
my $instance = $class->new( foo => '42', bar => '24' );
ok not $instance->can('foo');
is $instance->bar, 24;
my $class2;
is
exception { $class2 = new_class_with_traits( 'YetAnother::Class' => 'Trait' ); },
undef,
'new_class_with_traits works';
ok $class2;
my $instance2 = $class2->new( foo => '42', bar => '24' );
is $instance2->foo, 42;
ok not $instance2->can('bar');
parameterized.t 000664 001750 001750 5621 12406050616 21512 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t/from-moosex-traits ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test that MooX::Traits can compose L-based
roles, and pass arguments to them.
=head1 DEPENDENCIES
This test requires L, L and
L.
Otherwise, it will be skipped.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< parameterized.t >> from the L test suite,
by Jonathan Rockway, Tomas Doran, and Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, Tomas Doran, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::Requires { 'Test::Fatal' => '0' };
{ package AAA; use Test::Requires { 'Moo' => '1.000000' } };
{ package BBB; use Test::Requires { 'MooseX::Role::Parameterized' => '0.13' } };
use Test::More;
use Test::Fatal;
plan tests => 11;
{
package Role;
use Moo::Role;
has 'gorge' => (
is => 'ro',
required => 1,
);
}
{
package PRole;
use MooseX::Role::Parameterized;
parameter 'foo' => (
is => 'ro',
required => 1,
);
role {
my $p = shift;
has $p->foo => (
is => 'ro',
required => 1,
);
}
}
{
package Class;
use Moo;
with 'MooX::Traits';
}
is
exception { Class->new; },
undef,
'making class is OK';
is
exception { Class->new_with_traits; },
undef,
'making class with no traits is OK';
my $a;
is
exception {
$a = Class->new_with_traits(
traits => ['PRole' => { foo => 'OHHAI' }],
OHHAI => 'I FIXED THAT FOR YOU',
);
},
undef,
'prole is applied OK';
isa_ok $a, 'Class';
is $a->OHHAI, 'I FIXED THAT FOR YOU', 'OHHAI accessor works';
is
exception {
undef $a;
$a = Class->new_with_traits(
traits => ['PRole' => { foo => 'OHHAI' }, 'Role'],
OHHAI => 'I FIXED THAT FOR YOU',
gorge => 'three rivers',
);
},
undef,
'prole is applied OK along with a normal role';
can_ok $a, 'OHHAI', 'gorge';
is
exception {
undef $a;
$a = Class->new_with_traits(
traits => ['Role', 'PRole' => { foo => 'OHHAI' }],
OHHAI => 'I FIXED THAT FOR YOU',
gorge => 'columbia river',
);
},
undef,
'prole is applied OK along with a normal role (2)';
can_ok $a, 'OHHAI', 'gorge';
is
exception {
undef $a;
$a = Class->new_with_traits(
traits => ['Role' => { bullshit => 'params', go => 'here' }],
gorge => 'i should have just called this foo',
);
},
undef,
'regular roles with args can be applied, but args are ignored';
can_ok $a, 'gorge';
subclass.t 000664 001750 001750 2307 12406050616 20473 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t/from-moosex-traits ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test that MooX::Traits works on subclasses of base classes that consume
it.
=head1 DEPENDENCIES
This test requires L and L.
Otherwise, it will be skipped.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< subclass.t >> from the L test suite,
by Jonathan Rockway and Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::Requires { 'Test::Fatal' => '0' };
use Test::Requires { 'Moo' => '1.000000' };
use Test::More tests => 3;
use Test::Fatal;
{ package Foo;
use Moo;
with 'MooX::Traits';
package Bar;
use Moo;
extends 'Foo';
package Trait;
use Moo::Role;
sub foo { return 42 };
}
my $instance;
is
exception {
$instance = Bar->new_with_traits( traits => ['Trait'] );
},
undef,
'creating instance works ok';
ok $instance->does('Trait'), 'instance does trait';
is $instance->foo, 42, 'trait works';
with-traits.t 000664 001750 001750 5155 12406050616 21137 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/t/from-moosex-traits ## skip Test::Tabs
=pod
=encoding utf-8
=head1 PURPOSE
Test that C works.
(Most of the other tests use C.)
=head1 DEPENDENCIES
This test requires L and L.
Otherwise, it will be skipped.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
Based on C<< with-traits.t >> from the L test suite,
by Jonathan Rockway and Karen Etheridge.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster, Jonathan Rockway, and Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::Requires { 'Test::Fatal' => '0' };
use Test::Requires { 'Moo' => '1.000000' };
use Test::More tests => 22;
use Test::Fatal;
{ package Trait;
use Moo::Role;
has 'foo' => (
is => 'ro',
isa => sub { defined($_[0]) && !ref($_[0]) or die },
required => 1,
);
package Class;
use Moo;
with 'MooX::Traits';
package Another::Trait;
use Moo::Role;
has 'bar' => (
is => 'ro',
isa => sub { defined($_[0]) && !ref($_[0]) or die },
required => 1,
);
package Another::Class;
use Moo;
with 'MooX::Traits';
sub _trait_namespace { 'Another' }
}
foreach my $trait ( 'Trait', ['Trait' ] ) {
my $instance = Class->new_with_traits( traits => $trait, foo => 'hello' );
isa_ok $instance, 'Class';
can_ok $instance, 'foo';
is $instance->foo, 'hello';
}
like
exception { Class->new_with_traits( traits => ['Trait'] ); },
qr/required/,
'foo is required';
{
my $instance = Class->new_with_traits;
isa_ok $instance, 'Class';
ok !$instance->can('foo'), 'this one cannot foo';
}
{
my $instance = Class->new_with_traits( traits => [] );
isa_ok $instance, 'Class';
ok !$instance->can('foo'), 'this one cannot foo either';
}
{
my $instance = Another::Class->new_with_traits( traits => ['Trait'], bar => 'bar' );
isa_ok $instance, 'Another::Class';
can_ok $instance, 'bar';
is $instance->bar, 'bar';
}
# try hashref form
{
my $instance = Another::Class->new_with_traits({ traits => ['Trait'], bar => 'bar' });
isa_ok $instance, 'Another::Class';
can_ok $instance, 'bar';
is $instance->bar, 'bar';
}
{
my $instance = Another::Class->new_with_traits(
traits => ['Trait', '+Trait'],
foo => 'foo',
bar => 'bar',
);
isa_ok $instance, 'Another::Class';
can_ok $instance, 'foo';
can_ok $instance, 'bar';
is $instance->foo, 'foo';
is $instance->bar, 'bar';
}
Util.pm 000664 001750 001750 12623 12406050616 16640 0 ustar 00tai tai 000000 000000 MooX-Traits-0.005/lib/MooX/Traits use 5.006;
use strict;
use warnings;
BEGIN { if ($] < 5.010000) { require UNIVERSAL::DOES } };
package MooX::Traits::Util;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.005';
use Exporter::Shiny qw(
new_class_with_traits
new_class_with_traits_one_by_one
);
my @keepsies;
my $parameterize_role = sub
{
my ($class, $trait, $params) = @_;
return $trait unless @_ == 3;
require Module::Runtime;
Module::Runtime::use_package_optimistically($trait);
if ( $INC{'MooseX/Role/Parameterized.pm'} )
{
require Moose::Util;
my $meta = Moose::Util::find_meta($trait);
if ($meta->can('generate_role'))
{
my $generated = $meta->generate_role(parameters => $params);
push @keepsies, $generated; # prevent cleanup
return $generated->name;
}
}
if ( $trait->can("make_variant") )
{
require Package::Variant;
return "Package::Variant"->build_variant_of(
$trait,
ref($params) eq q(ARRAY) ? @$params :
ref($params) eq q(HASH) ? %$params :
$$params,
);
}
return $trait;
};
my $looks_like_params = sub
{
my $thing = $_[0];
return !!0 if not ref $thing;
require Scalar::Util;
return !!0 if Scalar::Util::blessed($thing);
return !!1;
};
sub resolve_traits
{
my ($class, @args) = @_;
my $ns = $class->DOES('MooX::Traits') ? $class->_trait_namespace : undef;
$ns = defined($ns) ? "$ns\::" : "";
my @traits;
while (@args)
{
my $trait = shift(@args);
$trait = $trait =~ /\A\+(.+)\z/ ? $1 : "$ns$trait";
push @traits => (
$looks_like_params->($args[0])
? $parameterize_role->($class, $trait, shift(@args))
: $trait
);
}
return @traits;
}
my $toolage = sub
{
my $class = shift;
if ($INC{"Moo.pm"} and $Moo::MAKERS{$class}{is_class})
{
require Moo::Role;
return "Moo::Role";
}
if ($INC{"Moo/Role.pm"})
{
return "Moo::Role";
}
"Role::Tiny";
};
sub new_class_with_traits
{
my ($class, @traits) = @_;
$class->$toolage->create_class_with_roles(
$class,
resolve_traits($class, @traits),
);
}
sub new_class_with_traits_one_by_one
{
my ($class, @traits) = @_;
while (@traits)
{
my @trait = shift(@traits);
push @trait, shift(@traits)
if $looks_like_params->($traits[0]);
$class = new_class_with_traits($class, @trait);
}
return $class;
}
1;
__END__
=pod
=encoding utf-8
=for stopwords MooseX MouseX prepend metaclass
=head1 NAME
MooX::Traits::Util - non-role alternative to MooX::Traits
=head1 SYNOPSIS
Given some roles:
package Role;
use Moo::Role;
has foo => ( is => 'ro', required => 1 );
And a class:
package Class;
use Moo;
Apply the roles to the class:
use MooX::Traits::Util -all;
my $class = new_class_with_traits('Class', 'Role');
Then use your customized class:
my $object = $class->new( foo => 42 );
$object->isa('Class'); # true
$object->does('Role'); # true
$object->foo; # 42
=head1 DESCRIPTION
This module provides the functionality of L, but it's an
exporter rather than a role.
It's inspired by, but not compatible with L. The
latter module is undocumented, and it's not entirely clear whether it's
intended to be consumed by end-users, or is an entirely internal API.
This module exports nothing by default.
=head2 Functions
=over
=item C<< new_class_with_traits( $class, @traits ) >>
Return a new class name with the traits applied.
This function is not quite compatible with the C
function provided by L, in that the latter will
return a metaclass object.
This function can be exported.
=item C<< new_class_with_traits_one_by_one( $class, @traits ) >>
Rather than applying the the traits simultaneously, the traits are
applied one at a time. It is roughly equivalent to:
use List::Util qw(reduce);
use MooX::Traits::Util qw( new_class_with_traits );
my $class = ...;
my @traits = ...;
my $new = reduce { new_class_with_traits($a, $b) } $class, @traits;
Applying traits one by one has implications for method modifiers, and
for method conflict detection. B<< Use with caution. >>
There is no equivalent functionality in L.
This function can be exported.
=item C<< resolve_traits( $class, @traits ) >>
This function returns a list of traits, but does not apply them to the
class. It honours the class' C<_trait_namespace> method (but only if
the class does the MooX::Traits role) and handles parameter hashrefs
for parameterizable roles. (That is, parameters are applied to the
role, and the list of traits returned by the function includes the
result of that application instead of including the original hashref.)
This function is not quite compatible with the C
function provided by L, in that the latter will
not handle parameter hashrefs, trusting Moose to do that.
This function I be exported.
=back
=head1 BUGS
Please report any bugs to
L.
=head1 SEE ALSO
L.
=head1 AUTHOR
Toby Inkster Etobyink@cpan.orgE.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.