Class: TheCity::FundReader

Inherits:
ApiReader show all
Defined in:
lib/readers/fund_reader.rb

Instance Attribute Summary

Attributes inherited from ApiReader

#headers

Instance Method Summary collapse

Methods inherited from ApiReader

#load_feed, #rate_limit, #rate_limit_remaining

Constructor Details

#initialize(fund_id, cacher = nil) ⇒ FundReader

Constructor.

fund_id The ID of the fund to load. CacheAdapter cacher (optional) The cacher to be used to cache data.



9
10
11
12
13
14
15
# File 'lib/readers/fund_reader.rb', line 9

def initialize(fund_id, cacher = nil)
  #@class_key = "funds_#{fund_id}"   
  @url_data_path = "/funds/#{fund_id}"
  
  # The object to store and load the cache.
  @cacher = cacher unless cacher.nil?    
end