Module: Quick::Sampler::Config

Extended by:
ActiveSupport::Concern
Includes:
ActiveSupport::Configurable
Included in:
DSL, DSL::Fluidiom
Defined in:
lib/quick/sampler/config.rb

Instance Method Summary collapse

Instance Method Details

#config(options = :none_given) ⇒ Object



15
16
17
18
19
20
21
22
# File 'lib/quick/sampler/config.rb', line 15

def config options = :none_given
  if options == :none_given
    super()
  else
    config.merge!(options)
    self
  end
end