Tidy
[gitmo/Mouse.git] / lib / ouse.pm
1 package ouse;
2
3 use strict;
4 use warnings;
5
6 BEGIN {
7     my $package;
8     sub import { 
9         $package = $_[1] || 'Class';
10         if ($package =~ /^\+/) {
11             $package =~ s/^\+//;
12             eval "require $package; 1" or die;
13         }
14     }
15     use Filter::Simple sub { s/^/package $package;\nuse Mouse;\n/; }
16 }
17
18 1;
19 __END__
20
21 =head1 NAME
22
23 ouse - syntactic sugar to make Mouse one-liners easier
24
25 =head1 SYNOPSIS
26
27   # create a Mouse class on the fly ...
28   perl -Mouse=Foo -e 'has bar => ( is=>q[ro], default => q[baz] ); print Foo->new->bar' # prints baz
29
30   # loads an existing class (Mouse or non-Mouse)
31   # and re-"opens" the package definition to make
32   # debugging/introspection easier
33   perl -Mouse=+My::Class -e 'print join ", " => __PACKAGE__->meta->get_method_list' 
34
35 =head1 DESCRIPTION
36
37 F<ouse.pm> is a simple source filter that adds C<package $name; use Mouse;> 
38 to the beginning of your script and was entirely created because typing 
39 perl C<< -e'package Foo; use Mouse; ...' >> was annoying me... especially after
40 getting used to having C<-Moose> for Moose.
41
42 =head1 INTERFACE 
43
44 C<ouse> provides exactly one method and it is automatically called by perl:
45
46 =over 4
47
48 =item C<< oose->import() >>>
49
50 Pass a package name to import to be used by the source filter.
51
52 =back
53
54 =head1 DEPENDENCIES
55
56 You will need L<Filter::Simple> and eventually L<Mouse>
57
58 =head1 INCOMPATIBILITIES
59
60 None reported. But it is a source filter and might have issues there.
61
62 =head1 SEE ALSO
63
64 L<oose> for C<< perl -Moose -e '...' >>
65
66 =head1 AUTHOR
67
68 For all intents and purposes, blame:
69
70 Chris Prather  C<< <perigrin@cpan.org> >>
71
72 ...who wrote oose.pm, which was adapted for use by Mouse by:
73
74 Ricardo SIGNES C<< <rjbs@cpan.org> >>
75
76 =head1 COPYRIGHT AND LICENSE
77
78 Copyright 2008 Shawn M Moore.
79
80 This program is free software; you can redistribute it and/or modify it
81 under the same terms as Perl itself.
82
83 =cut