inst-jobs-statsd 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: daa09756d979dec45fda1d0c3a7cf7f8a9d3f1ff
4
- data.tar.gz: 6cf8a8509696f99e7bbdbede8f405ab6b88bb5f3
2
+ SHA256:
3
+ metadata.gz: abade371a905afe2c5f4baa733b786297e8b2ebdfa7f67e2fc0b4d9bdbe33085
4
+ data.tar.gz: 14a146ce36635f2359f8cf02537a8d81467fafa68a94193a8af6d7ecf89aa1db
5
5
  SHA512:
6
- metadata.gz: a5c2a28480d49071e39f6fc55a63310a2f4837093ff6c573281d34b026783cac0a3bc6ff139e44681e0fc48633ac26167b5b5f018a95ba7d72871642035acfd4
7
- data.tar.gz: d02a33ba5c422b227a7e2f532e3fe4ed714949d35b6c7cf3d09dbb6211f7479833d16a1b90dc94fec717f5533eb507adb19f1d18ab0ba7c95937067e9698eba8
6
+ metadata.gz: 64ce24ddcbd1c9b7f33f3c7cd7957ba4e55c1ee59bd48f28e8a6ba4eb99e8c39e3d57996af95320a60c7f26a9dfcf3a8dc4004ab03b67bc3e2ebbd564b4bac7e
7
+ data.tar.gz: 717fa93c7c2b887807fbef5e0c6fdffd99c0146bbe0eda1d571cb6a90976d3869ab8e7dafd4199d6e2c620a8b004f4e4894b4bde8e5b18307f15cd9806bae230
@@ -30,6 +30,17 @@ module InstJobsStatsd
30
30
  tagged
31
31
  end
32
32
 
33
+ def self.dd_job_tags(job)
34
+ return {} unless job
35
+ return {} unless job.tag
36
+ return {} if job.tag =~ /Class:0x/
37
+
38
+ method_tag, obj_tag = split_to_tag(job)
39
+ tag = obj_tag
40
+ tag = [obj_tag, method_tag].join('.') if method_tag.present?
41
+ {tag: tag}
42
+ end
43
+
33
44
  # this converts Foo#bar" or "Foo.bar" into "Foo and "bar",
34
45
  # and makes sure the values are valid to be used for statsd names
35
46
  def self.job_tags(job)
@@ -37,13 +48,9 @@ module InstJobsStatsd
37
48
  return unless job.tag
38
49
  return if job.tag =~ /Class:0x/
39
50
 
