Sha256: c63d94c41ada7e6ea3538f1136a998721f1653583cfcbc65e04ba511ea6cd5ff

Contents?: true

Size: 419 Bytes

Versions: 7

Compression:

Stored size: 419 Bytes

Contents

require 'optparse'

module Tagomatic

  class Options < Hash

    def initialize
      self[:cleantags] = false
      self[:cleartags] = false
      self[:files] = []
      self[:formats] = []
      self[:errorstops] = false
      self[:guess] = false
      self[:list] = false
      self[:recurse] = false
      self[:showtags] = false
      self[:underscores] = false
      self[:verbose] = false
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tagomatic-0.1.7 lib/tagomatic/options.rb
tagomatic-0.1.6 lib/tagomatic/options.rb
tagomatic-0.1.5 lib/tagomatic/options.rb
tagomatic-0.1.4 lib/tagomatic/options.rb
tagomatic-0.1.3 lib/tagomatic/options.rb
tagomatic-0.1.2 lib/tagomatic/options.rb
tagomatic-0.1.1 lib/tagomatic/options.rb