ducksboard 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ # 0.1.5
2
+
3
+ - #6 Fixed push requests
data/ducksboard.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ducksboard'
3
- s.version = '0.1.4'
3
+ s.version = '0.1.5'
4
4
  s.summary = "API wrapper for ducksboard.com dashboard"
5
5
  s.description = "Ruby API wrapper for ducksboard realtime dashboard using HTTParty"
6
6
  s.authors = ["Joseph Hsu"]
@@ -28,7 +28,7 @@ module Ducksboard
28
28
 
29
29
  def update(data=nil)
30
30
  @data = data if data
31
- self.class.post('/' + id.to_s,
31
+ self.class.post("#{PUSH_URI}/#{@id.to_s}",
32
32
  :basic_auth => auth,
33
33
  :body => @data.to_json)
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ducksboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -40,6 +40,7 @@ extensions: []
40
40
  extra_rdoc_files: []
41
41
  files:
42
42
  - .gitignore
43
+ - CHANGELOG.markdown
43
44
  - Gemfile
44
45
  - LICENSE
45
46
  - README.mdown