scout_api 1.0.0 → 1.0.1

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.
data/CHANGELOG CHANGED
@@ -9,4 +9,8 @@ Initial release.
9
9
 
10
10
  == 1.0.0
11
11
 
12
- * Updates for YARD documentation formatting
12
+ * Updates for YARD documentation formatting
13
+
14
+ == 1.0.1
15
+
16
+ * Removed debugging output in Metric#to_sparkline
@@ -141,8 +141,6 @@ class Scout::Metric < Hashie::Mash
141
141
  def self.to_sparkline(function,id_or_name,options = {})
142
142
  start_time,end_time=format_times(options)
143
143
  consolidate,name,ids=series_options(id_or_name,options)
144
- puts options.inspect
145
- puts start_time.inspect
146
144
  response = Scout::Account.get("/descriptors/sparkline?name=#{CGI.escape(name.to_s)}&ids=#{ids}&function=#{function}&consolidate=#{consolidate}&plugin_ids=#{options[:plugin_ids]}&server_ids=#{options[:server_ids]}&group_ids=#{options[:group_ids]}&start=#{start_time}&end=#{end_time}&size=#{options[:size]}&line_color=#{options[:line_color]}&line_width=#{options[:line_width]}")
147
145
 
148
146
  if response['error']
@@ -1,3 +1,3 @@
1
1
  module Scout
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
data/scout_api.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{scout_api}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jesse Newland", "Derek Haynes"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_api
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jesse Newland