File: help.rb

package info (click to toggle)
ruby-twitter-oauth 0.4.94-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: ruby: 446; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module TwitterOAuth
  class Client

    # Returns the current rate limits for methods belonging to the specified
    # resource families. Each 1.1 API resource belongs to a "resource family"
    # which is indicated in its method documentation. You can typically
    # determine a method's resource family from the first component of the path
    # after the...
    def rate_limit_status
      get('/application/rate_limit_status.json')
    end

  end
end