add an example
Jonathan Rockway [Tue, 31 Mar 2009 08:58:51 +0000 (03:58 -0500)]
example/MyApp.pm [new file with mode: 0644]

diff --git a/example/MyApp.pm b/example/MyApp.pm
new file mode 100644 (file)
index 0000000..44420a7
--- /dev/null
@@ -0,0 +1,20 @@
+package MyApp;
+use Moose;
+use 5.010;
+
+with 'MooseX::Runnable', 'MooseX::Getopt';
+
+has 'name' => ( is => 'ro', isa => 'Str', default => 'world', documentation =>
+                  'Your name, defaults to "world"' );
+
+sub run {
+    my ($self, $name) = @_;
+    say 'Hello, '. $self->name. '.';
+    return 0;
+}
+
+1;
+
+__END__
+
+cd to this dir, and then run "mx-run MyApp --help"