lib/geo_certs/order/contact.rb in geocerts-0.0.20 vs lib/geo_certs/order/contact.rb in geocerts-0.0.21
- old
+ new
@@ -3,11 +3,11 @@
##
# Used for setting or retrieving the Contact information associated with a
# GeoCerts::Order.
#
- class Contact # :nodoc:all
+ class Contact
attr_accessor :email,
:first_name,
:last_name,
:phone,
@@ -18,10 +18,10 @@
attributes.each_pair do |name, value|
send("#{name}=", value) if respond_to?(name)
end
end
- def to_geocerts_hash
+ def to_geocerts_hash #:nodoc:
raise(NotImplementedError)
end
end
\ No newline at end of file