Top Level Namespace

Defined Under Namespace

Classes: Configuration

Instance Method Summary collapse

Instance Method Details

#Configuration(*a, &b) ⇒ Object



227
228
229
230
231
232
233
# File 'lib/configuration.rb', line 227

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