Add MooseX::Types::Structured
[gitmo/Task-Moose.git] / lib / Task / Moose.pm
1 package Task::Moose;
2
3 our $VERSION   = '0.02';
4 our $AUTHORITY = 'cpan:STEVAN';
5
6 1;
7
8 __END__
9
10 =pod
11
12 =head1 NAME
13
14 Task::Moose - Moose in a box
15
16 =head1 DESCRIPTION
17
18 This Task installs Moose and then optionally installs a number of 
19 Moose extensions listed below. This list is meant to be comprehensive, 
20 so if I missed something please let me know.
21
22 =over 4
23
24 =item I<Declarative syntax>
25
26 L<MooseX::Declare>
27
28 =item I<Autoboxing support>
29     
30 L<Moose::Autobox>
31
32 =item I<Extending Moose attributes with basic Perl types>
33     
34 L<MooseX::AttributeHelpers>
35     
36 =item I<Class attributes for Moose>
37
38 L<MooseX::ClassAttribute>
39
40 =item I<Support for PBP style accessors>
41
42 L<MooseX::SemiAffordanceAccessor>
43
44 =item I<Moose-ish method parameter handling>
45     
46 L<MooseX::Params::Validate>
47     
48 =item I<Moose-ish methods>
49
50 L<MooseX::Method>
51
52 =item I<Declarative method syntax>
53
54 L<MooseX::Method::Signatures>
55
56 =item I<Making Moose constructors stricter>
57     
58 L<MooseX::StrictConstructor>
59
60 =item I<Runtime Trait application in constructors>
61
62 L<MooseX::Role::TraitConstructor>
63     
64 =item I<Parameterized roles>
65
66 L<MooseX::Role::Parameterized>
67
68 =item I<Globref instance type for Moose>
69     
70 L<MooseX::GlobRef::Object>
71     
72 =item I<Inside-Out instance type for Moose>
73
74 L<MooseX::InsideOut>
75
76 =item I<CGI-style parameter role>
77     
78 L<MooseX::Param>
79     
80 =item I<Singleton support role>
81
82 L<MooseX::Singleton>
83     
84 =item I<Moose-ish Iterator support role>
85
86 L<MooseX::Iterator>
87     
88 =item I<Moose-ish plugin system>
89
90 L<MooseX::Object::Pluggable>
91
92 =item I<More robust and flexible cloning support>
93     
94 L<MooseX::Clone>
95
96 =item I<Moose type extensions>
97     
98 L<MooseX::Types>
99
100 =item I<Structured type constraints>
101
102 L<MooseX::Types::Structured>
103
104 =item I<Path::Class Moose type extension>
105
106 L<MooseX::Types::Path::Class>
107     
108 =item I<Set::Object Moose type extension>
109     
110 L<MooseX::Types::Set::Object>
111
112 =item I<Moose serialization>
113     
114 L<MooseX::Storage>
115
116 =item I<Better script writing with Moose>
117     
118 L<MooseX::Getopt>
119
120 =item I<Support for config with MooseX::Getopt>
121     
122 L<MooseX::ConfigFromFile>
123     
124 =item I<Config file support for MooseX::Getopt with Config::Any>
125     
126 L<MooseX::SimpleConfig>
127     
128 =item I<LogDispatch support for Moose>
129     
130 L<MooseX::LogDispatch>
131
132 =item I<lazy loaded LogDispatch support for Moose>
133
134 L<MooseX::LazyLogDispatch>
135
136 =item I<App::Cmd integration for Moose>
137     
138 L<MooseX::App::Cmd>
139     
140 =item I<Daemonization support roles for Moose>
141     
142 L<MooseX::Daemonize>
143
144 =item I<Easily wrap command line apps with Moose>
145     
146 L<MooseX::Role::Cmd>
147
148 =item I<Base role for Async Moose modules>
149     
150 L<MooseX::Async>
151     
152 =item I<POE and Moose>
153
154 L<MooseX::POE>
155     
156 =item I<Sub-process management for asynchronous tasks using Moose and POE>
157     
158 L<MooseX::Workers>
159
160 =item I<experimental Moose Compiler tools>
161     
162 L<MooseX::Compile>
163 L<MooseX::Compile::CLI>
164
165 =item I<Moose support tools>
166     
167 L<Pod::Coverage::Moose>
168
169 =back
170
171 =head1 BUGS
172
173 All complex software has bugs lurking in it, and this module is no 
174 exception. If you find a bug please either email me, or add the bug
175 to cpan-RT.
176
177 =head1 AUTHOR
178
179 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
180
181 =head1 COPYRIGHT AND LICENSE
182
183 Copyright 2008 Infinity Interactive, Inc.
184
185 L<http://www.iinteractive.com>
186
187 This library is free software; you can redistribute it and/or modify
188 it under the same terms as Perl itself.
189
190 =cut