oops, this should have been mentioned in the docs
[gitmo/Moose.git] / lib / Moose / Manual / Delta.pod
CommitLineData
600f7f85 1=pod
2
3=head1 NAME
4
5Moose::Manual::Delta - Important Changes in Moose
6
7=head1 DESCRIPTION
8
0f13f53c 9This documents any important or noteworthy changes in Moose, with a
10focus on backwards. This does duplicate data from the F<Changes> file,
11but aims to provide more details and when possible workarounds.
12
13Besides helping keep up with changes, you can also use this document
14for finding the lowest version of Moose that supported a given
15feature. If you encounter a problem and have a solution but don't see
16it documented here, or think we missed an important feature, please
17send us a patch.
600f7f85 18
e462f6f3 19=head1 1.05
20
a19ae3d7 21=over 4
22
23=item L<Moose::Object/BUILD> methods are now called when calling C<new_object>
24
25Previously, C<BUILD> methods would only be called from C<Moose::Object::new>,
26but now they are also called when constructing an object via
27C<Moose::Meta::Class::new_object>. C<BUILD> methods are an inherent part of the
28object construction process, and this should make C<< $meta->new_object >>
29actually usable without forcing people to use C<< $meta->name->new >>.
30
2fee26f1 31=item C<no Moose>, C<no Moose::Role>, and C<no Moose::Exporter> now unimport strict and warnings
32
33In the interest of having C<no Moose> clean up everything that C<use Moose>
34does in the calling scope, C<no Moose> (as well as all other
35L<Moose::Exporter>-using modules) now unimports strict and warnings.
36
f46a74bf 37=item Metaclass compatibility checking and fixing should be much more robust
38
39The L<metaclass compatibility|Moose/METACLASS COMPATIBILITY AND MOOSE> checking
40and fixing algorithms have been completely rewritten, in both Class::MOP and
41Moose. This should resolve many confusing errors when dealing with non-Moose
42inheritance and with custom metaclasses for things like attributes,
918b5cef 43constructors, etc. For correct code, the only thing that should require a
44change is that custom error metaclasses must now inherit from
45L<Moose::Error::Default>.
f46a74bf 46
a19ae3d7 47=back
48
8ff79890 49=head1 1.02
50
51=over 4
52
53=item Moose::Meta::TypeConstraint::Class is_subtype_of behavior
54
55Earlier versions of L<is_subtype_of|Moose::Meta::TypeConstraint::Class/is_subtype_of>
56would incorrectly return true when called with itself, its own TC name or
57its class name as an argument. (i.e. $foo_tc->is_subtype_of('Foo') == 1) This
58behavior was a caused by C<isa> being checked before the class name. The old
59behavior can be accessed with L<is_type_of|Moose::Meta::TypeConstraint::Class/is_type_of>
60
61=back
62
12885414 63=head1 1.00
64
65=over 4
66
67=item Moose::Meta::Attribute::Native::Trait::Code no longer creates reader methods by default
68
69Earlier versions of L<Moose::Meta::Attribute::Native::Trait::Code> created
70read-only accessors for the attributes it's been applied to, even if you didn't
71ask for it with C<< is => 'ro' >>. This incorrect behaviour has now been fixed.
72
73=back
74
775666aa 75=head1 0.95
76
77=over 4
78
79=item Moose::Util add_method_modifier behavior
80
81add_method_modifier (and subsequently the sugar functions Moose::before,
82Moose::after, and Moose::around) can now accept arrayrefs, with the same
83behavior as lists. Types other than arrayref and regexp result in an error.
84
85=back
86
5b7b27e2 87=head1 0.93_01 and 0.94
88
89=over 4
90
f785aad8 91=item Moose::Util::MetaRole API has changed
92
93The C<apply_metaclass_roles> function is now called C<apply_metaroles>. The
94way arguments are supplied has been changed to force you to distinguish
95between metaroles applied to L<Moose::Meta::Class> (and helpers) versus
96L<Moose::Meta::Role>.
97
98The old API still works, but will warn in a future release, and eventually be
99removed.
100
101=item Moose::Meta::Role has real attributes
102
103The attributes returned by L<Moose::Meta::Role> are now instances of the
104L<Moose::Meta::Role::Attribute> class, instead of bare hash references.
105
5b7b27e2 106=item "no Moose" now removes C<blessed> and C<confess>
107
108Moose is now smart enough to know exactly what it exported, even when it
109re-exports functions from other packages. When you unimport Moose, it will
110remove these functions from your namespace unless you I<also> imported them
111directly from their respective packages.
112
113If you have a C<no Moose> in your code I<before> you call C<blessed> or
114C<confess>, your code will break. You can either move the C<no Moose> call
115later in your code, or explicitly import the relevant functions from the
116packages that provide them.
117
118=item L<Moose::Exporter> is smarter about unimporting re-exports
119
120The change above comes from a general improvement to L<Moose::Exporter>. It
121will now unimport any function it exports, even if that function is a
122re-export from another package.
123
f427b505 124=item Attributes in roles can no longer override class attributes with "+foo"
125
126Previously, this worked more or less accidentally, because role attributes
127weren't objects. This was never documented, but a few MooseX modules took
128advantage of this.
129
130=item The composition_class_roles attribute in L<Moose::Meta::Role> is now a method
131
132This was done to make it possible for roles to alter the the list of
133composition class roles by applying a method modifiers. Previously, this was
134an attribute and MooseX modules override it. Since that no longer works, this
135was made a method.
136
137This I<should> be an attribute, so this may switch back to being an attribute
138in the future if we can figure out how to make this work.
139
5b7b27e2 140=back
141
c378a61a 142=head1 0.93
143
144=over 4
145
146=item Calling $object->new() is no longer deprecated
147
76c89056 148We decided to undeprecate this. Now it just works.
c378a61a 149
d99ec58b 150=item Both C<get_method_map> and C<get_attribute_map> is deprecated
fa6da135 151
d99ec58b 152These metaclass methods were never meant to be public, and they are both now
153deprecated. The work around if you still need the functionality they provided
154is to iterate over the list of names manually.
fa6da135 155
156 my %fields = map { $_ => $meta->get_attribute($_) } $meta->get_attribute_list;
157
d99ec58b 158This was actually a change in L<Class::MOP>, but this version of Moose
159requires a version of L<Class::MOP> that includes said change.
160
c378a61a 161=back
162
b98ef150 163=head1 0.90
871f82f8 164
c985327a 165=over 4
166
93ef4ba1 167=item Added Native delegation for Code refs
168
169See L<Moose::Meta::Attribute::Native::Trait::Code> for details.
170
3f5ff7d0 171=item Calling $object->new() is deprecated
172
173Moose has long supported this, but it's never really been documented, and we
174don't think this is a good practice. If you want to construct an object from
175an existing object, you should provide some sort of alternate constructor like
176C<< $object->clone >>.
177
178Calling C<< $object->new >> now issues a warning, and will be an error in a
179future release.
180
19e60fdd 181=item Moose no longer warns if you call C<make_immutable> for a class with mutable ancestors
182
183While in theory this is a good thing to warn about, we found so many
184exceptions to this that doing this properly became quite problematic.
185
93ef4ba1 186=back
187
188=head1 Version 0.89_02
189
190=over 4
4f0d4488 191
871f82f8 192=item New Native delegation methods from L<List::Util> and L<List::MoreUtils>
193
194In particular, we now have C<reduce>, C<shuffle>, C<uniq>, and C<natatime>.
195
3023f1e4 196=item The Moose::Exporter with_caller feature is now deprecated
197
198Use C<with_meta> instead. The C<with_caller> option will start warning in a
199future release.
200
9b9a5a07 201=item Moose now warns if you call C<make_immutable> for a class with mutable ancestors
202
203This is dangerous because modifying a class after a subclass has been
90b20bd6 204immutabilized will lead to incorrect results in the subclass, due to inlining,
9b9a5a07 205caching, etc. This occasionally happens accidentally, when a class loads one
206of its subclasses in the middle of its class definition, so pointing out that
207this may cause issues should be helpful. Metaclasses (classes that inherit
208from L<Class::MOP::Object>) are currently exempt from this check, since at the
90b20bd6 209moment we aren't very consistent about which metaclasses we immutabilize.
9b9a5a07 210
bce5d4a5 211=item C<enum> and C<duck_type> now take arrayrefs for all forms
212
213Previously, calling these functions with a list would take the first element of
214the list as the type constraint name, and use the remainder as the enum values
215or method names. This makes the interface inconsistent with the anon-type forms
216of these functions (which must take an arrayref), and a free-form list where
217the first value is sometimes special is hard to validate (and harder to give
218reasonable error messages for). These functions have been changed to take
219arrayrefs in all their forms - so, C<< enum 'My::Type' => [qw(foo bar)] >> is
220now the preferred way to create an enum type constraint. The old syntax still
221works for now, but it will hopefully be deprecated and removed in a future
222release.
223
871f82f8 224=back
225
4ada9618 226=head1 Version 0.89_01
a3d98218 227
af44c00c 228L<Moose::Meta::Attribute::Native> has been moved into the Moose core from
a3d98218 229L<MooseX::AttributeHelpers>. Major changes include:
230
ebaaa391 231=over 4
a3d98218 232
233=item C<traits>, not C<metaclass>
234
93ced2bd 235Method providers are only available via traits.
a3d98218 236
237=item C<handles>, not C<provides> or C<curries>
238
93ced2bd 239The C<provides> syntax was like core Moose C<< handles => HASHREF >>
240syntax, but with the keys and values reversed. This was confusing,
241and AttributeHelpers now uses C<< handles => HASHREF >> in a way that
242should be intuitive to anyone already familiar with how it is used for
243other attributes.
a3d98218 244
93ced2bd 245The C<curries> functionality provided by AttributeHelpers has been
246generalized to apply to all cases of C<< handles => HASHREF >>, though
247not every piece of functionality has been ported (currying with a
248CODEREF is not supported).
a3d98218 249
1853a27e 250=item C<empty> is now C<is_empty>, and means empty, not non-empty
af44c00c 251
252Previously, the C<empty> method provided by Arrays and Hashes returned true if
253the attribute was B<not> empty (no elements). Now it returns true if the
1853a27e 254attribute B<is> empty. It was also renamed to C<is_empty>, to reflect this.
af44c00c 255
9a14bd29 256=item C<find> was renamed to C<first>, and C<first> and C<last> were removed
28b96142 257
258L<List::Util> refers to the functionality that we used to provide under C<find>
259as L<first|List::Util/first>, so that will likely be more familiar (and will
9a14bd29 260fit in better if we decide to add more List::Util functions). C<first> and
261C<last> were removed, since their functionality is easily duplicated with
262curries of C<get>.
28b96142 263
264=item Helpers that take a coderef of one argument now use C<$_>
265
266Subroutines passed as the first argument to C<first>, C<map>, and C<grep> now
267receive their argument in C<$_> rather than as a parameter to the subroutine.
268Helpers that take a coderef of two or more arguments remain using the argument
269list (there are technical limitations to using C<$a> and C<$b> like C<sort>
270does).
271
af44c00c 272See L<Moose::Meta::Attribute::Native> for the new documentation.
a3d98218 273
ebaaa391 274=back
275
85e2b15a 276The C<alias> and C<excludes> role parameters have been renamed to C<-alias>
277and C<-excludes>. The old names still work, but new code should use the new
278names, and eventually the old ones will be deprecated and removed.
279
4ada9618 280=head1 Version 0.89
281
8a8856de 282C<< use Moose -metaclass => 'Foo' >> now does alias resolution, just like
283C<-traits> (and the C<metaclass> and C<traits> options to C<has>).
284
27f2f43f 285Added two functions C<meta_class_alias> and C<meta_attribute_alias> to
286L<Moose::Util>, to simplify aliasing metaclasses and metatraits. This is
287a wrapper around the old
288
289 package Moose::Meta::Class::Custom::Trait::FooTrait;
290 sub register_implementation { 'My::Meta::Trait' }
291
292way of doing this.
293
4831e2de 294=head1 Version 0.84
295
9f52cce5 296When an attribute generates I<no> accessors, we now warn. This is to help
297users who forget the C<is> option. If you really do not want any accessors,
3de02fd8 298you can use C<< is => 'bare' >>. You can maintain back compat with older
299versions of Moose by using something like:
300
301 ($Moose::VERSION >= 0.84 ? is => 'bare' : ())
9f52cce5 302
303When an accessor overwrites an existing method, we now warn. To work around
304this warning (if you really must have this behavior), you can explicitly
305remove the method before creating it as an accessor:
306
307 sub foo {}
308
309 __PACKAGE__->meta->remove_method('foo');
310
311 has foo => (
312 is => 'ro',
313 );
314
315When an unknown option is passed to C<has>, we now warn. You can silence
316the warning by fixing your code. :)
317
4831e2de 318The C<Role> type has been deprecated. On its own, it was useless,
319since it just checked C<< $object->can('does') >>. If you were using
320it as a parent type, just call C<role_type('Role::Name')> to create an
321appropriate type instead.
322
7d6b451f 323=head1 Version 0.78
324
325C<use Moose::Exporter;> now imports C<strict> and C<warnings> into packages
326that use it.
327
c3fdacda 328=head1 Version 0.77
329
330C<DEMOLISHALL> and C<DEMOLISH> now receive an argument indicating whether or
331not we are in global destruction.
332
00c61603 333=head1 Version 0.76
334
9f0b3b64 335Type constraints no longer run coercions for a value that already matches the
336constraint. This may affect some (arguably buggy) edge case coercions that
337rely on side effects in the C<via> clause.
338
f869fc4a 339=head1 Version 0.75
340
341L<Moose::Exporter> now accepts the C<-metaclass> option for easily
342overriding the metaclass (without L<metaclass>). This works for classes
343and roles.
344
39ab7714 345=head1 Version 0.74
346
85cf0647 347Added a C<duck_type> sugar function to L<Moose::Util::TypeConstraints>
348to make integration with non-Moose classes easier. It simply checks if
349C<< $obj->can() >> a list of methods.
39ab7714 350
612fd754 351A number of methods (mostly inherited from L<Class::MOP>) have been
352renamed with a leading underscore to indicate their internal-ness. The
353old method names will still work for a while, but will warn that the
354method has been renamed. In a few cases, the method will be removed
355entirely in the future. This may affect MooseX authors who were using
356these methods.
357
600f7f85 358=head1 Version 0.73
359
0f13f53c 360Calling C<subtype> with a name as the only argument now throws an
600f7f85 361exception. If you want an anonymous subtype do:
362
363 my $subtype = subtype as 'Foo';
364
0f13f53c 365This is related to the changes in version 0.71_01.
600f7f85 366
501db4e6 367The C<is_needed> method in L<Moose::Meta::Method::Destructor> is now
368only usable as a class method. Previously, it worked as a class or
369object method, with a different internal implementation for each
370version.
371
372The internals of making a class immutable changed a lot in Class::MOP
3730.78_02, and Moose's internals have changed along with it. The
374external C<< $metaclass->make_immutable >> method still works the same
375way.
376
600f7f85 377=head1 Version 0.72
378
0f13f53c 379A mutable class accepted C<< Foo->new(undef) >> without complaint,
380while an immutable class would blow up with an unhelpful error. Now,
381in both cases we throw a helpful error instead.
600f7f85 382
0f13f53c 383This "feature" was originally added to allow for cases such as this:
600f7f85 384
385 my $args;
0f13f53c 386
387 if ( something() ) {
388 $args = {...};
600f7f85 389 }
0f13f53c 390
600f7f85 391 return My::Class->new($args);
392
0f13f53c 393But we decided this is a bad idea and a little too magical, because it
394can easily mask real errors.
600f7f85 395
396=head1 Version 0.71_01
397
0f13f53c 398Calling C<type> or C<subtype> without the sugar helpers (C<as>,
399C<where>, C<message>) is now deprecated.
400
401As a side effect, this meant we ended up using Perl prototypes on
402C<as>, and code like this will no longer work:
600f7f85 403
404 use Moose::Util::TypeConstraints;
405 use Declare::Constraints::Simple -All;
0f13f53c 406
407 subtype 'ArrayOfInts'
600f7f85 408 => as 'ArrayRef'
409 => IsArrayRef(IsInt);
410
411Instead it must be changed to this:
412
0f13f53c 413 subtype(
414 'ArrayOfInts' => {
415 as => 'ArrayRef',
416 where => IsArrayRef(IsInt)
417 }
600f7f85 418 );
419
0f13f53c 420If you want to maintain backwards compat with older versions of Moose,
421you must explicitly test Moose's C<VERSION>:
600f7f85 422
0f13f53c 423 if ( Moose->VERSION < 0.71_01 ) {
424 subtype 'ArrayOfInts'
600f7f85 425 => as 'ArrayRef'
426 => IsArrayRef(IsInt);
427 }
428 else {
0f13f53c 429 subtype(
430 'ArrayOfInts' => {
431 as => 'ArrayRef',
432 where => IsArrayRef(IsInt)
433 }
600f7f85 434 );
435 }
436
437=head1 Version 0.70
438
0f13f53c 439We no longer pass the meta-attribute object as a final argument to
440triggers. This actually changed for inlined code a while back, but the
441non-inlined version and the docs were still out of date.
442
443If by some chance you actually used this feature, the workaround is
444simple. You fetch the attribute object from out of the C<$self>
445that is passed as the first argument to trigger, like so:
446
447 has 'foo' => (
448 is => 'ro',
449 isa => 'Any',
450 trigger => sub {
451 my ( $self, $value ) = @_;
452 my $attr = $self->meta->find_attribute_by_name('foo');
453
454 # ...
455 }
456 );
600f7f85 457
458=head1 Version 0.66
459
0f13f53c 460If you created a subtype and passed a parent that Moose didn't know
461about, it simply ignored the parent. Now it automatically creates the
462parent as a class type. This may not be what you want, but is less
463broken than before.
600f7f85 464
0f13f53c 465You could declare a name with subtype such as "Foo!Bar". Moose would
466accept this allowed, but if you used it in a parameterized type such
467as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some vetting on
468names created via the sugar functions, so that they can only contain
469alphanumerics, ":", and ".".
600f7f85 470
471=head1 Version 0.65
472
473Methods created via an attribute can now fulfill a C<requires>
0f13f53c 474declaration for a role. Honestly we don't know why Stevan didn't make
475this work originally, he was just insane or something.
600f7f85 476
0f13f53c 477Stack traces from inlined code will now report the line and file as
478being in your class, as opposed to in Moose guts.
600f7f85 479
480=head1 Version 0.62_02
481
0f13f53c 482When a class does not provide all of a role's required methods, the
483error thrown now mentions all of the missing methods, as opposed to
484just the first missing method.
600f7f85 485
0f13f53c 486Moose will no longer inline a constructor for your class unless it
5e26e3f2 487inherits its constructor from Moose::Object, and will warn when it
488doesn't inline. If you want to force inlining anyway, pass
b84f64da 489C<< replace_constructor => 1 >> to C<make_immutable>.
0f13f53c 490
491If you want to get rid of the warning, pass C<< inline_constructor =>
fbf7ba85 4920 >>.
600f7f85 493
494=head1 Version 0.62
495
0f13f53c 496Removed the (deprecated) C<make_immutable> keyword.
600f7f85 497
498Removing an attribute from a class now also removes delegation
0f13f53c 499(C<handles>) methods installed for that attribute. This is correct
600f7f85 500behavior, but if you were wrongly relying on it you might get bit.
501
502=head1 Version 0.58
503
0f13f53c 504Roles now add methods by calling C<add_method>, not
505C<alias_method>. They make sure to always provide a method object,
506which will be cloned internally. This means that it is now possible to
507track the source of a method provided by a role, and even follow its
508history through intermediate roles. This means that methods added by
509a role now show up when looking at a class's method list/map.
510
511Parameter and Union args are now sorted, this makes Int|Str the same
512constraint as Str|Int. Also, incoming type constraint strings are
513normalized to remove all whitespace differences. This is mostly for
514internals and should not affect outside code.
515
516L<Moose::Exporter> will no longer remove a subroutine that the
517exporting package re-exports. Moose re-exports the Carp::confess
518function, among others. The reasoning is that we cannot know whether
519you have also explicitly imported those functions for your own use, so
520we err on the safe side and always keep them.
600f7f85 521
522=head1 Version 0.56
523
0f13f53c 524C<Moose::init_meta> should now be called as a method.
600f7f85 525
0f13f53c 526New modules for extension writers, L<Moose::Exporter> and
527L<Moose::Util::MetaRole>.
600f7f85 528
529=head1 Version 0.55_01
530
531Implemented metaclass traits (and wrote a recipe for it):
532
533 use Moose -traits => 'Foo'
534
535This should make writing small Moose extensions a little
536easier.
537
538=head1 Version 0.55
539
540Fixed C<coerce> to accept anon types just like C<subtype> can.
541So that you can do:
542
543 coerce $some_anon_type => from 'Str' => via { ... };
544
545=head1 Version 0.51
546
52da380a 547Added C<BUILDARGS>, a new step in C<< Moose::Object->new() >>.
600f7f85 548
549=head1 Version 0.49
550
0f13f53c 551Fixed how the C<< is => (ro|rw) >> works with custom defined
552C<reader>, C<writer> and C<accessor> options. See the below table for
600f7f85 553details:
554
555 is => ro, writer => _foo # turns into (reader => foo, writer => _foo)
556 is => rw, writer => _foo # turns into (reader => foo, writer => _foo)
557 is => rw, accessor => _foo # turns into (accessor => _foo)
558 is => ro, accessor => _foo # error, accesor is rw
559
560=head1 Version 0.45
561
0f13f53c 562The C<before/around/after> method modifiers now support regexp
563matching of method names. NOTE: this only works for classes, it is
564currently not supported in roles, but, ... patches welcome.
600f7f85 565
0f13f53c 566The C<has> keyword for roles now accepts the same array ref form that
567L<Moose>.pm does for classes.
600f7f85 568
0f13f53c 569A trigger on a read-only attribute is no longer an error, as it's
570useful to trigger off of the constructor.
600f7f85 571
0f13f53c 572Subtypes of parameterizable types now are parameterizable types
573themselves.
600f7f85 574
575=head1 Version 0.44
576
0f13f53c 577Fixed issue where C<DEMOLISHALL> was eating the value in C<$@>, and so
578not working correctly. It still kind of eats them, but so does vanilla
579perl.
600f7f85 580
581=head1 Version 0.41
582
0f13f53c 583Inherited attributes may now be extended without restriction on the
600f7f85 584type ('isa', 'does').
585
0f13f53c 586The entire set of Moose::Meta::TypeConstraint::* classes were
587refactored in this release. If you were relying on their internals you
588should test your code carefully.
600f7f85 589
590=head1 Version 0.40
591
0f13f53c 592Documenting the use of '+name' with attributes that come from recently
593composed roles. It makes sense, people are using it, and so why not
594just officially support it.
600f7f85 595
0f13f53c 596The C<< Moose::Meta::Class->create >> method now supports roles.
600f7f85 597
86b96832 598It is now possible to make anonymous enum types by passing C<enum> an
599array reference instead of the C<< enum $name => @values >>.
600f7f85 600
601=head1 Version 0.37
602
0f13f53c 603Added the C<make_immutable> keyword as a shortcut to calling
604C<make_immutable> on the meta object. This eventually got removed!
600f7f85 605
0f13f53c 606Made C<< init_arg => undef >> work in Moose. This means "do not accept
600f7f85 607a constructor parameter for this attribute".
608
0f13f53c 609Type errors now use the provided message. Prior to this release they
610didn't.
600f7f85 611
612=head1 Version 0.34
613
614Moose is now a postmodern object system :)
615
0f13f53c 616The Role system was completely refactored. It is 100% backwards
617compat, but the internals were totally changed. If you relied on the
618internals then you are advised to test carefully.
600f7f85 619
620Added method exclusion and aliasing for Roles in this release.
621
0f13f53c 622Added the L<Moose::Util::TypeConstraints::OptimizedConstraints>
623module.
600f7f85 624
0f13f53c 625Passing a list of values to an accessor (which is only expecting one
626value) used to be silently ignored, now it throws an error.
600f7f85 627
628=head1 Version 0.26
629
0f13f53c 630Added parameterized types and did a pretty heavy refactoring of the
631type constraint system.
600f7f85 632
0f13f53c 633Better framework extendability and better support for "making your own
634Moose".
600f7f85 635
636=head1 Version 0.25 or before
637
0f13f53c 638Honestly, you shouldn't be using versions of Moose that are this old,
639so many bug fixes and speed improvements have been made you would be
640crazy to not upgrade.
600f7f85 641
0f13f53c 642Also, I am tired of going through the Changelog so I am stopping here,
643if anyone would like to continue this please feel free.
600f7f85 644
645=head1 AUTHOR
646
647Stevan Little E<lt>stevan@iinteractive.comE<gt>
648
649=head1 COPYRIGHT AND LICENSE
650
651Copyright 2009 by Infinity Interactive, Inc.
652
653L<http://www.iinteractive.com>
654
655This library is free software; you can redistribute it and/or modify
656it under the same terms as Perl itself.
657
0f13f53c 658=cut