Methods
#
A
C
F
N
Included Modules
Attributes
[RW] city
[R] country
[RW] state
[RW] street
[RW] zip
Class Public methods
count(conditions = nil, join = nil)
# File actionpack/test/controller/addresses_render_test.rb, line 6
def Address.count(conditions = nil, join = nil)
  nil
end
find(*args)
# File actionpack/test/controller/addresses_render_test.rb, line 14
def self.find(*args)
  []
end
find_all(arg1, arg2, arg3, arg4)
# File actionpack/test/controller/addresses_render_test.rb, line 10
def Address.find_all(arg1, arg2, arg3, arg4)
  []
end
new(street, city, country)
# File activerecord/test/models/customer.rb, line 11
def initialize(street, city, country)
  @street, @city, @country = street, city, country
end
Instance Public methods
==(other)
# File activerecord/test/models/customer.rb, line 19
def ==(other)
  other.is_a?(self.class) && other.street == street && other.city == city && other.country == country
end
attributes()
# File activemodel/test/cases/serializers/xml_serialization_test.rb, line 31
def attributes
  instance_values
end
close_to?(other_address)
# File activerecord/test/models/customer.rb, line 15
def close_to?(other_address)
  city == other_address.city && country == other_address.country
end