Sha256: 7de60a1708ab1f392e3a12de4730fea5ce0e9aaca9291dc8d2b39ea3c583998c

Contents?: true

Size: 320 Bytes

Versions: 1

Compression:

Stored size: 320 Bytes

Contents

module TedApi
  class Client
    module Tags
      
      ##
      # http://developer.ted.com/API_Docs#tags
      
      def tags(tag=nil, options={}, raw=false)
        if tag.nil?
          get('tags', options, raw)
        else
          get("tags/#{tag}", 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/tags.rb