* MooseX::Getopt: _get_options_from_configfile renamed to get_options_from_configfile.
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Session.pm
index 3359f9a..bdb0417 100644 (file)
@@ -23,13 +23,6 @@ has classes_filter => (
     default => sub { sub { 1 } },
 );
 
-# Explicite parameters for new_with_options
-has params => (
-    is => 'rw',
-    isa => 'HashRef',
-    default => sub { {} },
-);
-
 # Original @ARGV values
 has ARGV => (
     is => 'rw',
@@ -171,11 +164,6 @@ searching proper classes to create options list.  The filter passes any
 class by default but L<MooseX::Getopt> will search the attributes only
 in own class, if new session is created implicity.
 
-=item B<params>
-
-This accessor contains the parameters which will be included to each
-L<MooseX::Getopt>->new_with_options call.
-
 =item B<ARGV>
 
 This accessor contains a reference to a copy of the C<@ARGV> array as it
@@ -189,8 +177,9 @@ un-mangled.
 
 =item B<options>
 
-This accessor contains an arrayref of options parsed from command line
-by L<MooseX::Getopt::Parser>.
+This accessor contains an arrayref of options parsed from command line by
+L<MooseX::Getopt::Parser>.  If the options list are not empty before parsing
+the command line, the old list will be included to new list.
 
 =item B<BUILD>