40
- obj_tag, method_tag = job.tag.split(/[\.#]/, 2).map do |v|
41
- InstStatsd::Statsd.escape(v).gsub('::', '-')
42
- end
43
-
51
+ method_tag, obj_tag = split_to_tag(job)
44
52
  tags = [obj_tag]
45
53
  tags << method_tag if method_tag.present?
46
-
47
54
  tags
48
55
  end
49
56
 
@@ -59,5 +66,14 @@ module InstJobsStatsd
59
66
  .join('.')
60
67
  end
61
68
  end
69
+
70
+ private
71
+
72
+ def self.split_to_tag(job)
73
+ obj_tag, method_tag = job.tag.split(/[\.#]/, 2).map do |v|
74
+ InstStatsd::Statsd.escape(v).gsub('::', '-')
75
+ end
76
+ return method_tag, obj_tag
77
+ end
62
78
  end
63
79
  end
@@ -3,7 +3,7 @@ module InstJobsStatsd
3
3
  module Counters
4
4
  def self.report_count(stat, value, job: nil, sample_rate: 1)
5
5
  stats = Naming.qualified_names(stat, job)
6
- InstStatsd::Statsd.count(stats, value, sample_rate)
6
+ InstStatsd::Statsd.count(stats, value, sample_rate, tags: Naming.dd_job_tags(job))
7
7
  end
8
8
  end
9
9
  end
@@ -12,7 +12,7 @@ module InstJobsStatsd
12
12
 
13
13
  def self.report_gauge(stat, value, job: nil, sample_rate: 1)
14
14
  stats = Naming.qualified_names(stat, job)
15
- InstStatsd::Statsd.gauge(stats, value, sample_rate)
15
+ InstStatsd::Statsd.gauge(stats, value, sample_rate, tags: Naming.dd_job_tags(job))
16
16
  end
17
17
 
18
18
  class Callbacks
@@ -5,9 +5,9 @@ module InstJobsStatsd
5
5
  stats = Naming.qualified_names(stat, job)
6
6
 
7
7
  if block_given?
8
- InstStatsd::Statsd.time(stats, sample_rate) { yield }
8
+ InstStatsd::Statsd.time(stats, sample_rate, short_stat: stat, tags: Naming.dd_job_tags(job)) { yield }
9
9
  else
10
- InstStatsd::Statsd.timing(stats, timing, sample_rate)
10
+ InstStatsd::Statsd.timing(stats, timing, sample_rate, tags: Naming.dd_job_tags(job))
11
11
  end
12
12
  end
13
13
 
@@ -1,3 +1,3 @@
1
1
  module InstJobsStatsd
2
- VERSION = '1.1.1'.freeze
2
+ VERSION = '1.2.0'.freeze
3
3
  end
@@ -10,7 +10,7 @@ RSpec.describe InstJobsStatsd::Stats::Counters::Failed do
10
10
  let(:x) { Struct.new(:perform).new(true) }
11
11
  it do
12
12
  expect(InstStatsd::Statsd).to receive(:count)
13
- .with(array_including(/\.failed$/), 1, 1)
13
+ .with(array_including(/\.failed$/), 1, 1, { tags: {} })
14
14
 
15
15
  InstJobsStatsd::Stats::Counters::Failed.enable_failed_count
16
16
  x.send_later(:perform)
@@ -20,7 +20,7 @@ RSpec.describe InstJobsStatsd::Stats::Counters::Orphaned do
20
20
 
21
21
  it do
22
22
  expect(InstStatsd::Statsd).to receive(:count)
23
- .with(array_including(/\.orphaned$/), 2, 1)
23
+ .with(array_including(/\.orphaned$/), 2, 1, { tags: {} })
24
24
  Delayed::Worker.lifecycle.run_callbacks(:perform, nil, Delayed::Job.first) {}
25
25
  end
26
26
  end
@@ -18,7 +18,7 @@ RSpec.describe InstJobsStatsd::Stats::Counters::Run do
18
18
 
19
19
  it do
20
20
  expect(InstStatsd::Statsd).to receive(:count)
21
- .twice.with(array_including(/\.run$/), 1, 1)
21
+ .twice.with(array_including(/\.run$/), 1, 1, { tags: {} })
22
22
  Delayed::Job.all.each do |job|
23
23
  Delayed::Worker.lifecycle.run_callbacks(:perform, {}, job) {}
24
24
  end
@@ -24,7 +24,7 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Failed do
24
24
 
25
25
  it do
26
26
  expect(InstStatsd::Statsd).to receive(:gauge)
27
- .with(array_including(/\.failed_depth$/), 1, 1)
27
+ .with(array_including(/\.failed_depth$/), 1, 1, { tags: {} })
28
28
  InstJobsStatsd::Stats::Periodic::Failed.report_failed_depth
29
29
  end
30
30
  end
@@ -28,13 +28,13 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Queue do
28
28
 
29
29
  it do
30
30
  expect(InstStatsd::Statsd).to receive(:gauge)
31
- .with(array_including(/\.queue_depth$/), 1, 1)
31
+ .with(array_including(/\.queue_depth$/), 1, 1, { tags: {} })
32
32
  InstJobsStatsd::Stats::Periodic::Queue.report_queue_depth
33
33
  end
34
34
 
35
35
  it do
36
36
  expect(InstStatsd::Statsd).to receive(:gauge)
37
- .with(array_including(/\.queue_depth$/), 2, 1)
37
+ .with(array_including(/\.queue_depth$/), 2, 1, { tags: {} })
38
38
  Timecop.freeze(2.minutes.from_now) do
39
39
  InstJobsStatsd::Stats::Periodic::Queue.report_queue_depth
40
40
  end
@@ -42,7 +42,7 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Queue do
42
42
 
43
43
  it do
44
44
  expect(InstStatsd::Statsd).to receive(:gauge)
45
- .with(array_including(/\.queue_depth$/), 3, 1)
45
+ .with(array_including(/\.queue_depth$/), 3, 1, { tags: {} })
46
46
  Timecop.freeze(20.minutes.from_now) do
47
47
  InstJobsStatsd::Stats::Periodic::Queue.report_queue_depth
48
48
  end
@@ -66,17 +66,17 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Queue do
66
66
 
67
67
  it do
68
68
  expect(InstStatsd::Statsd).to receive(:gauge)
69
- .ordered.with(array_including(/\.queue_age_total$/), number_near(0), 1)
69
+ .ordered.with(array_including(/\.queue_age_total$/), number_near(0), 1, { tags: {} })
70
70
  expect(InstStatsd::Statsd).to receive(:gauge)
71
- .ordered.with(array_including(/\.queue_age_max$/), number_near(0), 1)
71
+ .ordered.with(array_including(/\.queue_age_max$/), number_near(0), 1, { tags: {} })
72
72
  InstJobsStatsd::Stats::Periodic::Queue.report_queue_age
73
73
  end
74
74
 
75
75
  it do
76
76
  expect(InstStatsd::Statsd).to receive(:gauge)
77
- .ordered.with(array_including(/\.queue_age_total$/), number_near(180), 1)
77
+ .ordered.with(array_including(/\.queue_age_total$/), number_near(180), 1, { tags: {} })
78
78
  expect(InstStatsd::Statsd).to receive(:gauge)
79
- .ordered.with(array_including(/\.queue_age_max$/), number_near(120), 1)
79
+ .ordered.with(array_including(/\.queue_age_max$/), number_near(120), 1, { tags: {} })
80
80
  Timecop.freeze(2.minutes.from_now) do
81
81
  InstJobsStatsd::Stats::Periodic::Queue.report_queue_age
82
82
  end
@@ -84,9 +84,9 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Queue do
84
84
 
85
85
  it do
86
86
  expect(InstStatsd::Statsd).to receive(:gauge)
87
- .ordered.with(array_including(/\.queue_age_total$/), number_near(2940), 1)
87
+ .ordered.with(array_including(/\.queue_age_total$/), number_near(2940), 1, { tags: {} })
88
88
  expect(InstStatsd::Statsd).to receive(:gauge)
89
- .ordered.with(array_including(/\.queue_age_max$/), number_near(1200), 1)
89
+ .ordered.with(array_including(/\.queue_age_max$/), number_near(1200), 1, { tags: {} })
90
90
  Timecop.freeze(20.minutes.from_now) do
91
91
  InstJobsStatsd::Stats::Periodic::Queue.report_queue_age
92
92
  end
@@ -25,7 +25,7 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Run do
25
25
 
26
26
  it do
27
27
  expect(InstStatsd::Statsd).to receive(:gauge)
28
- .with(array_including(/\.run_depth$/), 1, 1)
28
+ .with(array_including(/\.run_depth$/), 1, 1, { tags: {} })
29
29
  InstJobsStatsd::Stats::Periodic::Run.report_run_depth
30
30
  end
31
31
  end
@@ -44,9 +44,9 @@ RSpec.describe InstJobsStatsd::Stats::Periodic::Run do
44
44
 
45
45
  it do
46
46
  expect(InstStatsd::Statsd).to receive(:gauge)
47
- .ordered.with(array_including(/\.run_age_total$/), number_near(0), 1)
47
+ .ordered.with(array_including(/\.run_age_total$/), number_near(0), 1, { tags: {} })
48
48
  expect(InstStatsd::Statsd).to receive(:gauge)
49
- .ordered.with(array_including(/\.run_age_max$/), number_near(0), 1)
49
+ .ordered.with(array_including(/\.run_age_max$/), number_near(0), 1, { tags: {} })
50
50
  InstJobsStatsd::Stats::Periodic::Run.report_run_age
51
51
  end
52
52
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inst-jobs-statsd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Slade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-07 00:00:00.000000000 Z
11
+ date: 2019-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: inst-jobs
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.0'
39
+ version: '2.1'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '2.0'
46
+ version: '2.1'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: bump
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -253,11 +253,8 @@ files:
253
253
  - spec/factories/jobs.rb
254
254
  - spec/factories/workers.rb
255
255
  - spec/gemfiles/42.gemfile
256
- - spec/gemfiles/42.gemfile.lock
257
256
  - spec/gemfiles/50.gemfile
258
- - spec/gemfiles/50.gemfile.lock
259
257
  - spec/gemfiles/51.gemfile
260
- - spec/gemfiles/51.gemfile.lock
261
258
  - spec/inst_jobs_statsd/jobs_tracker_spec.rb
262
259
  - spec/inst_jobs_statsd/naming_spec.rb
263
260
  - spec/inst_jobs_statsd/stats/counters/failed_spec.rb
@@ -295,7 +292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
295
292
  version: '0'
296
293
  requirements: []
297
294
  rubyforge_project:
298
- rubygems_version: 2.5.1
295
+ rubygems_version: 2.7.6
299
296
  signing_key:
300
297
  specification_version: 4
301
298
  summary: Stats reporting for inst-jobs
@@ -316,9 +313,6 @@ test_files:
316
313
  - spec/spec_helper.rb
317
314
  - spec/setup_test_db.rb
318
315
  - spec/matchers.rb
319
- - spec/gemfiles/51.gemfile.lock
320
- - spec/gemfiles/42.gemfile.lock
321
- - spec/gemfiles/50.gemfile.lock
322
316
  - spec/gemfiles/42.gemfile
323
317
  - spec/gemfiles/50.gemfile
324
318
  - spec/gemfiles/51.gemfile
@@ -1,201 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- inst-jobs-statsd (1.1.0)
5
- inst-jobs (>= 0.13, < 0.16)
6
- inst_statsd (~> 2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.9)
12
- actionpack (= 4.2.9)
13
- actionview (= 4.2.9)
14
- activejob (= 4.2.9)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.9)
18
- actionview (= 4.2.9)
19
- activesupport (= 4.2.9)
20
- rack (~> 1.6)
21
- rack-test (~> 0.6.2)
22
- rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- actionview (4.2.9)
25
- activesupport (= 4.2.9)
26
- builder (~> 3.1)
27
- erubis (~> 2.7.0)
28
- rails-dom-testing (~> 1.0, >= 1.0.5)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
30
- activejob (4.2.9)
31
- activesupport (= 4.2.9)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.9)
34
- activesupport (= 4.2.9)
35
- builder (~> 3.1)
36
- activerecord (4.2.9)
37
- activemodel (= 4.2.9)
38
- activesupport (= 4.2.9)
39
- arel (~> 6.0)
40
- activesupport (4.2.9)
41
- i18n (~> 0.7)
42
- minitest (~> 5.1)
43
- thread_safe (~> 0.3, >= 0.3.4)
44
- tzinfo (~> 1.1)
45
- after_transaction_commit (1.1.2)
46
- activerecord (>= 4.0)
47
- arel (6.0.4)
48
- aroi (0.0.5)
49
- rails (>= 3.2, < 5.2)
50
- ast (2.3.0)
51
- builder (3.2.3)
52
- bump (0.5.4)
53
- byebug (9.0.6)
54
- coderay (1.1.1)
55
- concurrent-ruby (1.0.5)
56
- database_cleaner (1.6.1)
57
- diff-lcs (1.3)
58
- docile (1.1.5)
59
- erubis (2.7.0)
60
- et-orbi (1.0.5)
61
- tzinfo
62
- factory_girl (4.8.1)
63
- activesupport (>= 3.0.0)
64
- globalid (0.4.0)
65
- activesupport (>= 4.2.0)
66
- i18n (0.8.6)
67
- inst-jobs (0.14.0)
68
- after_transaction_commit (>= 1.0, < 3)
69
- rails (>= 4.2)
70
- redis (> 3.0)
71
- redis-scripting (~> 1.0.1)
72
- rufus-scheduler (~> 3.4)
73
- inst_statsd (2.0.4)
74
- aroi (~> 0.0.4)
75
- statsd-ruby (~> 1.0)
76
- json (2.1.0)
77
- loofah (2.0.3)
78
- nokogiri (>= 1.5.9)
79
- mail (2.6.6)
80
- mime-types (>= 1.16, < 4)
81
- method_source (0.8.2)
82
- mime-types (3.1)
83
- mime-types-data (~> 3.2015)
84
- mime-types-data (3.2016.0521)
85
- mini_portile2 (2.2.0)
86
- minitest (5.10.3)
87
- nokogiri (1.8.0)
88
- mini_portile2 (~> 2.2.0)
89
- parallel (1.12.0)
90
- parser (2.4.0.0)
91
- ast (~> 2.2)
92
- pg (0.21.0)
93
- powerpack (0.1.1)
94
- pry (0.10.4)
95
- coderay (~> 1.1.0)
96
- method_source (~> 0.8.1)
97
- slop (~> 3.4)
98
- rack (1.6.8)
99
- rack-test (0.6.3)
100
- rack (>= 1.0)
101
- rails (4.2.9)
102
- actionmailer (= 4.2.9)
103
- actionpack (= 4.2.9)
104
- actionview (= 4.2.9)
105
- activejob (= 4.2.9)
106
- activemodel (= 4.2.9)
107
- activerecord (= 4.2.9)
108
- activesupport (= 4.2.9)
109
- bundler (>= 1.3.0, < 2.0)
110
- railties (= 4.2.9)
111
- sprockets-rails
112
- rails-deprecated_sanitizer (1.0.3)
113
- activesupport (>= 4.2.0.alpha)
114
- rails-dom-testing (1.0.8)
115
- activesupport (>= 4.2.0.beta, < 5.0)
116
- nokogiri (~> 1.6)
117
- rails-deprecated_sanitizer (>= 1.0.1)
118
- rails-html-sanitizer (1.0.3)
119
- loofah (~> 2.0)
120
- railties (4.2.9)
121
- actionpack (= 4.2.9)
122
- activesupport (= 4.2.9)
123
- rake (>= 0.8.7)
124
- thor (>= 0.18.1, < 2.0)
125
- rainbow (2.2.2)
126
- rake
127
- rake (12.0.0)
128
- redis (4.0.1)
129
- redis-scripting (1.0.1)
130
- redis (>= 3.0)
131
- rspec (3.4.0)
132
- rspec-core (~> 3.4.0)
133
- rspec-expectations (~> 3.4.0)
134
- rspec-mocks (~> 3.4.0)
135
- rspec-core (3.4.4)
136
- rspec-support (~> 3.4.0)
137
- rspec-expectations (3.4.0)
138
- diff-lcs (>= 1.2.0, < 2.0)
139
- rspec-support (~> 3.4.0)
140
- rspec-mocks (3.4.1)
141
- diff-lcs (>= 1.2.0, < 2.0)
142
- rspec-support (~> 3.4.0)
143
- rspec-support (3.4.1)
144
- rubocop (0.50.0)
145
- parallel (~> 1.10)
146
- parser (>= 2.3.3.1, < 3.0)
147
- powerpack (~> 0.1)
148
- rainbow (>= 2.2.2, < 3.0)
149
- ruby-progressbar (~> 1.7)
150
- unicode-display_width (~> 1.0, >= 1.0.1)
151
- ruby-progressbar (1.9.0)
152
- rufus-scheduler (3.4.2)
153
- et-orbi (~> 1.0)
154
- simplecov (0.15.1)
155
- docile (~> 1.1.0)
156
- json (>= 1.8, < 3)
157
- simplecov-html (~> 0.10.0)
158
- simplecov-html (0.10.2)
159
- slop (3.6.0)
160
- sprockets (3.7.1)
161
- concurrent-ruby (~> 1.0)
162
- rack (> 1, < 3)
163
- sprockets-rails (3.2.0)
164
- actionpack (>= 4.0)
165
- activesupport (>= 4.0)
166
- sprockets (>= 3.0.0)
167
- statsd-ruby (1.4.0)
168
- test_after_commit (0.4.1)
169
- activerecord (>= 3.2)
170
- thor (0.19.4)
171
- thread_safe (0.3.6)
172
- timecop (0.7.1)
173
- tzinfo (1.2.3)
174
- thread_safe (~> 0.1)
175
- unicode-display_width (1.3.0)
176
- wwtd (1.3.0)
177
-
178
- PLATFORMS
179
- ruby
180
-
181
- DEPENDENCIES
182
- after_transaction_commit (< 2)
183
- bump
184
- bundler
185
- byebug
186
- database_cleaner (= 1.6.1)
187
- factory_girl
188
- inst-jobs-statsd!
189
- pg (= 0.21.0)
190
- pry
191
- rails (~> 4.2.5)
192
- rake
193
- rspec (= 3.4.0)
194
- rubocop (~> 0)
195
- simplecov (~> 0.14)
196
- test_after_commit (= 0.4.1)
197
- timecop
198
- wwtd (~> 1.3.0)
199
-
200
- BUNDLED WITH
201
- 1.15.4
@@ -1,224 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- inst-jobs-statsd (1.1.0)
5
- inst-jobs (>= 0.13, < 0.16)
6
- inst_statsd (~> 2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.4)
12
- actionpack (= 5.0.4)
13
- nio4r (>= 1.2, < 3.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.4)
16
- actionpack (= 5.0.4)
17
- actionview (= 5.0.4)
18
- activejob (= 5.0.4)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.0.4)
22
- actionview (= 5.0.4)
23
- activesupport (= 5.0.4)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.4)
29
- activesupport (= 5.0.4)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.0.4)
35
- activesupport (= 5.0.4)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.4)
38
- activesupport (= 5.0.4)
39
- activerecord (5.0.4)
40
- activemodel (= 5.0.4)
41
- activesupport (= 5.0.4)
42
- arel (~> 7.0)
43
- activesupport (5.0.4)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- after_transaction_commit (2.0.0)
49
- activerecord (>= 5.0)
50
- arel (7.1.4)
51
- aroi (0.0.5)
52
- rails (>= 3.2, < 5.2)
53
- ast (2.3.0)
54
- backports (3.8.0)
55
- builder (3.2.3)
56
- bump (0.5.4)
57
- byebug (9.0.6)
58
- coderay (1.1.1)
59
- concurrent-ruby (1.0.5)
60
- database_cleaner (1.6.1)
61
- diff-lcs (1.3)
62
- docile (1.1.5)
63
- erubis (2.7.0)
64
- et-orbi (1.0.5)
65
- tzinfo
66
- factory_girl (4.8.1)
67
- activesupport (>= 3.0.0)
68
- globalid (0.4.0)
69
- activesupport (>= 4.2.0)
70
- i18n (0.8.6)
71
- inst-jobs (0.14.0)
72
- after_transaction_commit (>= 1.0, < 3)
73
- rails (>= 4.2)
74
- redis (> 3.0)
75
- redis-scripting (~> 1.0.1)
76
- rufus-scheduler (~> 3.4)
77
- inst_statsd (2.0.4)
78
- aroi (~> 0.0.4)
79
- statsd-ruby (~> 1.0)
80
- json (2.1.0)
81
- loofah (2.0.3)
82
- nokogiri (>= 1.5.9)
83
- mail (2.6.6)
84
- mime-types (>= 1.16, < 4)
85
- method_source (0.8.2)
86
- mime-types (3.1)
87
- mime-types-data (~> 3.2015)
88
- mime-types-data (3.2016.0521)
89
- mini_portile2 (2.2.0)
90
- minitest (5.10.3)
91
- multi_json (1.12.1)
92
- mustermann (1.0.0.beta2)
93
- nio4r (2.1.0)
94
- nokogiri (1.8.0)
95
- mini_portile2 (~> 2.2.0)
96
- parallel (1.12.0)
97
- parser (2.4.0.0)
98
- ast (~> 2.2)
99
- pg (0.21.0)
100
- powerpack (0.1.1)
101
- pry (0.10.4)
102
- coderay (~> 1.1.0)
103
- method_source (~> 0.8.1)
104
- slop (~> 3.4)
105
- rack (2.0.3)
106
- rack-protection (2.0.0.beta2)
107
- rack
108
- rack-test (0.6.3)
109
- rack (>= 1.0)
110
- rails (5.0.4)
111
- actioncable (= 5.0.4)
112
- actionmailer (= 5.0.4)
113
- actionpack (= 5.0.4)
114
- actionview (= 5.0.4)
115
- activejob (= 5.0.4)
116
- activemodel (= 5.0.4)
117
- activerecord (= 5.0.4)
118
- activesupport (= 5.0.4)
119
- bundler (>= 1.3.0, < 2.0)
120
- railties (= 5.0.4)
121
- sprockets-rails (>= 2.0.0)
122
- rails-dom-testing (2.0.3)
123
- activesupport (>= 4.2.0)
124
- nokogiri (>= 1.6)
125
- rails-html-sanitizer (1.0.3)
126
- loofah (~> 2.0)
127
- railties (5.0.4)
128
- actionpack (= 5.0.4)
129
- activesupport (= 5.0.4)
130
- method_source
131
- rake (>= 0.8.7)
132
- thor (>= 0.18.1, < 2.0)
133
- rainbow (2.2.2)
134
- rake
135
- rake (12.0.0)
136
- redis (4.0.1)
137
- redis-scripting (1.0.1)
138
- redis (>= 3.0)
139
- rspec (3.4.0)
140
- rspec-core (~> 3.4.0)
141
- rspec-expectations (~> 3.4.0)
142
- rspec-mocks (~> 3.4.0)
143
- rspec-core (3.4.4)
144
- rspec-support (~> 3.4.0)
145
- rspec-expectations (3.4.0)
146
- diff-lcs (>= 1.2.0, < 2.0)
147
- rspec-support (~> 3.4.0)
148
- rspec-mocks (3.4.1)
149
- diff-lcs (>= 1.2.0, < 2.0)
150
- rspec-support (~> 3.4.0)
151
- rspec-support (3.4.1)
152
- rubocop (0.50.0)
153
- parallel (~> 1.10)
154
- parser (>= 2.3.3.1, < 3.0)
155
- powerpack (~> 0.1)
156
- rainbow (>= 2.2.2, < 3.0)
157
- ruby-progressbar (~> 1.7)
158
- unicode-display_width (~> 1.0, >= 1.0.1)
159
- ruby-progressbar (1.9.0)
160
- rufus-scheduler (3.4.2)
161
- et-orbi (~> 1.0)
162
- simplecov (0.15.1)
163
- docile (~> 1.1.0)
164
- json (>= 1.8, < 3)
165
- simplecov-html (~> 0.10.0)
166
- simplecov-html (0.10.2)
167
- sinatra (2.0.0.beta2)
168
- mustermann (= 1.0.0.beta2)
169
- rack (~> 2.0)
170
- rack-protection (= 2.0.0.beta2)
171
- tilt (~> 2.0)
172
- sinatra-contrib (2.0.0.beta2)
173
- backports (>= 2.0)
174
- multi_json
175
- mustermann (= 1.0.0.beta2)
176
- rack-protection (= 2.0.0.beta2)
177
- rack-test
178
- sinatra (= 2.0.0.beta2)
179
- tilt (>= 1.3, < 3)
180
- slop (3.6.0)
181
- sprockets (3.7.1)
182
- concurrent-ruby (~> 1.0)
183
- rack (> 1, < 3)
184
- sprockets-rails (3.2.0)
185
- actionpack (>= 4.0)
186
- activesupport (>= 4.0)
187
- sprockets (>= 3.0.0)
188
- statsd-ruby (1.4.0)
189
- thor (0.19.4)
190
- thread_safe (0.3.6)
191
- tilt (2.0.7)
192
- timecop (0.7.1)
193
- tzinfo (1.2.3)
194
- thread_safe (~> 0.1)
195
- unicode-display_width (1.3.0)
196
- websocket-driver (0.6.5)
197
- websocket-extensions (>= 0.1.0)
198
- websocket-extensions (0.1.2)
199
- wwtd (1.3.0)
200
-
201
- PLATFORMS
202
- ruby
203
-
204
- DEPENDENCIES
205
- bump
206
- bundler
207
- byebug
208
- database_cleaner (= 1.6.1)
209
- factory_girl
210
- inst-jobs-statsd!
211
- pg (= 0.21.0)
212
- pry
213
- rails (~> 5.0.0)
214
- rake
215
- rspec (= 3.4.0)
216
- rubocop (~> 0)
217
- simplecov (~> 0.14)
218
- sinatra (= 2.0.0.beta2)
219
- sinatra-contrib (= 2.0.0.beta2)
220
- timecop
221
- wwtd (~> 1.3.0)
222
-
223
- BUNDLED WITH
224
- 1.15.4
@@ -1,224 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- inst-jobs-statsd (1.1.0)
5
- inst-jobs (>= 0.13, < 0.16)
6
- inst_statsd (~> 2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.1.2)
12
- actionpack (= 5.1.2)
13
- nio4r (~> 2.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.2)
16
- actionpack (= 5.1.2)
17
- actionview (= 5.1.2)
18
- activejob (= 5.1.2)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.1.2)
22
- actionview (= 5.1.2)
23
- activesupport (= 5.1.2)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.2)
29
- activesupport (= 5.1.2)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.2)
35
- activesupport (= 5.1.2)
36
- globalid (>= 0.3.6)
37
- activemodel (5.1.2)
38
- activesupport (= 5.1.2)
39
- activerecord (5.1.2)
40
- activemodel (= 5.1.2)
41
- activesupport (= 5.1.2)
42
- arel (~> 8.0)
43
- activesupport (5.1.2)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- after_transaction_commit (2.0.0)
49
- activerecord (>= 5.0)
50
- arel (8.0.0)
51
- aroi (0.0.5)
52
- rails (>= 3.2, < 5.2)
53
- ast (2.3.0)
54
- backports (3.8.0)
55
- builder (3.2.3)
56
- bump (0.5.4)
57
- byebug (9.0.6)
58
- coderay (1.1.1)
59
- concurrent-ruby (1.0.5)
60
- database_cleaner (1.6.1)
61
- diff-lcs (1.3)
62
- docile (1.1.5)
63
- erubi (1.6.1)
64
- et-orbi (1.0.5)
65
- tzinfo
66
- factory_girl (4.8.1)
67
- activesupport (>= 3.0.0)
68
- globalid (0.4.0)
69
- activesupport (>= 4.2.0)
70
- i18n (0.8.6)
71
- inst-jobs (0.14.0)
72
- after_transaction_commit (>= 1.0, < 3)
73
- rails (>= 4.2)
74
- redis (> 3.0)
75
- redis-scripting (~> 1.0.1)
76
- rufus-scheduler (~> 3.4)
77
- inst_statsd (2.0.4)
78
- aroi (~> 0.0.4)
79
- statsd-ruby (~> 1.0)
80
- json (2.1.0)
81
- loofah (2.0.3)
82
- nokogiri (>= 1.5.9)
83
- mail (2.6.6)
84
- mime-types (>= 1.16, < 4)
85
- method_source (0.8.2)
86
- mime-types (3.1)
87
- mime-types-data (~> 3.2015)
88
- mime-types-data (3.2016.0521)
89
- mini_portile2 (2.2.0)
90
- minitest (5.10.3)
91
- multi_json (1.12.1)
92
- mustermann (1.0.0.beta2)
93
- nio4r (2.1.0)
94
- nokogiri (1.8.0)
95
- mini_portile2 (~> 2.2.0)
96
- parallel (1.12.0)
97
- parser (2.4.0.0)
98
- ast (~> 2.2)
99
- pg (0.21.0)
100
- powerpack (0.1.1)
101
- pry (0.10.4)
102
- coderay (~> 1.1.0)
103
- method_source (~> 0.8.1)
104
- slop (~> 3.4)
105
- rack (2.0.3)
106
- rack-protection (2.0.0.beta2)
107
- rack
108
- rack-test (0.6.3)
109
- rack (>= 1.0)
110
- rails (5.1.2)
111
- actioncable (= 5.1.2)
112
- actionmailer (= 5.1.2)
113
- actionpack (= 5.1.2)
114
- actionview (= 5.1.2)
115
- activejob (= 5.1.2)
116
- activemodel (= 5.1.2)
117
- activerecord (= 5.1.2)
118
- activesupport (= 5.1.2)
119
- bundler (>= 1.3.0, < 2.0)
120
- railties (= 5.1.2)
121
- sprockets-rails (>= 2.0.0)
122
- rails-dom-testing (2.0.3)
123
- activesupport (>= 4.2.0)
124
- nokogiri (>= 1.6)
125
- rails-html-sanitizer (1.0.3)
126
- loofah (~> 2.0)
127
- railties (5.1.2)
128
- actionpack (= 5.1.2)
129
- activesupport (= 5.1.2)
130
- method_source
131
- rake (>= 0.8.7)
132
- thor (>= 0.18.1, < 2.0)
133
- rainbow (2.2.2)
134
- rake
135
- rake (12.0.0)
136
- redis (4.0.1)
137
- redis-scripting (1.0.1)
138
- redis (>= 3.0)
139
- rspec (3.4.0)
140
- rspec-core (~> 3.4.0)
141
- rspec-expectations (~> 3.4.0)
142
- rspec-mocks (~> 3.4.0)
143
- rspec-core (3.4.4)
144
- rspec-support (~> 3.4.0)
145
- rspec-expectations (3.4.0)
146
- diff-lcs (>= 1.2.0, < 2.0)
147
- rspec-support (~> 3.4.0)
148
- rspec-mocks (3.4.1)
149
- diff-lcs (>= 1.2.0, < 2.0)
150
- rspec-support (~> 3.4.0)
151
- rspec-support (3.4.1)
152
- rubocop (0.50.0)
153
- parallel (~> 1.10)
154
- parser (>= 2.3.3.1, < 3.0)
155
- powerpack (~> 0.1)
156
- rainbow (>= 2.2.2, < 3.0)
157
- ruby-progressbar (~> 1.7)
158
- unicode-display_width (~> 1.0, >= 1.0.1)
159
- ruby-progressbar (1.9.0)
160
- rufus-scheduler (3.4.2)
161
- et-orbi (~> 1.0)
162
- simplecov (0.15.1)
163
- docile (~> 1.1.0)
164
- json (>= 1.8, < 3)
165
- simplecov-html (~> 0.10.0)
166
- simplecov-html (0.10.2)
167
- sinatra (2.0.0.beta2)
168
- mustermann (= 1.0.0.beta2)
169
- rack (~> 2.0)
170
- rack-protection (= 2.0.0.beta2)
171
- tilt (~> 2.0)
172
- sinatra-contrib (2.0.0.beta2)
173
- backports (>= 2.0)
174
- multi_json
175
- mustermann (= 1.0.0.beta2)
176
- rack-protection (= 2.0.0.beta2)
177
- rack-test
178
- sinatra (= 2.0.0.beta2)
179
- tilt (>= 1.3, < 3)
180
- slop (3.6.0)
181
- sprockets (3.7.1)
182
- concurrent-ruby (~> 1.0)
183
- rack (> 1, < 3)
184
- sprockets-rails (3.2.0)
185
- actionpack (>= 4.0)
186
- activesupport (>= 4.0)
187
- sprockets (>= 3.0.0)
188
- statsd-ruby (1.4.0)
189
- thor (0.19.4)
190
- thread_safe (0.3.6)
191
- tilt (2.0.7)
192
- timecop (0.7.1)
193
- tzinfo (1.2.3)
194
- thread_safe (~> 0.1)
195
- unicode-display_width (1.3.0)
196
- websocket-driver (0.6.5)
197
- websocket-extensions (>= 0.1.0)
198
- websocket-extensions (0.1.2)
199
- wwtd (1.3.0)
200
-
201
- PLATFORMS
202
- ruby
203
-
204
- DEPENDENCIES
205
- bump
206
- bundler
207
- byebug
208
- database_cleaner (= 1.6.1)
209
- factory_girl
210
- inst-jobs-statsd!
211
- pg (= 0.21.0)
212
- pry
213
- rails (~> 5.1.0)
214
- rake
215
- rspec (= 3.4.0)
216
- rubocop (~> 0)
217
- simplecov (~> 0.14)
218
- sinatra (= 2.0.0.beta2)
219
- sinatra-contrib (= 2.0.0.beta2)
220
- timecop
221
- wwtd (~> 1.3.0)
222
-
223
- BUNDLED WITH
224
- 1.15.4