class Contract

Attributes

bye_count[RW]
hi_count[RW]

Public Instance Methods

bye() click to toggle source
# File activerecord/test/models/contract.rb, line 18
def bye
  @bye_count ||= 0
  @bye_count += 1
end
hi() click to toggle source
# File activerecord/test/models/contract.rb, line 13
def hi
  @hi_count ||= 0
  @hi_count += 1
end