IsRO trait
Shawn M Moore [Fri, 10 Jul 2009 05:47:24 +0000 (01:47 -0400)]
lib/MooseX/IsDefaults/Meta/IsRO.pm [new file with mode: 0644]

diff --git a/lib/MooseX/IsDefaults/Meta/IsRO.pm b/lib/MooseX/IsDefaults/Meta/IsRO.pm
new file mode 100644 (file)
index 0000000..da40491
--- /dev/null
@@ -0,0 +1,25 @@
+package MooseX::IsDefaults::Meta::IsRO;
+use Moose::Role;
+
+# This does not actually do anything but lie less in the attribute's metadata.
+has '+is' => (
+    default => 'ro',
+);
+
+around _process_options => sub {
+    my $orig = shift;
+    my (undef, undef, $options) = @_;
+
+    if (!exists($options->{is})) {
+        $options->{is} = 'ro';
+    }
+    # They want no accessor, but Moose doesn't like "is => undef"
+    elsif (!defined($options->{is})) {
+        delete $options->{is};
+    }
+
+    $orig->(@_);
+};
+
+1;
+