Sha256: 78c819a1e163912707233208e0e7918bcbe80d836902955ef716d5796ed0349d

Contents?: true

Size: 226 Bytes

Versions: 4

Compression:

Stored size: 226 Bytes

Contents

module LatestStockPrice
  class PriceAll
    API_BASE_URL = "https://latest-stock-price.p.rapidapi.com/any"

    def self.fetch
			uri = URI(API_BASE_URL)
      LatestStockPrice::HttpClient.make_request(uri)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
latest_stock_price-1.0.3 lib/price_all.rb
latest_stock_price-1.0.2 lib/price_all.rb
latest_stock_price-1.0.1 lib/price_all.rb
latest_stock_price-1.0.0 lib/latest_stock_price/price_all.rb