class Object

Public Instance Methods

Hen(args) { ... } click to toggle source

Delegates to Hen.new.

# File lib/hen.rb, line 323
def Hen(args, &block)
  Hen.new(args, &block)
end
Hen!(args) { ... } click to toggle source

Delegates to Hen.new, but overwrites any existing hen with the same name.

# File lib/hen.rb, line 332
def Hen!(args, &block)
  Hen.new(args, true, &block)
end