graphite-api 0.1.3 → 0.1.4

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjA4NDIxZWQzMGJkZTdmMjdkYmU0NTUwOTY2YTUxY2IzNWRlMTg4YQ==
4
+ NWUzY2MzYTc2ODA5ZDZiM2VlNzdhYTRmYzExZmYzMjgwNTI3ZjE5Mw==
5
5
  data.tar.gz: !binary |-
6
- YWVlMzhlOTliMzA3M2I5NDdhNTVhM2Y1MjZmNjIwMDk2ZTE1ODc0YQ==
6
+ NzUyMmQyMzNlZGZjNjQ0MzYwM2ExOTllMjg3Mjc1NDRkMTNlZDMzNg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NjU0YTY1YjY1NTVhYTNlZTYyZDUwMmVkY2M5NzZkODAxYTJlMWY0NjdhNTMz
10
- NmUyNzk4ZjZiMTdhNjJmMTBjMjFhYTQ1ODQwYzRjNzlhMmFkNTUxNGFiMWNi
11
- MDRkNzE3YmI4Y2NhYzVlZjMzM2JmNWVkMWEyMzUwMzViZWFhYTU=
9
+ NDZiYWYzMWFjMzhjYmVlZDU2YjMwZjNhODQzOWY4ZTFlOTRmMGJlOWUzYTk0
10
+ ZjYxNTliMTY4NTY2ZDU5ZDRiZmFlN2I0MjAwY2E0YmFlNGZmNjIyYTFiMDAy
11
+ NmQwMmQ0MzZjYjJmOWI3NDI0YTliZTQxZTMxNWVmNDg3YTViMzc=
12
12
  data.tar.gz: !binary |-
13
- N2VjMDZmYmMxMmY5YTBjNDRiMzcyZTBkYzljMjk0ZTU5MGNjMTU0ODc2NTAy
14
- MGFiZThlNDYxNTQ4NDkyM2YwNjliMjQwNjU3MzFhMTVjMzZiNWM4MjE4ZmEy
15
- ZTliZjUwMTVhZmIxOTdkNzM4Mzc3MWFjMWYyYTYwYWY0NDhjN2Q=
13
+ MjNlNzhhMDYwMTFlYjEzZmY0N2QwZWRjNDY2MTJmYmU5ZDU4Y2Q0MjRiZWRh
14
+ Njk3YTkxYzNiOGFjOTJlZmYyZjhlYmY2YWU3ZmE5MzE0ZjcxODJmY2ZlMmRk
15
+ NTFkY2VmMzM2ZWZkYjEyOGExYTc5Njc2MWViMGZjMWI3ZDNkZGQ=
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ end
11
11
 
12
12
  task(:test => :functional) { ENV['with_coverage'] = "true" }
13
13
 
14
- Rake::TestTask.new(:test) do |t|
14
+ Rake::TestTask.new do |t|
15
15
  t.libs << "tests"
16
16
  t.pattern = "tests/**/*_test.rb"
17
17
  end
@@ -25,7 +25,7 @@ module GraphiteAPI
25
25
 
26
26
  CHARS_TO_BE_IGNORED = ["\r"]
27
27
  END_OF_STREAM = "\n"
28
- VALID_MESSAGE = /^[\w|\.]+ \d+(?:\.|\d)* \d+$/
28
+ VALID_MESSAGE = /^[\w|\.|-]+ \d+(?:\.|\d)* \d+$/
29
29
 
30
30
  def initialize options
31
31
  @options = options
@@ -1,3 +1,3 @@
1
1
  module GraphiteAPI
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphite-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eran Barak Levi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-29 00:00:00.000000000 Z
11
+ date: 2014-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eventmachine
@@ -16,16 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
- version: !binary |-
20
- MC4zLjM=
19
+ version: 0.3.3
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
24
  - - ! '>='
26
25
  - !ruby/object:Gem::Version
27
- version: !binary |-
28
- MC4zLjM=
26
+ version: 0.3.3
29
27
  - !ruby/object:Gem::Dependency
30
28
  name: zscheduler
31
29
  requirement: !ruby/object:Gem::Requirement
@@ -50,9 +48,10 @@ files:
50
48
  - README.md
51
49
  - Rakefile
52
50
  - bin/graphite-middleware
51
+ - lib/graphite-api.rb
53
52
  - lib/graphite-api/buffer.rb
54
- - lib/graphite-api/cache/memory.rb
55
53
  - lib/graphite-api/cache.rb
54
+ - lib/graphite-api/cache/memory.rb
56
55
  - lib/graphite-api/cli.rb
57
56
  - lib/graphite-api/client.rb
58
57
  - lib/graphite-api/connector.rb
@@ -62,7 +61,6 @@ files:
62
61
  - lib/graphite-api/runner.rb
63
62
  - lib/graphite-api/utils.rb
64
63
  - lib/graphite-api/version.rb
65
- - lib/graphite-api.rb
66
64
  homepage: http://www.kontera.com
67
65
  licenses: []
68
66
  metadata: {}
@@ -82,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
80
  version: '0'
83
81
  requirements: []
84
82
  rubyforge_project: graphite-api
85
- rubygems_version: 2.1.9
83
+ rubygems_version: 2.2.2
86
84
  signing_key:
87
85
  specification_version: 4
88
86
  summary: Graphite Ruby Client