Top Level Namespace

Defined Under Namespace

Classes: Configuration

Instance Method Summary collapse

Instance Method Details

#Configuration(*a, &b) ⇒ Object



231
232
233
234
235
236
237
# File 'lib/configuration.rb', line 231

def Configuration(*a, &b)
  if a.empty? and b.nil?
    const_get :Configuration
  else
    Configuration.new(*a, &b)
  end
end