Class: Strings2CSVCommand
- Defined in:
- lib/csvconverter/commands/strings2csv_command.rb
Instance Method Summary collapse
Methods inherited from Command
Instance Method Details
#strings2csv ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/csvconverter/commands/strings2csv_command.rb', line 12 def strings2csv unless .has_key?('filenames') say "No value provided for required options '--filenames'" help("strings2csv") return end converter = Strings2CSV.new() debug_values = converter.dotstrings_to_csv(![:dryrun]) say debug_values.inspect if [:dryrun] end |