module Quandl::Operations::List
Public Instance Methods
all(options = {})
click to toggle source
# File lib/quandl/operations/list.rb, line 8 def all(options = {}) response, response_data = Quandl::Connection.request(:get, Quandl::Util.constructed_path(list_path, options[:params]), options) create_list_from_response(response, response_data) end
create_list_from_response(_response, data)
click to toggle source
# File lib/quandl/operations/list.rb, line 13 def create_list_from_response(_response, data) Quandl::List.new(self, data[lookup_key], data['meta']) end
list_path()
click to toggle source
# File lib/quandl/operations/list.rb, line 17 def list_path default_path end