Class: ShortPixel::Resource

Inherits:
Object
  • Object
show all
Defined in:
lib/shortpixel/resource.rb

Direct Known Subclasses

PostReducerResource, ReducerResource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Resource

Returns a new instance of Resource.



5
6
7
# File 'lib/shortpixel/resource.rb', line 5

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



3
4
5
# File 'lib/shortpixel/resource.rb', line 3

def client
  @client
end

Instance Method Details

#post_request(url, body) ⇒ Object



9
10
11
# File 'lib/shortpixel/resource.rb', line 9

def post_request(url, body)
  client.connection.post(url, body.merge(key: client.api_key))
end