class Thingdeck::Collections::Thing

Public Class Methods

new(wrapper) click to toggle source
Calls superclass method
# File lib/thingdeck/collections/thing.rb, line 4
def initialize(wrapper)
  super(wrapper, 'collections', 'things')
end

Public Instance Methods

remove(cid, params = {}) click to toggle source
# File lib/thingdeck/collections/thing.rb, line 8
def remove(cid, params = {})
  @wrapper.perform_request { |c| c.delete(url(cid), params) }
end