class Thingdeck::Thing

Public Class Methods

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

Public Instance Methods

properties() click to toggle source
# File lib/thingdeck/thing.rb, line 7
def properties
  @properties ||= Property.new(@wrapper, 'things')
end