Method: Attune::Configurable#configure

Defined in:
lib/attune/configurable.rb

#configure {|_self| ... } ⇒ Object

Examples:

configure

Attune.configure do |c|
  c.endpoint = "http://example.com:8080/"
  c.timeout  = 5
end

Yields:

  • (_self)

Yield Parameters:



45
46
47
# File 'lib/attune/configurable.rb', line 45

def configure
  yield self
end