Sha256: 77be507e901fdec327ebd7409a44fcdffaa48a946cf84019fe59b197839ed3c5
Contents?: true
Size: 427 Bytes
Versions: 43
Compression:
Stored size: 427 Bytes
Contents
# wrapping class to hold a flickr comment # class Flickr::Photos::Comment attr_accessor :id, :comment, :author, :author_name, :created_at, :permalink # create a new instance of a flickr comment. # # Params # * attributes (Required) # a hash of attributes used to set the initial values of the comment object def initialize(attributes) attributes.each do |k,v| send("#{k}=", v) end end end
Version data entries
43 entries across 43 versions & 13 rubygems