Class: Address
- Inherits:
-
ActiveRecordShared
- Object
- ActiveRecord::Base
- ActiveRecordShared
- Address
- Defined in:
- app/models/address.rb
Overview
Address for a study_subject Actually, this may be used for things other than subjects
Instance Method Summary collapse
-
#csz ⇒ Object
Returns a string with the city, state and zip.
Instance Method Details
#csz ⇒ Object
Returns a string with the city, state and zip
39 40 41 |
# File 'app/models/address.rb', line 39 def csz "#{self.city}, #{self.state} #{self.zip}" end |