Sha256: b6b96fc0dd6cad0042435806b22e1333fb6a33c13cd989056eb7e954b11102e0
Contents?: true
Size: 586 Bytes
Versions: 36
Compression:
Stored size: 586 Bytes
Contents
module Fog module Bluebox class Real # Get details of a product # # ==== Parameters # * product_id<~Integer> - Id of flavor to lookup # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO def get_product(product_id) request( :expects => 200, :method => 'GET', :path => "api/block_products/#{product_id}.json" ) end end class Mock def get_product(product_id) Fog::Mock.not_implemented end end end end
Version data entries
36 entries across 36 versions & 2 rubygems