Sha256: fed235e7e4e84a8ac68c53f59115b9b45bd22f359944289f356fc9dfa4354695
Contents?: true
Size: 468 Bytes
Versions: 35
Compression:
Stored size: 468 Bytes
Contents
# wrapping class to hold a flickr contact # class Flickr::Contacts::Contact attr_accessor :nsid, :friend, :family, :iconfarm, :iconserver, :location, :username, :ignored, :realname, :path_alias # create a new instance of a flickr note. # # Params # * attributes (Required) # a hash of attributes used to set the initial values of the contact object def initialize(attributes) attributes.each do |k,v| send("#{k}=", v) end end end
Version data entries
35 entries across 35 versions & 11 rubygems