fozzie 0.0.16 → 0.0.17
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/doc/lib/fozzie/interface.html +2 -4
- data/doc/lib/fozzie/socket.html +9 -5
- data/lib/fozzie/interface.rb +2 -4
- data/lib/fozzie/socket.rb +10 -5
- data/lib/fozzie/version.rb +1 -1
- data/spec/lib/fozzie/interface_spec.rb +37 -12
- metadata +30 -30
@@ -118,7 +118,6 @@
|
|
118
118
|
</td>
|
119
119
|
<td class=code>
|
120
120
|
<div class='highlight'><pre> <span class="k">def</span> <span class="nf">time</span><span class="p">(</span><span class="n">stat</span><span class="p">,</span> <span class="n">sample_rate</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
|
121
|
-
<span class="n">stat</span> <span class="o">=</span> <span class="n">stat</span><span class="o">.</span><span class="n">flatten</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="s1">'.'</span><span class="p">)</span> <span class="k">if</span> <span class="n">stat</span><span class="o">.</span><span class="n">kind_of?</span><span class="p">(</span><span class="nb">Array</span><span class="p">)</span>
|
122
121
|
<span class="n">start</span> <span class="o">=</span> <span class="no">Time</span><span class="o">.</span><span class="n">now</span>
|
123
122
|
<span class="n">result</span> <span class="o">=</span> <span class="k">yield</span>
|
124
123
|
<span class="n">timing</span><span class="p">(</span><span class="n">stat</span><span class="p">,</span> <span class="p">((</span><span class="no">Time</span><span class="o">.</span><span class="n">now</span> <span class="o">-</span> <span class="n">start</span><span class="p">)</span> <span class="o">*</span> <span class="mi">1000</span><span class="p">)</span><span class="o">.</span><span class="n">round</span><span class="p">,</span> <span class="n">sample_rate</span><span class="p">)</span>
|
@@ -257,7 +256,7 @@
|
|
257
256
|
</td>
|
258
257
|
<td class=code>
|
259
258
|
<div class='highlight'><pre> <span class="k">def</span> <span class="nf">increment_on</span><span class="p">(</span><span class="n">stat</span><span class="p">,</span> <span class="n">perf</span><span class="p">,</span> <span class="n">sample_rate</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
|
260
|
-
<span class="n">key</span> <span class="o">=</span> <span class="
|
259
|
+
<span class="n">key</span> <span class="o">=</span> <span class="o">[</span><span class="n">stat</span><span class="p">,</span> <span class="p">(</span><span class="n">perf</span> <span class="p">?</span> <span class="s2">"success"</span> <span class="p">:</span> <span class="s2">"fail"</span><span class="p">)</span><span class="o">]</span>
|
261
260
|
<span class="n">increment</span><span class="p">(</span><span class="n">key</span><span class="p">,</span> <span class="n">sample_rate</span><span class="p">)</span>
|
262
261
|
<span class="n">perf</span>
|
263
262
|
<span class="k">end</span></pre></div>
|
@@ -275,8 +274,7 @@
|
|
275
274
|
</td>
|
276
275
|
<td class=code>
|
277
276
|
<div class='highlight'><pre> <span class="k">def</span> <span class="nf">event</span><span class="p">(</span><span class="nb">type</span><span class="p">,</span> <span class="n">app</span> <span class="o">=</span> <span class="kp">nil</span><span class="p">)</span>
|
278
|
-
<span class="n">
|
279
|
-
<span class="n">timing</span> <span class="n">stat</span><span class="p">,</span> <span class="no">Time</span><span class="o">.</span><span class="n">now</span><span class="o">.</span><span class="n">usec</span>
|
277
|
+
<span class="n">timing</span> <span class="o">[</span><span class="s2">"event"</span><span class="p">,</span> <span class="nb">type</span><span class="o">.</span><span class="n">to_s</span><span class="p">,</span> <span class="n">app</span><span class="o">]</span><span class="p">,</span> <span class="no">Time</span><span class="o">.</span><span class="n">now</span><span class="o">.</span><span class="n">usec</span>
|
280
278
|
<span class="k">end</span>
|
281
279
|
|
282
280
|
<span class="k">end</span>
|
data/doc/lib/fozzie/socket.html
CHANGED
@@ -53,14 +53,18 @@
|
|
53
53
|
<a class="pilcrow" href="#section-2">¶</a>
|
54
54
|
</div>
|
55
55
|
<p>Send the statistic to the server</p>
|
56
|
+
|
57
|
+
<p>Creates the Statsd key from the given values, and sends to socket (depending on sample rate)</p>
|
56
58
|
</td>
|
57
59
|
<td class=code>
|
58
60
|
<div class='highlight'><pre> <span class="k">def</span> <span class="nf">send</span><span class="p">(</span><span class="n">stat</span><span class="p">,</span> <span class="n">delta</span><span class="p">,</span> <span class="nb">type</span><span class="p">,</span> <span class="n">sample_rate</span><span class="p">)</span>
|
59
|
-
<span class="n">
|
60
|
-
<span class="n">stat</span>
|
61
|
+
<span class="n">stat</span> <span class="o">=</span> <span class="o">[</span><span class="n">stat</span><span class="o">].</span><span class="n">flatten</span><span class="o">.</span><span class="n">compact</span><span class="o">.</span><span class="n">collect</span><span class="p">(</span><span class="o">&</span><span class="ss">:to_s</span><span class="p">)</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="s1">'.'</span><span class="p">)</span><span class="o">.</span><span class="n">downcase</span>
|
62
|
+
<span class="n">stat</span> <span class="o">=</span> <span class="n">stat</span><span class="o">.</span><span class="n">gsub</span><span class="p">(</span><span class="s1">'::'</span><span class="p">,</span> <span class="s1">'.'</span><span class="p">)</span><span class="o">.</span><span class="n">gsub</span><span class="p">(</span><span class="no">RESERVED_CHARS_REGEX</span><span class="p">,</span> <span class="s1">'_'</span><span class="p">)</span>
|
61
63
|
|
62
|
-
<span class="n">k</span> <span class="o">=</span>
|
63
|
-
<span class="n">k</span> <span class="o"><<</span> <span class="
|
64
|
+
<span class="n">k</span> <span class="o">=</span> <span class="o">[</span><span class="no">Fozzie</span><span class="o">.</span><span class="n">c</span><span class="o">.</span><span class="n">data_prefix</span><span class="p">,</span> <span class="n">stat</span><span class="o">].</span><span class="n">compact</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="s1">'.'</span><span class="p">)</span>
|
65
|
+
<span class="n">k</span> <span class="o"><<</span> <span class="s2">":"</span>
|
66
|
+
<span class="n">k</span> <span class="o"><<</span> <span class="o">[</span><span class="n">delta</span><span class="p">,</span> <span class="nb">type</span><span class="o">].</span><span class="n">join</span><span class="p">(</span><span class="s1">'|'</span><span class="p">)</span>
|
67
|
+
<span class="n">k</span> <span class="o"><<</span> <span class="s1">'@%s'</span> <span class="o">%</span> <span class="n">sample_rate</span><span class="o">.</span><span class="n">to_s</span> <span class="k">if</span> <span class="n">sample_rate</span> <span class="o"><</span> <span class="mi">1</span>
|
64
68
|
|
65
69
|
<span class="n">sampled</span><span class="p">(</span><span class="n">sample_rate</span><span class="p">)</span> <span class="p">{</span> <span class="n">send_to_socket</span><span class="p">(</span><span class="n">k</span><span class="o">.</span><span class="n">strip</span><span class="p">)</span> <span class="p">}</span>
|
66
70
|
<span class="k">end</span></pre></div>
|
@@ -95,7 +99,7 @@
|
|
95
99
|
<span class="kp">true</span>
|
96
100
|
<span class="p">}</span>
|
97
101
|
<span class="k">rescue</span> <span class="o">=></span> <span class="n">exc</span>
|
98
|
-
<span class="no">Fozzie</span><span class="o">.</span><span class="n">
|
102
|
+
<span class="no">Fozzie</span><span class="o">.</span><span class="n">logger</span><span class="o">.</span><span class="n">debug</span> <span class="p">{</span><span class="s2">"Statsd Failure: </span><span class="si">#{</span><span class="n">exc</span><span class="o">.</span><span class="n">message</span><span class="si">}</span><span class="se">\n</span><span class="si">#{</span><span class="n">exc</span><span class="o">.</span><span class="n">backtrace</span><span class="si">}</span><span class="s2">"</span><span class="p">}</span> <span class="k">if</span> <span class="no">Fozzie</span><span class="o">.</span><span class="n">logger</span>
|
99
103
|
<span class="kp">false</span>
|
100
104
|
<span class="k">end</span>
|
101
105
|
<span class="k">end</span></pre></div>
|
data/lib/fozzie/interface.rb
CHANGED
@@ -37,7 +37,6 @@ module Fozzie
|
|
37
37
|
#
|
38
38
|
# `Stats.time 'wat' { # Do something... }`
|
39
39
|
def time(stat, sample_rate=1)
|
40
|
-
stat = stat.flatten.join('.') if stat.kind_of?(Array)
|
41
40
|
start = Time.now
|
42
41
|
result = yield
|
43
42
|
timing(stat, ((Time.now - start) * 1000).round, sample_rate)
|
@@ -104,7 +103,7 @@ module Fozzie
|
|
104
103
|
#
|
105
104
|
# `Stats.increment_on 'wat', wat.random?`
|
106
105
|
def increment_on(stat, perf, sample_rate=1)
|
107
|
-
key =
|
106
|
+
key = [stat, (perf ? "success" : "fail")]
|
108
107
|
increment(key, sample_rate)
|
109
108
|
perf
|
110
109
|
end
|
@@ -113,8 +112,7 @@ module Fozzie
|
|
113
112
|
#
|
114
113
|
# `Stats.event 'wat', 'app'`
|
115
114
|
def event(type, app = nil)
|
116
|
-
|
117
|
-
timing stat, Time.now.usec
|
115
|
+
timing ["event", type.to_s, app], Time.now.usec
|
118
116
|
end
|
119
117
|
|
120
118
|
end
|
data/lib/fozzie/socket.rb
CHANGED
@@ -6,12 +6,17 @@ module Fozzie
|
|
6
6
|
private
|
7
7
|
|
8
8
|
# Send the statistic to the server
|
9
|
+
#
|
10
|
+
# Creates the Statsd key from the given values, and sends to socket (depending on sample rate)
|
11
|
+
#
|
9
12
|
def send(stat, delta, type, sample_rate)
|
10
|
-
|
11
|
-
stat
|
13
|
+
stat = [stat].flatten.compact.collect(&:to_s).join('.').downcase
|
14
|
+
stat = stat.gsub('::', '.').gsub(RESERVED_CHARS_REGEX, '_')
|
12
15
|
|
13
|
-
k =
|
14
|
-
k <<
|
16
|
+
k = [Fozzie.c.data_prefix, stat].compact.join('.')
|
17
|
+
k << ":"
|
18
|
+
k << [delta, type].join('|')
|
19
|
+
k << '@%s' % sample_rate.to_s if sample_rate < 1
|
15
20
|
|
16
21
|
sampled(sample_rate) { send_to_socket(k.strip) }
|
17
22
|
end
|
@@ -30,7 +35,7 @@ module Fozzie
|
|
30
35
|
true
|
31
36
|
}
|
32
37
|
rescue => exc
|
33
|
-
Fozzie.
|
38
|
+
Fozzie.logger.debug {"Statsd Failure: #{exc.message}\n#{exc.backtrace}"} if Fozzie.logger
|
34
39
|
false
|
35
40
|
end
|
36
41
|
end
|
data/lib/fozzie/version.rb
CHANGED
@@ -11,6 +11,31 @@ describe Fozzie::Interface do
|
|
11
11
|
end
|
12
12
|
end
|
13
13
|
|
14
|
+
it "downcases any stat value" do
|
15
|
+
subject.expects(:send_to_socket)
|
16
|
+
.with {|bin| bin.match /\.foo/ }
|
17
|
+
|
18
|
+
subject.increment("FOO")
|
19
|
+
end
|
20
|
+
|
21
|
+
it "replaces invalid stat value chars" do
|
22
|
+
subject.expects(:send_to_socket)
|
23
|
+
.with {|bin| bin.match /\.foo_/ }
|
24
|
+
.times(4)
|
25
|
+
|
26
|
+
subject.increment("FOO:")
|
27
|
+
subject.increment("FOO@")
|
28
|
+
subject.increment("FOO|")
|
29
|
+
subject.increment(["FOO|"])
|
30
|
+
end
|
31
|
+
|
32
|
+
it "converts any values to strings for stat value, ignoring nil" do
|
33
|
+
subject.expects(:send_to_socket)
|
34
|
+
.with {|bin| bin.match /\.foo.1._.bar/ }
|
35
|
+
|
36
|
+
subject.increment([:foo, 1, nil, "@", "BAR"])
|
37
|
+
end
|
38
|
+
|
14
39
|
it "times a given block" do
|
15
40
|
subject.expects(:timing).with() {|b, val, timing| b == 'data.bin' && (1000..1200).include?(val) }.twice
|
16
41
|
subject.time_for('data.bin') { sleep 1 }
|
@@ -18,19 +43,19 @@ describe Fozzie::Interface do
|
|
18
43
|
end
|
19
44
|
|
20
45
|
it "registers a commit" do
|
21
|
-
subject.expects(:timing).with('event
|
46
|
+
subject.expects(:timing).with(['event', 'commit', nil], anything).twice
|
22
47
|
subject.commit
|
23
48
|
subject.committed
|
24
49
|
end
|
25
50
|
|
26
51
|
it "registers a build" do
|
27
|
-
subject.expects(:timing).with('event
|
52
|
+
subject.expects(:timing).with(['event', 'build', nil], anything).twice
|
28
53
|
subject.build
|
29
54
|
subject.built
|
30
55
|
end
|
31
56
|
|
32
57
|
it "registers a deploy" do
|
33
|
-
subject.expects(:timing).with('event
|
58
|
+
subject.expects(:timing).with(['event', 'deploy', nil], anything).twice
|
34
59
|
subject.deploy
|
35
60
|
subject.deployed
|
36
61
|
end
|
@@ -61,26 +86,26 @@ describe Fozzie::Interface do
|
|
61
86
|
describe "#increment_on" do
|
62
87
|
|
63
88
|
it "registers success" do
|
64
|
-
subject.expects(:increment).with("event.increment
|
89
|
+
subject.expects(:increment).with(["event.increment", "success"], 1)
|
65
90
|
subject.increment_on('event.increment', true).should == true
|
66
91
|
end
|
67
92
|
|
68
93
|
it "registers failure" do
|
69
|
-
subject.expects(:increment).with("event.increment
|
94
|
+
subject.expects(:increment).with(["event.increment", "fail"], 1)
|
70
95
|
subject.increment_on('event.increment', false).should == false
|
71
96
|
end
|
72
97
|
|
73
98
|
it "simply questions the passed val with if" do
|
74
99
|
a = mock()
|
75
100
|
a.expects(:save).returns({})
|
76
|
-
subject.expects(:increment).with("event.increment
|
101
|
+
subject.expects(:increment).with(["event.increment", "success"], 1)
|
77
102
|
subject.increment_on('event.increment', a.save).should == {}
|
78
103
|
end
|
79
104
|
|
80
105
|
it "registers fail on nil return" do
|
81
106
|
a = mock()
|
82
107
|
a.expects(:save).returns(nil)
|
83
|
-
subject.expects(:increment).with("event.increment
|
108
|
+
subject.expects(:increment).with(["event.increment", "fail"], 1)
|
84
109
|
subject.increment_on('event.increment', a.save).should == nil
|
85
110
|
end
|
86
111
|
|
@@ -89,14 +114,14 @@ describe Fozzie::Interface do
|
|
89
114
|
it "registers success" do
|
90
115
|
a = mock()
|
91
116
|
a.expects(:save).returns(true)
|
92
|
-
subject.expects(:increment).with("event.increment
|
117
|
+
subject.expects(:increment).with(["event.increment", "success"], 1)
|
93
118
|
subject.increment_on('event.increment', a.save).should == true
|
94
119
|
end
|
95
120
|
|
96
121
|
it "registers failure" do
|
97
122
|
a = mock()
|
98
123
|
a.expects(:save).returns(false)
|
99
|
-
subject.expects(:increment).with("event.increment
|
124
|
+
subject.expects(:increment).with(["event.increment", "fail"], 1)
|
100
125
|
subject.increment_on('event.increment', a.save).should == false
|
101
126
|
end
|
102
127
|
|
@@ -104,7 +129,7 @@ describe Fozzie::Interface do
|
|
104
129
|
a = mock()
|
105
130
|
a.expects(:save).returns(true)
|
106
131
|
subject.expects(:timing).with('event.run', any_parameters)
|
107
|
-
subject.expects(:increment).with("event.increment
|
132
|
+
subject.expects(:increment).with(["event.increment", "success"], 1)
|
108
133
|
|
109
134
|
res = subject.time_to_do "event.run" do
|
110
135
|
subject.increment_on('event.increment', a.save)
|
@@ -116,7 +141,7 @@ describe Fozzie::Interface do
|
|
116
141
|
a = mock()
|
117
142
|
a.expects(:save).returns(false)
|
118
143
|
subject.expects(:timing).with('event.run', any_parameters)
|
119
|
-
subject.expects(:increment).with("event.increment
|
144
|
+
subject.expects(:increment).with(["event.increment", "fail"], 1)
|
120
145
|
|
121
146
|
res = subject.time_to_do "event.run" do
|
122
147
|
subject.increment_on('event.increment', a.save)
|
@@ -125,7 +150,7 @@ describe Fozzie::Interface do
|
|
125
150
|
end
|
126
151
|
|
127
152
|
it "allows passing of arrays for stat key" do
|
128
|
-
subject.expects(:timing).with('event
|
153
|
+
subject.expects(:timing).with(['event', 'commit'], any_parameters)
|
129
154
|
subject.time_to_do %w{event commit} do; end
|
130
155
|
end
|
131
156
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fozzie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-03-
|
12
|
+
date: 2012-03-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sys-uname
|
16
|
-
requirement: &
|
16
|
+
requirement: &70183205078380 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70183205078380
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rake
|
27
|
-
requirement: &
|
27
|
+
requirement: &70183205093600 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70183205093600
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: rspec
|
38
|
-
requirement: &
|
38
|
+
requirement: &70183205092780 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70183205092780
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: mocha
|
49
|
-
requirement: &
|
49
|
+
requirement: &70183205091800 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: '0'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70183205091800
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: syntax
|
60
|
-
requirement: &
|
60
|
+
requirement: &70183205090760 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: '0'
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70183205090760
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rack-test
|
71
|
-
requirement: &
|
71
|
+
requirement: &70183205089920 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ! '>='
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: '0'
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *70183205089920
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: simplecov
|
82
|
-
requirement: &
|
82
|
+
requirement: &70183205089140 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ! '>='
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: '0'
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *70183205089140
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: sinatra
|
93
|
-
requirement: &
|
93
|
+
requirement: &70183205088360 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ! '>='
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: '0'
|
99
99
|
type: :development
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *70183205088360
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: actionpack
|
104
|
-
requirement: &
|
104
|
+
requirement: &70183205087460 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ! '>='
|
@@ -109,10 +109,10 @@ dependencies:
|
|
109
109
|
version: '0'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *70183205087460
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: guard
|
115
|
-
requirement: &
|
115
|
+
requirement: &70183205086840 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ! '>='
|
@@ -120,10 +120,10 @@ dependencies:
|
|
120
120
|
version: '0'
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
|
-
version_requirements: *
|
123
|
+
version_requirements: *70183205086840
|
124
124
|
- !ruby/object:Gem::Dependency
|
125
125
|
name: guard-rspec
|
126
|
-
requirement: &
|
126
|
+
requirement: &70183205102560 !ruby/object:Gem::Requirement
|
127
127
|
none: false
|
128
128
|
requirements:
|
129
129
|
- - ! '>='
|
@@ -131,10 +131,10 @@ dependencies:
|
|
131
131
|
version: '0'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
|
-
version_requirements: *
|
134
|
+
version_requirements: *70183205102560
|
135
135
|
- !ruby/object:Gem::Dependency
|
136
136
|
name: guard-rocco
|
137
|
-
requirement: &
|
137
|
+
requirement: &70183205101880 !ruby/object:Gem::Requirement
|
138
138
|
none: false
|
139
139
|
requirements:
|
140
140
|
- - ! '>='
|
@@ -142,10 +142,10 @@ dependencies:
|
|
142
142
|
version: '0'
|
143
143
|
type: :development
|
144
144
|
prerelease: false
|
145
|
-
version_requirements: *
|
145
|
+
version_requirements: *70183205101880
|
146
146
|
- !ruby/object:Gem::Dependency
|
147
147
|
name: fl-rocco
|
148
|
-
requirement: &
|
148
|
+
requirement: &70183205101220 !ruby/object:Gem::Requirement
|
149
149
|
none: false
|
150
150
|
requirements:
|
151
151
|
- - ! '>='
|
@@ -153,7 +153,7 @@ dependencies:
|
|
153
153
|
version: '0'
|
154
154
|
type: :development
|
155
155
|
prerelease: false
|
156
|
-
version_requirements: *
|
156
|
+
version_requirements: *70183205101220
|
157
157
|
description: Gem allows statistics gathering from Ruby and Ruby on Rails applications
|
158
158
|
to Statsd
|
159
159
|
email:
|
@@ -209,7 +209,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
209
209
|
version: '0'
|
210
210
|
segments:
|
211
211
|
- 0
|
212
|
-
hash:
|
212
|
+
hash: 75122058829835203
|
213
213
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
214
214
|
none: false
|
215
215
|
requirements:
|
@@ -218,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
218
218
|
version: '0'
|
219
219
|
segments:
|
220
220
|
- 0
|
221
|
-
hash:
|
221
|
+
hash: 75122058829835203
|
222
222
|
requirements: []
|
223
223
|
rubyforge_project: fozzie
|
224
224
|
rubygems_version: 1.8.10
|