Class: Address

Inherits:
ActiveRecordShared show all
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

Instance Method Details

#cszObject

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