Class: Heroics::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/heroics/configuration.rb

Overview

Attempts to load configuration, provides defaults, and provide helpers to access that data

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ Configuration

Returns a new instance of Configuration.

Yields:

  • (_self)

Yield Parameters:



12
13
14
15
16
17
18
# File 'lib/heroics/configuration.rb', line 12

def initialize
  @options = {}
  @options[:cache] = 'Moneta.new(:Memory)'
  @options[:default_headers] = {}

  yield self if block_given?
end

Instance Attribute Details

#base_urlObject

Returns the value of attribute base_url.



6
7
8
# File 'lib/heroics/configuration.rb', line 6

def base_url
  @base_url
end

#cache_pathObject

Returns the value of attribute cache_path.



6
7
8
# File 'lib/heroics/configuration.rb', line 6

def cache_path
  @cache_path
end

#module_nameObject

Returns the value of attribute module_name.



6
7
8
# File 'lib/heroics/configuration.rb', line 6

def module_name
  @module_name
end

#optionsObject (readonly)

Returns the value of attribute options.



6
7
8
# File 'lib/heroics/configuration.rb', line 6

def options
  @options
end

#schemaObject

Returns the value of attribute schema.



6
7
8
# File 'lib/heroics/configuration.rb', line 6

def schema
  @schema
end

Class Method Details

.defaultsObject



8
9
10
# File 'lib/heroics/configuration.rb', line 8

def self.defaults
  @defaults ||= Configuration.new
end

Instance Method Details

#headers=(headers) ⇒ Object



40
41
42
43
# File 'lib/heroics/configuration.rb', line 40

def headers=(headers)
  raise "Must provide a hash of headers" unless headers.is_a?(Hash)
  @options[:default_headers] = headers
end

#schema_filepath=(schema_filepath) ⇒ Object



24
25
26
# File 'lib/heroics/configuration.rb', line 24

def schema_filepath=(schema_filepath)
  @schema = Heroics::Schema.new(MultiJson.decode(open(schema_filepath).read))
end