Sha256: 2abb465ed31f659fbd5dda00f30cc3acded497b3395e3b0aa86a58c74cb00f54
Contents?: true
Size: 612 Bytes
Versions: 7
Compression:
Stored size: 612 Bytes
Contents
require 'gecko/record/base' module Gecko module Record class Contact < Base belongs_to :company attribute :email, String attribute :first_name, String attribute :last_name, String attribute :location, String attribute :mobile, String attribute :notes, String attribute :phone_number, String attribute :fax, String attribute :position, String attribute :phone, String attribute :status, String, readonly: true end class ContactAdapter < BaseAdapter end end end
Version data entries
7 entries across 7 versions & 1 rubygems