Sha256: 6f1ee553cdadac0a0cf13bb2907b5e17728f416382ace465098752f4852381b8

Contents?: true

Size: 336 Bytes

Versions: 1

Compression:

Stored size: 336 Bytes

Contents

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