Class: Azeroth::Options

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/azeroth/options.rb

Constant Summary collapse

DEFAULT_OPTIONS =
{
}.freeze

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Options

Returns a new instance of Options.



8
9
10
# File 'lib/azeroth/options.rb', line 8

def initialize(options)
  super(DEFAULT_OPTIONS.merge(options))
end