From 25f6a909b9ebd714b4a32ee2ea1fc28cee576dfd Mon Sep 17 00:00:00 2001 From: "Fuji, Goro" Date: Thu, 11 Jul 2013 00:01:42 -0700 Subject: [PATCH] s/Any::Moose/Mouse/g --- author/requires.cpanm | 1 - benchmark/cascade.pl | 2 +- benchmark/procs/method.pl | 2 +- example/cascade.pl | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/author/requires.cpanm b/author/requires.cpanm index b2b885b0..395d66b4 100644 --- a/author/requires.cpanm +++ b/author/requires.cpanm @@ -31,7 +31,6 @@ MojoX::Renderer::Xslate JavaScript::Value::Escape Locale::Maketext::Lexicon Data::Localize -Any::Moose File::Which Amon2::Lite Catalyst::View::Xslate diff --git a/benchmark/cascade.pl b/benchmark/cascade.pl index 822030b0..65a575d3 100644 --- a/benchmark/cascade.pl +++ b/benchmark/cascade.pl @@ -19,7 +19,7 @@ { package BlogEntry; - use Any::Moose; + use Mouse; has title => (is => 'rw'); has body => (is => 'rw'); } diff --git a/benchmark/procs/method.pl b/benchmark/procs/method.pl index 00e349f9..a8c6b02f 100644 --- a/benchmark/procs/method.pl +++ b/benchmark/procs/method.pl @@ -16,7 +16,7 @@ { package Pair; - use Any::Moose; + use Mouse; has [qw(key value)] => ( is => 'rw', diff --git a/example/cascade.pl b/example/cascade.pl index f49e0b16..3d17770c 100644 --- a/example/cascade.pl +++ b/example/cascade.pl @@ -5,7 +5,7 @@ { package BlogEntry; - use Any::Moose; + use Mouse; has title => (is => 'rw'); has body => (is => 'rw'); }