Skip to content

Commit

Permalink
s/Any::Moose/Mouse/g
Browse files Browse the repository at this point in the history
  • Loading branch information
gfx committed Jul 11, 2013
1 parent e63cacd commit 25f6a90
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion author/requires.cpanm
Expand Up @@ -31,7 +31,6 @@ MojoX::Renderer::Xslate
JavaScript::Value::Escape
Locale::Maketext::Lexicon
Data::Localize
Any::Moose
File::Which
Amon2::Lite
Catalyst::View::Xslate
Expand Down
2 changes: 1 addition & 1 deletion benchmark/cascade.pl
Expand Up @@ -19,7 +19,7 @@

{
package BlogEntry;
use Any::Moose;
use Mouse;
has title => (is => 'rw');
has body => (is => 'rw');
}
Expand Down
2 changes: 1 addition & 1 deletion benchmark/procs/method.pl
Expand Up @@ -16,7 +16,7 @@

{
package Pair;
use Any::Moose;
use Mouse;

has [qw(key value)] => (
is => 'rw',
Expand Down
2 changes: 1 addition & 1 deletion example/cascade.pl
Expand Up @@ -5,7 +5,7 @@

{
package BlogEntry;
use Any::Moose;
use Mouse;
has title => (is => 'rw');
has body => (is => 'rw');
}
Expand Down

0 comments on commit 25f6a90

Please sign in to comment.