Sha256: 72364d9317c96fdef9ec2cb99f83f02063317708e8e3e16edfef28d152acc989
Contents?: true
Size: 311 Bytes
Versions: 7
Compression:
Stored size: 311 Bytes
Contents
module Omniship class Contact attr_reader :name, :attention, :account, :phone, :fax, :email def initialize(options={}) @name = options[:name] @attention = options[:attention] @phone = options[:phone] @fax = options[:fax] @email = options[:email] end end end
Version data entries
7 entries across 7 versions & 1 rubygems