Class: TheCity::TagReader
- Defined in:
- lib/readers/tag_reader.rb
Instance Attribute Summary
Attributes inherited from ApiReader
Instance Method Summary collapse
-
#initialize(tag_id, options = {}, cacher = nil) ⇒ TagReader
constructor
Constructor.
Methods inherited from ApiReader
#load_feed, #rate_limit, #rate_limit_remaining
Constructor Details
#initialize(tag_id, options = {}, cacher = nil) ⇒ TagReader
Constructor.
10 11 12 13 14 15 16 |
# File 'lib/readers/tag_reader.rb', line 10 def initialize(tag_id, = {}, cacher = nil) #@class_key = "tags_#{tag_id}" @url_data_path = "/tags/#{tag_id}" # The object to store and load the cache. @cacher = cacher unless cacher.nil? end |