clarify mx-run syntax
Jonathan Rockway [Thu, 7 May 2009 07:56:45 +0000 (02:56 -0500)]
lib/MooseX/Runnable.pm

index f4a39b6..77189dc 100644 (file)
@@ -1,7 +1,7 @@
 package MooseX::Runnable;
 use Moose::Role;
 
-our $VERSION = '0.00_01';
+our $VERSION = '0.00_02';
 
 requires 'run';
 
@@ -62,15 +62,18 @@ run it, using C<MooseX::Runnable::Run>.
 
 The syntax is:
 
+  mx-run Class::Name
+
   mx-run <args for mx-run> -- Class::Name <args for Class::Name>
 
 for example:
 
-  mx-run -Ilib -- App::HelloWorld --args --go --here
+  mx-run -Ilib App::HelloWorld --args --go --here
 
 or:
 
-  mx-run -Ilib +Persistent --port 8080 -Persistent -- App::HelloWorld --args --go --here
+  mx-run -Ilib +Persistent --port 8080 -- App::HelloWorld --args --go --here
+
 =head2 C<MooseX::Runnable::Run>
 
 If you don't want to invoke your app with C<mx-run>, you can write a