Class: Singly::Services::Tumblr
- Inherits:
-
Object
- Object
- Singly::Services::Tumblr
show all
- Includes:
- Endpoint, Service
- Defined in:
- lib/singly/api/services/tumblr.rb
Instance Attribute Summary
Attributes included from Endpoint
#options, #path
Instance Method Summary
collapse
Methods included from Service
included, #service=, #service_endpoint
Methods included from Endpoint
#fetch, #initialize, #url, #validate
Instance Method Details
#dashboard(params = {}) ⇒ Object
12
13
14
|
# File 'lib/singly/api/services/tumblr.rb', line 12
def dashboard(params={})
service_endpoint(__method__, params)
end
|
#following(params = {}) ⇒ Object
16
17
18
|
# File 'lib/singly/api/services/tumblr.rb', line 16
def following(params={})
service_endpoint(__method__, params)
end
|
#posts(params = {}) ⇒ Object
20
21
22
|
# File 'lib/singly/api/services/tumblr.rb', line 20
def posts(params={})
service_endpoint(__method__, params)
end
|
#self(params = {}) ⇒ Object
8
9
10
|
# File 'lib/singly/api/services/tumblr.rb', line 8
def self(params={})
service_endpoint(__method__, params)
end
|