Class: Twitter::Request
- Inherits:
-
Object
- Object
- Twitter::Request
- Extended by:
- Forwardable
- Defined in:
- lib/twitter/request.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#method ⇒ Object
readonly
Returns the value of attribute method.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(client, method, path, options = {}) ⇒ Request
constructor
A new instance of Request.
- #perform ⇒ Object
- #uri ⇒ Object
Constructor Details
#initialize(client, method, path, options = {}) ⇒ Request
Returns a new instance of Request.
17 18 19 |
# File 'lib/twitter/request.rb', line 17 def initialize(client, method, path, ={}) @client, @method, @path, @options = client, method, path, {:mash => true}.merge() end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
13 14 15 |
# File 'lib/twitter/request.rb', line 13 def client @client end |
#method ⇒ Object (readonly)
Returns the value of attribute method.
13 14 15 |
# File 'lib/twitter/request.rb', line 13 def method @method end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
13 14 15 |
# File 'lib/twitter/request.rb', line 13 def @options end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
13 14 15 |
# File 'lib/twitter/request.rb', line 13 def path @path end |
Class Method Details
.get(client, path, options = {}) ⇒ Object
5 6 7 |
# File 'lib/twitter/request.rb', line 5 def self.get(client, path, ={}) new(client, :get, path, ).perform end |
.post(client, path, options = {}) ⇒ Object
9 10 11 |
# File 'lib/twitter/request.rb', line 9 def self.post(client, path, ={}) new(client, :post, path, ).perform end |
Instance Method Details
#perform ⇒ Object
33 34 35 |
# File 'lib/twitter/request.rb', line 33 def perform make_friendly(send("perform_#{method}")) end |
#uri ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/twitter/request.rb', line 21 def uri @uri ||= begin uri = URI.parse(path) if [:query] && [:query] != {} uri.query = to_query([:query]) end uri.to_s end end |