microphite 0.5.2 → 0.5.3

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.md CHANGED
@@ -1,9 +1,13 @@
1
1
  Microphite CHANGELOG
2
2
  ====================
3
3
 
4
+ v0.5.3
5
+ ------
6
+ - Change default flush period to 1 second for convenience
7
+
4
8
  v0.5.2
5
9
  ------
6
- - More simplification in Client::Base
10
+ - Additional simplification in Client::Base
7
11
 
8
12
  v0.5.1
9
13
  ------
data/README.md CHANGED
@@ -109,7 +109,7 @@ Client Options
109
109
  <td><tt>:flush_interval</tt></td>
110
110
  <td>Numeric</td>
111
111
  <td>How often to flush gathered data (in seconds)</td>
112
- <td><tt>10.0</tt></td>
112
+ <td><tt>1.0</tt></td>
113
113
  </tr>
114
114
  <tr>
115
115
  <td><tt>:limit</tt></td>
data/Rakefile CHANGED
@@ -1 +1,3 @@
1
+ require 'bundler/setup'
2
+
1
3
  Dir['tasks/**/*.rake'].each {|f| load f}
@@ -7,7 +7,7 @@ module Microphite
7
7
  def initialize(options)
8
8
  defaults = {
9
9
  prefix: '', # Prefix every key with this
10
- flush_interval: 10, # How often to flush gathered metrics
10
+ flush_interval: 1.0, # How often to flush gathered metrics
11
11
  limit: 1000000, # Size limit for gather and write stacks
12
12
  error_handler: nil # Callback block for exceptions (mainly for debug/dev)
13
13
  }
@@ -1,3 +1,3 @@
1
1
  module Microphite
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
3
3
  end
data/microphite.gemspec CHANGED
@@ -8,10 +8,10 @@ require 'microphite/version'
8
8
  Gem::Specification.new do |gem|
9
9
  gem.name = 'microphite'
10
10
  gem.version = Microphite::VERSION
11
- gem.authors = %w(Bob Ziuchkovski)
12
- gem.email = %w(bob@bz-technology.com)
13
- gem.summary = 'A blazing fast, thread-safe graphite client'
14
- gem.description = 'A blazing fast, thread-safe graphite client'
11
+ gem.authors = %w(BZ Technology Services, LLC)
12
+ gem.email = %w(support@bz-technology.com)
13
+ gem.summary = 'A tiny and fast, asynchronous graphite client'
14
+ gem.description = 'A tiny and fast, asynchronous graphite client'
15
15
  gem.homepage = 'https://github.com/bz-technology/microphite'
16
16
 
17
17
  gem.add_development_dependency 'rake'
metadata CHANGED
@@ -1,16 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microphite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
- - Bob
9
- - Ziuchkovski
8
+ - BZ
9
+ - Technology
10
+ - Services,
11
+ - LLC
10
12
  autorequire:
11
13
  bindir: bin
12
14
  cert_chain: []
13
- date: 2013-11-20 00:00:00.000000000 Z
15
+ date: 2013-11-21 00:00:00.000000000 Z
14
16
  dependencies:
15
17
  - !ruby/object:Gem::Dependency
16
18
  name: rake
@@ -44,9 +46,9 @@ dependencies:
44
46
  - - ! '>='
45
47
  - !ruby/object:Gem::Version
46
48
  version: '0'
47
- description: A blazing fast, thread-safe graphite client
49
+ description: A tiny and fast, asynchronous graphite client
48
50
  email:
49
- - bob@bz-technology.com
51
+ - support@bz-technology.com
50
52
  executables: []
51
53
  extensions: []
52
54
  extra_rdoc_files: []
@@ -89,7 +91,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
91
  version: '0'
90
92
  segments:
91
93
  - 0
92
- hash: -4476146931496875448
94
+ hash: -1676839146932483609
93
95
  required_rubygems_version: !ruby/object:Gem::Requirement
94
96
  none: false
95
97
  requirements:
@@ -98,13 +100,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
100
  version: '0'
99
101
  segments:
100
102
  - 0
101
- hash: -4476146931496875448
103
+ hash: -1676839146932483609
102
104
  requirements: []
103
105
  rubyforge_project:
104
106
  rubygems_version: 1.8.23
105
107
  signing_key:
106
108
  specification_version: 3
107
- summary: A blazing fast, thread-safe graphite client
109
+ summary: A tiny and fast, asynchronous graphite client
108
110
  test_files:
109
111
  - spec/client/noop_spec.rb
110
112
  - spec/client/socket_spec.rb