Sha256: 8c79067120a9af81967860d29685ec73f4f2966a19651bed7ab96176e0eedff1
Contents?: true
Size: 343 Bytes
Versions: 66
Compression:
Stored size: 343 Bytes
Contents
module FbGraph class Venue < Location attr_accessor :street, :city, :state, :zip, :country def initialize(attributes = {}) super @street = attributes[:street] @city = attributes[:city] @state = attributes[:state] @zip = attributes[:zip] @country = attributes[:country] end end end
Version data entries
66 entries across 66 versions & 1 rubygems