Sha256: 8af8f9ba7f1cfce55501fd0ec8281c2177b49adc06d04b20f3c996b88d832fd2

Contents?: true

Size: 336 Bytes

Versions: 1

Compression:

Stored size: 336 Bytes

Contents

module TedApi
  class Client
    module Quotes
      
      ##
      # http://developer.ted.com/API_Docs#quotes
      
      def quotes(quote=nil, options={}, raw=false)
        if quote.nil?
          get('quotes', options, raw)
        else
          get("quotes/#{quote}", options, raw)
        end
      end
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ted_api-0.1 lib/ted_api/client/quotes.rb