Sha256: ea7e1bb1c18bffad246a4b7d37f0574ad435be976d0bac69ff8e99c8d3bc65d0

Contents?: true

Size: 205 Bytes

Versions: 6

Compression:

Stored size: 205 Bytes

Contents

# frozen_string_literal: true

module Azeroth
  class Options < ::OpenStruct
    DEFAULT_OPTIONS = {
    }.freeze

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
azeroth-0.3.0 lib/azeroth/options.rb
azeroth-0.2.0 lib/azeroth/options.rb
azeroth-0.1.0 lib/azeroth/options.rb
azeroth-0.0.7 lib/azeroth/options.rb
azeroth-0.0.6 lib/azeroth/options.rb
azeroth-0.0.5 lib/azeroth/options.rb