Sha256: fa6c96502b99393512ea920b387a21d77aacdd35cfd2aef9b18afda8dff19902
Contents?: true
Size: 358 Bytes
Versions: 35
Compression:
Stored size: 358 Bytes
Contents
class Flickr::Photos::Location attr_accessor :latitude, :longitude, :accuracy # Create an instance of Flickr::Photos::Location # # Params # * attributes (Required) # a hash of attributes used to set the initial values of the Location 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