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 F<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 C<< -e'package Foo; use Mouse; ...' >> was annoying me... especially after
43 getting used to having C<-Moose> for Moose.
47 C<ouse> provides exactly one method and it is automatically called by perl:
51 =item C<< oose->import() >>>
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 L<oose> for C<< perl -Moose -e '...' >>
71 For all intents and purposes, blame:
73 Chris Prather C<< <perigrin@cpan.org> >>
75 ...who wrote oose.pm, which was adapted for use by Mouse by:
77 Ricardo SIGNES C<< <rjbs@cpan.org> >>
79 =head1 COPYRIGHT AND LICENSE
81 Copyright 2008 Shawn M Moore.
83 This program is free software; you can redistribute it and/or modify it
84 under the same terms as Perl itself.