Sha256: b4ad35a55e29b77745536866075acfa67e9a6f28c3ba2134efbfd6e67a4eaab9
Contents?: true
Size: 831 Bytes
Versions: 1
Compression:
Stored size: 831 Bytes
Contents
module Popolo # A physical location or a mail delivery point. class Address include Mongoid::Document embedded_in :addressable, polymorphic: true # The address' type, e.g. 'capitol'. field :type, type: String # The postal address. field :address, type: String # A voice telephone number. field :voice, type: Integer # A facsimile telephone number. field :fax, type: Integer # A mobile telephone number. field :cell, type: Integer # A toll-free telephone number. field :tollfree, type: Integer # A video conferencing telephone number. field :video, type: Integer # A paging device telephone number. field :pager, type: Integer # A telecommunication device for people with hearing or speech difficulties. field :textphone, type: Integer end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
popolo-0.0.1 | app/models/popolo/address.rb |