module AdjectiveAnimal

Constants

VERSION

Public Class Methods

all() click to toggle source
# File lib/adjective_animal.rb, line 11
def self.all
  out = Array.new
  ('a'..'z').to_a.each do |l|
    out.push(self.new(l.to_s))
  end
  out
end
new(options={}) click to toggle source
# File lib/adjective_animal.rb, line 7
def self.new(options={})
  self::AdjAni.new(options)
end