diff options
Diffstat (limited to 'lib/mixlib/cli.rb')
-rw-r--r-- | lib/mixlib/cli.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/mixlib/cli.rb b/lib/mixlib/cli.rb index bdaabdb..aa0b70b 100644 --- a/lib/mixlib/cli.rb +++ b/lib/mixlib/cli.rb @@ -128,6 +128,9 @@ module Mixlib # hash. attr_accessor :default_config + # Any arguments which were not parsed and placed in "config"--the leftovers. + attr_accessor :cli_arguments + # Banner for the option parser. If the option parser is printed, e.g., by # `puts opt_parser`, this string will be used as the first line. attr_accessor :banner @@ -235,6 +238,7 @@ module Mixlib end end + @cli_arguments = argv argv end |