Sha256: 51d2ca038f6eb4a3b324123dfe3a0df4271763e2f30806d8b2b834186e5ab616

Contents?: true

Size: 430 Bytes

Versions: 1

Compression:

Stored size: 430 Bytes

Contents

module Hungry
  class Location < Resource
    
    self.endpoint = '/locations'
    
    ### ATTRIBUTES:
    
                  ### Location:
    attr_accessor :id, :name, :type, :url, :geolocation,
                  
                  ### Utility:
                  :resources, :counters
    
    ### RESOURCES:
    
    has_many :venues, Venue
    
    has_many :nearby_venues, Venue
    
    has_many :tags, Tag
    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hungry-0.0.1 lib/hungry/location.rb