Module: Relax::Configurable

Included in:
Client
Defined in:
lib/relax/configurable.rb

Instance Method Summary collapse

Instance Method Details

#configObject



3
4
5
# File 'lib/relax/configurable.rb', line 3

def config
  @config ||= Config.new
end

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

Yields:



7
8
9
10
# File 'lib/relax/configurable.rb', line 7

def configure
  yield(config)
  self
end