Class: Tagomatic::Options

Inherits:
Hash
  • Object
show all
Defined in:
lib/tagomatic/options.rb

Instance Method Summary collapse

Constructor Details

#initializeOptions

Returns a new instance of Options.



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/tagomatic/options.rb', line 7

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[:removeurls] = false
  self[:showtags] = false
  self[:underscores] = false
  self[:verbose] = false
end