summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-05-08 22:08:06 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-05-08 22:08:06 -0500
commitc38cacf7b4b0e22eae6a74229df8cc1d46061f63 (patch)
treeb9d97f628c4b8731970ddf22ed7a1127010eb7ec
parent2c7c1434ce31811e188c290480d6a89d7fae7a5e (diff)
downloadapp-hiveminder-c38cacf7b4b0e22eae6a74229df8cc1d46061f63.tar.gz
app-hiveminder-c38cacf7b4b0e22eae6a74229df8cc1d46061f63.zip
make stuff immutable
-rw-r--r--lib/App/Hiveminder.pm1
-rw-r--r--lib/App/Hiveminder/Command.pm1
-rw-r--r--lib/App/Hiveminder/Command/create.pm1
3 files changed, 3 insertions, 0 deletions
diff --git a/lib/App/Hiveminder.pm b/lib/App/Hiveminder.pm
index 32f41d9..801b91d 100644
--- a/lib/App/Hiveminder.pm
+++ b/lib/App/Hiveminder.pm
@@ -3,4 +3,5 @@ package App::Hiveminder;
use Moose;
extends 'MooseX::App::Cmd';
+__PACKAGE__->meta()->make_immutable();
1;
diff --git a/lib/App/Hiveminder/Command.pm b/lib/App/Hiveminder/Command.pm
index 4d76dd1..a85f6d0 100644
--- a/lib/App/Hiveminder/Command.pm
+++ b/lib/App/Hiveminder/Command.pm
@@ -10,4 +10,5 @@ has hm => (
default => sub { Net::Hiveminder->new(use_config => 1) },
);
+__PACKAGE__->meta()->make_immutable();
1;
diff --git a/lib/App/Hiveminder/Command/create.pm b/lib/App/Hiveminder/Command/create.pm
index c2ed1c7..55264e1 100644
--- a/lib/App/Hiveminder/Command/create.pm
+++ b/lib/App/Hiveminder/Command/create.pm
@@ -28,4 +28,5 @@ sub run {
print $ret, "\n";
}
+__PACKAGE__->meta()->make_immutable();
1;