canvas_statsd 1.0.7 → 1.0.8
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 +4 -4
- data/spec/canvas_statsd/statsd_spec.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf80962c746b4bd54e9a0e57a75764f33b6b35eb
|
|
4
|
+
data.tar.gz: 733d4b3269e6a8b636451f60aa8b48027b0f7600
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51687134299407eb74454c51b07bf321af1a52908fb353ac131b173f19a3370f25eede3c0dceac2020af07e0d5fec2cb25351e0d0bc83e4086595abbbf5f37ef
|
|
7
|
+
data.tar.gz: a2d02a7f7bdb17633639de33f99d283f22c21529729a17aff09d6ff0112379f3824948972c27c9de161ab249a068bbf2565c4f400e2b8cf954b4377366699481
|
|
@@ -63,12 +63,12 @@ describe CanvasStatsd::Statsd do
|
|
|
63
63
|
it "configures a statsd instance" do
|
|
64
64
|
expect(CanvasStatsd::Statsd.instance).to be_nil
|
|
65
65
|
|
|
66
|
-
CanvasStatsd.settings = { :host => "
|
|
66
|
+
CanvasStatsd.settings = { :host => "localhost", :namespace => "test", :port => 1234 }
|
|
67
67
|
CanvasStatsd::Statsd.reset_instance
|
|
68
68
|
|
|
69
69
|
instance = CanvasStatsd::Statsd.instance
|
|
70
70
|
expect(instance).to be_a ::Statsd
|
|
71
|
-
expect(instance.host).to eq "
|
|
71
|
+
expect(instance.host).to eq "localhost"
|
|
72
72
|
expect(instance.port).to eq 1234
|
|
73
73
|
expect(instance.namespace).to eq "test"
|
|
74
74
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: canvas_statsd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Cloward
|
|
@@ -9,22 +9,22 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-12-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: statsd-ruby
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- -
|
|
18
|
+
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 1.0
|
|
20
|
+
version: '1.0'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
|
-
- -
|
|
25
|
+
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 1.0
|
|
27
|
+
version: '1.0'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: aroi
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
128
128
|
version: '0'
|
|
129
129
|
requirements: []
|
|
130
130
|
rubyforge_project:
|
|
131
|
-
rubygems_version: 2.
|
|
131
|
+
rubygems_version: 2.6.7
|
|
132
132
|
signing_key:
|
|
133
133
|
specification_version: 4
|
|
134
134
|
summary: Statsd for Canvas
|