9 $package = $_[1] || 'Class';
10 if ($package =~ /^\+/) {
12 eval "require $package; 1" or die;
15 use Filter::Simple sub { s/^/package $package;\nuse Mouse;\n/; }
26 ouse - syntactic sugar to make Mouse one-liners easier
30 # create a Mouse class on the fly ...
31 perl -Mouse=Foo -e 'has bar => ( is=>q[ro], default => q[baz] ); print Foo->new->bar' # prints baz
33 # loads an existing class (Mouse or non-Mouse)
34 # and re-"opens" the package definition to make
35 # debugging/introspection easier
36 perl -Mouse=+My::Class -e 'print join ", " => __PACKAGE__->meta->get_method_list'
40 ouse.pm is a simple source filter that adds C<package $name; use Mouse;>
41 to the beginning of your script and was entirely created because typing
42 perl -e'package Foo; use Mouse; ...' was annoying me... especially after
43 getting used to having C<-Moose> for Moose.
47 ouse provides exactly one method and it's automically called by perl:
51 =item B<import($package)>
53 Pass a package name to import to be used by the source filter.
59 You will need L<Filter::Simple> and eventually L<Mouse>
61 =head1 INCOMPATIBILITIES
63 None reported. But it is a source filter and might have issues there.
67 All complex software has bugs lurking in it, and this module is no
68 exception. If you find a bug please either email me, or add the bug
73 For all intents and purposes, blame:
75 Chris Prather C<< <perigrin@cpan.org> >>
77 ...who wrote oose.pm, which was adapted for use by Mouse by:
79 Ricardo SIGNES C<< <rjbs@cpan.org> >>
81 =head1 COPYRIGHT AND LICENSE
83 Copyright 2008 Shawn M Moore.
85 This program is free software; you can redistribute it and/or modify it
86 under the same terms as Perl itself.