lib/gemsmith/templates/%project_name%/lib/%project_path%/cli/parser.rb.erb in gemsmith-19.3.0 vs lib/gemsmith/templates/%project_name%/lib/%project_path%/cli/parser.rb.erb in gemsmith-19.4.0

- old
+ new

@@ -10,12 +10,11 @@ CLIENT = OptionParser.new nil, 40, " " # Order is important. SECTIONS = [Parsers::Core].freeze - def initialize sections: SECTIONS, client: CLIENT, **dependencies - super(**dependencies) - + def initialize(sections: SECTIONS, client: CLIENT, **) + super(**) @sections = sections @client = client @configuration_duplicate = configuration.dup end