Sha256: 3c8b1ad4fef7640bcbbf5d87583e5bddeab6fb470857a5183b851114b2372088
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
## Ducksboard API Ruby wrapper ### Configuration API Key can be set in the environment export DUCKSBOARD_API_KEY='YOURKEY' or in an initializer Ducksboard.api_key = 'YOURKEY' ### Box widget = Ducksboard::Box.new(1234) # Widget numeric id widget.value = 10 widget.save ### Counter widget = Ducksboard::Counter.new(1234) widget.value = 10 widget.save ### Image widget = Ducksboard::Image.new(1235) widget.source = "https://dashboard.ducksboard.com/static/accounts/img/logo_small.png" # or widget.source = "~/Pictures/logo.png" widget.caption = "Ducksboard logo!" widget.timestamp = 1310649204 widget.save ### Gauge widget = Ducksboard::Graph.new(1235) widget.value = 0.93 widget.save ### Graph # remember that the graph widgets need atleast 2 points before it displays anything widget = Ducksboard::Graph.new(1236) widget.timestamp = Time.now.to_i widget.value = 198 widget.save ### Pin widget = Ducksboard::Pin.new(1234) widget.value = 10 widget.save ### Timeline widget = Ducksboard::Timeline.new(1237) widget.title = "A Title" widget.image = "http://url.to.io/some_image.gif" # or widget.image = :edited # any of the following as a string or symbol: orange, red, green, created, edited or deleted widget.content = "text content" widget.link = "http://google.com"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
atk-ducksboard-0.1.4 | README.mdown |