honeycomb-beeline 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{bundler_version.sh → .circleci/bundler_version.sh} +1 -2
- data/.circleci/config.yml +448 -0
- data/.circleci/setup-rubygems.sh +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/honeycomb/beeline/version.rb +1 -1
- data/lib/honeycomb/integrations/rails.rb +8 -2
- metadata +6 -6
- data/.travis.yml +0 -57
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6af6ff636f882a61957e48a0fe6fb50794d82b237f75009f5f2cc1308dbdafb
|
4
|
+
data.tar.gz: cb2e735d0bb798150f7232739a9aced2dc372ce8dde81414925cf61b4259be3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb178a760b813ff7f26aa4a60650b7d9a1556041366fc65162b3132ec8926126aa066056329f49eaacbafacf5e33b559e740464a7957c48e54ecb071433536a
|
7
|
+
data.tar.gz: 29c941bffdcdc5766de32665b87ad6d705f57f17c86dbdb75581519f480c2d47bfdba57a5640531b7ab95bf28730c33fd0f65b168e18295b3a9848bc5e954ba6
|
@@ -3,7 +3,6 @@
|
|
3
3
|
set -ux
|
4
4
|
|
5
5
|
if [[ "$BUNDLE_GEMFILE" =~ (rails_41.gemfile|rails_42.gemfile)$ ]]; then
|
6
|
-
gem uninstall -v '>= 2' -
|
7
|
-
gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler
|
6
|
+
gem uninstall -v '>= 2' -ax bundler
|
8
7
|
gem install bundler -v '< 2'
|
9
8
|
fi
|
@@ -0,0 +1,448 @@
|
|
1
|
+
version: 2.1
|
2
|
+
|
3
|
+
# required as all of the jobs need to have a tag filter for some reason
|
4
|
+
tag_filters: &tag_filters
|
5
|
+
filters:
|
6
|
+
tags:
|
7
|
+
only: /.*/
|
8
|
+
|
9
|
+
executors:
|
10
|
+
ruby-two-three:
|
11
|
+
docker:
|
12
|
+
- image: circleci/ruby:2.3
|
13
|
+
ruby-two-four:
|
14
|
+
docker:
|
15
|
+
- image: circleci/ruby:2.4
|
16
|
+
ruby-two-five:
|
17
|
+
docker:
|
18
|
+
- image: circleci/ruby:2.5
|
19
|
+
ruby-two-six:
|
20
|
+
docker:
|
21
|
+
- image: circleci/ruby:2.6
|
22
|
+
|
23
|
+
commands:
|
24
|
+
ruby:
|
25
|
+
parameters:
|
26
|
+
gemfile:
|
27
|
+
type: string
|
28
|
+
default: Gemfile
|
29
|
+
command:
|
30
|
+
type: string
|
31
|
+
default: bundle exec rake test
|
32
|
+
steps:
|
33
|
+
- checkout
|
34
|
+
- restore_cache:
|
35
|
+
keys:
|
36
|
+
- gems-v1-{{ checksum "Gemfile.lock" }}
|
37
|
+
- gems-v1-
|
38
|
+
- run: gem update bundler
|
39
|
+
- run: BUNDLE_GEMFILE=<< parameters.gemfile >> ./.circleci/bundler_version.sh
|
40
|
+
- run: BUNDLE_GEMFILE=<< parameters.gemfile >> bundle install --jobs=4 --retry=3 --path vendor/bundle
|
41
|
+
- save_cache:
|
42
|
+
paths:
|
43
|
+
- ./vendor/bundle
|
44
|
+
key: gems-v1-{{ checksum "Gemfile.lock" }}
|
45
|
+
- run: BUNDLE_GEMFILE=<< parameters.gemfile >> << parameters.command >>
|
46
|
+
|
47
|
+
gemfiles:
|
48
|
+
faraday: &faraday
|
49
|
+
steps:
|
50
|
+
- ruby:
|
51
|
+
gemfile: gemfiles/faraday.gemfile
|
52
|
+
sequel-four: &sequel-four
|
53
|
+
steps:
|
54
|
+
- ruby:
|
55
|
+
gemfile: gemfiles/sequel4.gemfile
|
56
|
+
sequel-five: &sequel-five
|
57
|
+
steps:
|
58
|
+
- ruby:
|
59
|
+
gemfile: gemfiles/sequel5.gemfile
|
60
|
+
sinatra: &sinatra
|
61
|
+
steps:
|
62
|
+
- ruby:
|
63
|
+
gemfile: gemfiles/sinatra.gemfile
|
64
|
+
rack: &rack
|
65
|
+
steps:
|
66
|
+
- ruby:
|
67
|
+
gemfile: gemfiles/rack.gemfile
|
68
|
+
rails-four-one: &rails-four-one
|
69
|
+
steps:
|
70
|
+
- ruby:
|
71
|
+
gemfile: gemfiles/rails_41.gemfile
|
72
|
+
rails-four-two: &rails-four-two
|
73
|
+
steps:
|
74
|
+
- ruby:
|
75
|
+
gemfile: gemfiles/rails_42.gemfile
|
76
|
+
rails-five: &rails-five
|
77
|
+
steps:
|
78
|
+
- ruby:
|
79
|
+
gemfile: gemfiles/rails_5.gemfile
|
80
|
+
rails-five-one: &rails-five-one
|
81
|
+
steps:
|
82
|
+
- ruby:
|
83
|
+
gemfile: gemfiles/rails_51.gemfile
|
84
|
+
rails-five-two: &rails-five-two
|
85
|
+
steps:
|
86
|
+
- ruby:
|
87
|
+
gemfile: gemfiles/rails_52.gemfile
|
88
|
+
rails-six: &rails-six
|
89
|
+
steps:
|
90
|
+
- ruby:
|
91
|
+
gemfile: gemfiles/rails_6.gemfile
|
92
|
+
|
93
|
+
jobs:
|
94
|
+
publish:
|
95
|
+
executor: ruby-two-six
|
96
|
+
steps:
|
97
|
+
- checkout
|
98
|
+
- run:
|
99
|
+
name: Setup Rubygems
|
100
|
+
command: bash .circleci/setup-rubygems.sh
|
101
|
+
- run: gem build honeycomb-beeline.gemspec
|
102
|
+
- run: gem push honeycomb-beeline-*.gem
|
103
|
+
lint:
|
104
|
+
executor: ruby-two-six
|
105
|
+
steps:
|
106
|
+
- ruby:
|
107
|
+
command: bundle exec rake rubocop
|
108
|
+
faraday-ruby-two-three:
|
109
|
+
<<: *faraday
|
110
|
+
executor: ruby-two-three
|
111
|
+
faraday-ruby-two-four:
|
112
|
+
<<: *faraday
|
113
|
+
executor: ruby-two-four
|
114
|
+
faraday-ruby-two-five:
|
115
|
+
<<: *faraday
|
116
|
+
executor: ruby-two-five
|
117
|
+
faraday-ruby-two-six:
|
118
|
+
<<: *faraday
|
119
|
+
executor: ruby-two-six
|
120
|
+
sequel-four-ruby-two-three:
|
121
|
+
<<: *sequel-four
|
122
|
+
executor: ruby-two-three
|
123
|
+
sequel-four-ruby-two-four:
|
124
|
+
<<: *sequel-four
|
125
|
+
executor: ruby-two-four
|
126
|
+
sequel-four-ruby-two-five:
|
127
|
+
<<: *sequel-four
|
128
|
+
executor: ruby-two-five
|
129
|
+
sequel-four-ruby-two-six:
|
130
|
+
<<: *sequel-four
|
131
|
+
executor: ruby-two-six
|
132
|
+
sequel-five-ruby-two-three:
|
133
|
+
<<: *sequel-five
|
134
|
+
executor: ruby-two-three
|
135
|
+
sequel-five-ruby-two-four:
|
136
|
+
<<: *sequel-five
|
137
|
+
executor: ruby-two-four
|
138
|
+
sequel-five-ruby-two-five:
|
139
|
+
<<: *sequel-five
|
140
|
+
executor: ruby-two-five
|
141
|
+
sequel-five-ruby-two-six:
|
142
|
+
<<: *sequel-five
|
143
|
+
executor: ruby-two-six
|
144
|
+
sinatra-ruby-two-three:
|
145
|
+
<<: *sinatra
|
146
|
+
executor: ruby-two-three
|
147
|
+
sinatra-ruby-two-four:
|
148
|
+
<<: *sinatra
|
149
|
+
executor: ruby-two-four
|
150
|
+
sinatra-ruby-two-five:
|
151
|
+
<<: *sinatra
|
152
|
+
executor: ruby-two-five
|
153
|
+
sinatra-ruby-two-six:
|
154
|
+
<<: *sinatra
|
155
|
+
executor: ruby-two-six
|
156
|
+
rack-ruby-two-three:
|
157
|
+
<<: *rack
|
158
|
+
executor: ruby-two-three
|
159
|
+
rack-ruby-two-four:
|
160
|
+
<<: *rack
|
161
|
+
executor: ruby-two-four
|
162
|
+
rack-ruby-two-five:
|
163
|
+
<<: *rack
|
164
|
+
executor: ruby-two-five
|
165
|
+
rack-ruby-two-six:
|
166
|
+
<<: *rack
|
167
|
+
executor: ruby-two-six
|
168
|
+
rails-four-one-ruby-two-three:
|
169
|
+
<<: *rails-four-one
|
170
|
+
executor: ruby-two-three
|
171
|
+
rails-four-one-ruby-two-four:
|
172
|
+
<<: *rails-four-one
|
173
|
+
executor: ruby-two-four
|
174
|
+
rails-four-one-ruby-two-five:
|
175
|
+
<<: *rails-four-one
|
176
|
+
executor: ruby-two-five
|
177
|
+
rails-four-one-ruby-two-six:
|
178
|
+
<<: *rails-four-one
|
179
|
+
executor: ruby-two-six
|
180
|
+
rails-four-two-ruby-two-three:
|
181
|
+
<<: *rails-four-two
|
182
|
+
executor: ruby-two-three
|
183
|
+
rails-four-two-ruby-two-four:
|
184
|
+
<<: *rails-four-two
|
185
|
+
executor: ruby-two-four
|
186
|
+
rails-four-two-ruby-two-five:
|
187
|
+
<<: *rails-four-two
|
188
|
+
executor: ruby-two-five
|
189
|
+
rails-four-two-ruby-two-six:
|
190
|
+
<<: *rails-four-two
|
191
|
+
executor: ruby-two-six
|
192
|
+
rails-five-ruby-two-three:
|
193
|
+
<<: *rails-five
|
194
|
+
executor: ruby-two-three
|
195
|
+
rails-five-ruby-two-four:
|
196
|
+
<<: *rails-five
|
197
|
+
executor: ruby-two-four
|
198
|
+
rails-five-ruby-two-five:
|
199
|
+
<<: *rails-five
|
200
|
+
executor: ruby-two-five
|
201
|
+
rails-five-ruby-two-six:
|
202
|
+
<<: *rails-five
|
203
|
+
executor: ruby-two-six
|
204
|
+
rails-five-one-ruby-two-three:
|
205
|
+
<<: *rails-five-one
|
206
|
+
executor: ruby-two-three
|
207
|
+
rails-five-one-ruby-two-four:
|
208
|
+
<<: *rails-five-one
|
209
|
+
executor: ruby-two-four
|
210
|
+
rails-five-one-ruby-two-five:
|
211
|
+
<<: *rails-five-one
|
212
|
+
executor: ruby-two-five
|
213
|
+
rails-five-one-ruby-two-six:
|
214
|
+
<<: *rails-five-one
|
215
|
+
executor: ruby-two-six
|
216
|
+
rails-five-two-ruby-two-three:
|
217
|
+
<<: *rails-five-two
|
218
|
+
executor: ruby-two-three
|
219
|
+
rails-five-two-ruby-two-four:
|
220
|
+
<<: *rails-five-two
|
221
|
+
executor: ruby-two-four
|
222
|
+
rails-five-two-ruby-two-five:
|
223
|
+
<<: *rails-five-two
|
224
|
+
executor: ruby-two-five
|
225
|
+
rails-five-two-ruby-two-six:
|
226
|
+
<<: *rails-five-two
|
227
|
+
executor: ruby-two-six
|
228
|
+
rails-six-ruby-two-three:
|
229
|
+
<<: *rails-six
|
230
|
+
executor: ruby-two-three
|
231
|
+
rails-six-ruby-two-four:
|
232
|
+
<<: *rails-six
|
233
|
+
executor: ruby-two-four
|
234
|
+
rails-six-ruby-two-five:
|
235
|
+
<<: *rails-six
|
236
|
+
executor: ruby-two-five
|
237
|
+
rails-six-ruby-two-six:
|
238
|
+
<<: *rails-six
|
239
|
+
executor: ruby-two-six
|
240
|
+
|
241
|
+
workflows:
|
242
|
+
version: 2
|
243
|
+
beeline:
|
244
|
+
jobs:
|
245
|
+
- lint: *tag_filters
|
246
|
+
- faraday-ruby-two-three:
|
247
|
+
<<: *tag_filters
|
248
|
+
requires:
|
249
|
+
- lint
|
250
|
+
- faraday-ruby-two-four:
|
251
|
+
<<: *tag_filters
|
252
|
+
requires:
|
253
|
+
- lint
|
254
|
+
- faraday-ruby-two-five:
|
255
|
+
<<: *tag_filters
|
256
|
+
requires:
|
257
|
+
- lint
|
258
|
+
- faraday-ruby-two-six:
|
259
|
+
<<: *tag_filters
|
260
|
+
requires:
|
261
|
+
- lint
|
262
|
+
- sequel-four-ruby-two-three:
|
263
|
+
<<: *tag_filters
|
264
|
+
requires:
|
265
|
+
- lint
|
266
|
+
- sequel-four-ruby-two-four:
|
267
|
+
<<: *tag_filters
|
268
|
+
requires:
|
269
|
+
- lint
|
270
|
+
- sequel-four-ruby-two-five:
|
271
|
+
<<: *tag_filters
|
272
|
+
requires:
|
273
|
+
- lint
|
274
|
+
- sequel-four-ruby-two-six:
|
275
|
+
<<: *tag_filters
|
276
|
+
requires:
|
277
|
+
- lint
|
278
|
+
- sequel-five-ruby-two-three:
|
279
|
+
<<: *tag_filters
|
280
|
+
requires:
|
281
|
+
- lint
|
282
|
+
- sequel-five-ruby-two-four:
|
283
|
+
<<: *tag_filters
|
284
|
+
requires:
|
285
|
+
- lint
|
286
|
+
- sequel-five-ruby-two-five:
|
287
|
+
<<: *tag_filters
|
288
|
+
requires:
|
289
|
+
- lint
|
290
|
+
- sequel-five-ruby-two-six:
|
291
|
+
<<: *tag_filters
|
292
|
+
requires:
|
293
|
+
- lint
|
294
|
+
- sinatra-ruby-two-three:
|
295
|
+
<<: *tag_filters
|
296
|
+
requires:
|
297
|
+
- lint
|
298
|
+
- sinatra-ruby-two-four:
|
299
|
+
<<: *tag_filters
|
300
|
+
requires:
|
301
|
+
- lint
|
302
|
+
- sinatra-ruby-two-five:
|
303
|
+
<<: *tag_filters
|
304
|
+
requires:
|
305
|
+
- lint
|
306
|
+
- sinatra-ruby-two-six:
|
307
|
+
<<: *tag_filters
|
308
|
+
requires:
|
309
|
+
- lint
|
310
|
+
- rack-ruby-two-three:
|
311
|
+
<<: *tag_filters
|
312
|
+
requires:
|
313
|
+
- lint
|
314
|
+
- rack-ruby-two-four:
|
315
|
+
<<: *tag_filters
|
316
|
+
requires:
|
317
|
+
- lint
|
318
|
+
- rack-ruby-two-five:
|
319
|
+
<<: *tag_filters
|
320
|
+
requires:
|
321
|
+
- lint
|
322
|
+
- rack-ruby-two-six:
|
323
|
+
<<: *tag_filters
|
324
|
+
requires:
|
325
|
+
- lint
|
326
|
+
- rails-four-one-ruby-two-three:
|
327
|
+
<<: *tag_filters
|
328
|
+
requires:
|
329
|
+
- lint
|
330
|
+
- rails-four-two-ruby-two-three:
|
331
|
+
<<: *tag_filters
|
332
|
+
requires:
|
333
|
+
- lint
|
334
|
+
- rails-four-two-ruby-two-four:
|
335
|
+
<<: *tag_filters
|
336
|
+
requires:
|
337
|
+
- lint
|
338
|
+
- rails-four-two-ruby-two-five:
|
339
|
+
<<: *tag_filters
|
340
|
+
requires:
|
341
|
+
- lint
|
342
|
+
- rails-four-two-ruby-two-six:
|
343
|
+
<<: *tag_filters
|
344
|
+
requires:
|
345
|
+
- lint
|
346
|
+
- rails-five-ruby-two-three:
|
347
|
+
<<: *tag_filters
|
348
|
+
requires:
|
349
|
+
- lint
|
350
|
+
- rails-five-ruby-two-four:
|
351
|
+
<<: *tag_filters
|
352
|
+
requires:
|
353
|
+
- lint
|
354
|
+
- rails-five-ruby-two-five:
|
355
|
+
<<: *tag_filters
|
356
|
+
requires:
|
357
|
+
- lint
|
358
|
+
- rails-five-ruby-two-six:
|
359
|
+
<<: *tag_filters
|
360
|
+
requires:
|
361
|
+
- lint
|
362
|
+
- rails-five-one-ruby-two-three:
|
363
|
+
<<: *tag_filters
|
364
|
+
requires:
|
365
|
+
- lint
|
366
|
+
- rails-five-one-ruby-two-four:
|
367
|
+
<<: *tag_filters
|
368
|
+
requires:
|
369
|
+
- lint
|
370
|
+
- rails-five-one-ruby-two-five:
|
371
|
+
<<: *tag_filters
|
372
|
+
requires:
|
373
|
+
- lint
|
374
|
+
- rails-five-one-ruby-two-six:
|
375
|
+
<<: *tag_filters
|
376
|
+
requires:
|
377
|
+
- lint
|
378
|
+
- rails-five-two-ruby-two-three:
|
379
|
+
<<: *tag_filters
|
380
|
+
requires:
|
381
|
+
- lint
|
382
|
+
- rails-five-two-ruby-two-four:
|
383
|
+
<<: *tag_filters
|
384
|
+
requires:
|
385
|
+
- lint
|
386
|
+
- rails-five-two-ruby-two-five:
|
387
|
+
<<: *tag_filters
|
388
|
+
requires:
|
389
|
+
- lint
|
390
|
+
- rails-five-two-ruby-two-six:
|
391
|
+
<<: *tag_filters
|
392
|
+
requires:
|
393
|
+
- lint
|
394
|
+
- rails-six-ruby-two-five:
|
395
|
+
<<: *tag_filters
|
396
|
+
requires:
|
397
|
+
- lint
|
398
|
+
- rails-six-ruby-two-six:
|
399
|
+
<<: *tag_filters
|
400
|
+
requires:
|
401
|
+
- lint
|
402
|
+
- publish:
|
403
|
+
filters:
|
404
|
+
tags:
|
405
|
+
only: /^v.*/
|
406
|
+
branches:
|
407
|
+
ignore: /.*/
|
408
|
+
requires:
|
409
|
+
- lint
|
410
|
+
- faraday-ruby-two-three
|
411
|
+
- faraday-ruby-two-four
|
412
|
+
- faraday-ruby-two-five
|
413
|
+
- faraday-ruby-two-six
|
414
|
+
- sequel-four-ruby-two-three
|
415
|
+
- sequel-four-ruby-two-four
|
416
|
+
- sequel-four-ruby-two-five
|
417
|
+
- sequel-four-ruby-two-six
|
418
|
+
- sequel-five-ruby-two-three
|
419
|
+
- sequel-five-ruby-two-four
|
420
|
+
- sequel-five-ruby-two-five
|
421
|
+
- sequel-five-ruby-two-six
|
422
|
+
- sinatra-ruby-two-three
|
423
|
+
- sinatra-ruby-two-four
|
424
|
+
- sinatra-ruby-two-five
|
425
|
+
- sinatra-ruby-two-six
|
426
|
+
- rack-ruby-two-three
|
427
|
+
- rack-ruby-two-four
|
428
|
+
- rack-ruby-two-five
|
429
|
+
- rack-ruby-two-six
|
430
|
+
- rails-four-one-ruby-two-three
|
431
|
+
- rails-four-two-ruby-two-three
|
432
|
+
- rails-four-two-ruby-two-four
|
433
|
+
- rails-four-two-ruby-two-five
|
434
|
+
- rails-four-two-ruby-two-six
|
435
|
+
- rails-five-ruby-two-three
|
436
|
+
- rails-five-ruby-two-four
|
437
|
+
- rails-five-ruby-two-five
|
438
|
+
- rails-five-ruby-two-six
|
439
|
+
- rails-five-one-ruby-two-three
|
440
|
+
- rails-five-one-ruby-two-four
|
441
|
+
- rails-five-one-ruby-two-five
|
442
|
+
- rails-five-one-ruby-two-six
|
443
|
+
- rails-five-two-ruby-two-three
|
444
|
+
- rails-five-two-ruby-two-four
|
445
|
+
- rails-five-two-ruby-two-five
|
446
|
+
- rails-five-two-ruby-two-six
|
447
|
+
- rails-six-ruby-two-five
|
448
|
+
- rails-six-ruby-two-six
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Honeycomb Beeline for Ruby
|
2
2
|
|
3
|
-
[![Build Status](https://
|
3
|
+
[![Build Status](https://circleci.com/gh/honeycombio/beeline-ruby.svg?style=svg)](https://circleci.com/gh/honeycombio/beeline-ruby)
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/honeycomb-beeline.svg)](https://badge.fury.io/rb/honeycomb-beeline)
|
5
5
|
|
6
6
|
This package makes it easy to instrument your Ruby web app to send useful events to [Honeycomb](https://www.honeycomb.io), a service for debugging your software in production.
|
@@ -12,8 +12,14 @@ module Honeycomb
|
|
12
12
|
yield "meta.package_version", ::Rails::VERSION::STRING
|
13
13
|
|
14
14
|
::ActionDispatch::Request.new(env).tap do |request|
|
15
|
-
|
16
|
-
|
15
|
+
# calling request.params will blow up if raw_post is nil
|
16
|
+
# the only known cause of this is when using the
|
17
|
+
# [twirp](https://github.com/twitchtv/twirp-ruby) rack app mounted in
|
18
|
+
# the rails app
|
19
|
+
if request.raw_post
|
20
|
+
yield "request.controller", request.params[:controller]
|
21
|
+
yield "request.action", request.params[:action]
|
22
|
+
end
|
17
23
|
|
18
24
|
break unless request.respond_to? :routes
|
19
25
|
break unless request.routes.respond_to? :router
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honeycomb-beeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Holman
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: libhoney
|
@@ -199,12 +199,14 @@ executables: []
|
|
199
199
|
extensions: []
|
200
200
|
extra_rdoc_files: []
|
201
201
|
files:
|
202
|
+
- ".circleci/bundler_version.sh"
|
203
|
+
- ".circleci/config.yml"
|
204
|
+
- ".circleci/setup-rubygems.sh"
|
202
205
|
- ".gitignore"
|
203
206
|
- ".overcommit.yml"
|
204
207
|
- ".rspec"
|
205
208
|
- ".rubocop.yml"
|
206
209
|
- ".ruby-version"
|
207
|
-
- ".travis.yml"
|
208
210
|
- Appraisals
|
209
211
|
- CODE_OF_CONDUCT.md
|
210
212
|
- CONTRIBUTORS.md
|
@@ -216,7 +218,6 @@ files:
|
|
216
218
|
- UPGRADING.md
|
217
219
|
- bin/console
|
218
220
|
- bin/setup
|
219
|
-
- bundler_version.sh
|
220
221
|
- honeycomb-beeline.gemspec
|
221
222
|
- lib/generators/honeycomb/honeycomb_generator.rb
|
222
223
|
- lib/honeycomb-beeline.rb
|
@@ -260,8 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
260
261
|
- !ruby/object:Gem::Version
|
261
262
|
version: '0'
|
262
263
|
requirements: []
|
263
|
-
|
264
|
-
rubygems_version: 2.7.7
|
264
|
+
rubygems_version: 3.0.3
|
265
265
|
signing_key:
|
266
266
|
specification_version: 4
|
267
267
|
summary: Instrument your Ruby apps with Honeycomb
|
data/.travis.yml
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
cache: bundler
|
3
|
-
rvm:
|
4
|
-
- 2.3
|
5
|
-
- 2.4
|
6
|
-
- 2.5
|
7
|
-
- 2.6
|
8
|
-
gemfile:
|
9
|
-
- gemfiles/faraday.gemfile
|
10
|
-
- gemfiles/sequel4.gemfile
|
11
|
-
- gemfiles/sequel5.gemfile
|
12
|
-
- gemfiles/sinatra.gemfile
|
13
|
-
- gemfiles/rack.gemfile
|
14
|
-
- gemfiles/rails_41.gemfile
|
15
|
-
- gemfiles/rails_42.gemfile
|
16
|
-
- gemfiles/rails_5.gemfile
|
17
|
-
- gemfiles/rails_51.gemfile
|
18
|
-
- gemfiles/rails_52.gemfile
|
19
|
-
- gemfiles/rails_6.gemfile
|
20
|
-
script: bundle exec rake test
|
21
|
-
before_install:
|
22
|
-
- gem update bundler
|
23
|
-
- ./bundler_version.sh
|
24
|
-
matrix:
|
25
|
-
exclude:
|
26
|
-
- rvm: 2.4
|
27
|
-
gemfile: gemfiles/rails_41.gemfile
|
28
|
-
- rvm: 2.5
|
29
|
-
gemfile: gemfiles/rails_41.gemfile
|
30
|
-
- rvm: 2.6
|
31
|
-
gemfile: gemfiles/rails_41.gemfile
|
32
|
-
- rvm: 2.3
|
33
|
-
gemfile: gemfiles/rails_6.gemfile
|
34
|
-
- rvm: 2.4
|
35
|
-
gemfile: gemfiles/rails_6.gemfile
|
36
|
-
stages:
|
37
|
-
- lint
|
38
|
-
- test
|
39
|
-
- deploy
|
40
|
-
jobs:
|
41
|
-
include:
|
42
|
-
- stage: lint
|
43
|
-
script: bundle exec rake rubocop
|
44
|
-
rvm: 2.6
|
45
|
-
gemfile: Gemfile
|
46
|
-
- stage: deploy
|
47
|
-
script: skip
|
48
|
-
rvm: 2.6
|
49
|
-
gemfile: Gemfile
|
50
|
-
deploy:
|
51
|
-
provider: rubygems
|
52
|
-
api_key:
|
53
|
-
secure: V7GDCgz1myfe4c9EoQcGHGzLVtDaJo+/Iis6i+s5gUvKsITVmoMnTEEwuSXROGAdabyjzkTSxMEC2dOK/7Hlc9z4ryb+LxZSMcQfbACv6rOqvGG+PQ++SZULm3qhfTTHwpq41GspVPPindpcaEcVoOGZm6vhuFx9GZQivFNlUvU2TMFT3/+joMsNP0HoI2KfOKy2ACBrjhsE2ooCTON7dlZzCoGwnm9euODrNUBR7/2PnFxBkUaPlRdRMsmvVfxyAgw4eC9LpZgw9Y2dmjhMPXAnOxe3/kQpJ6Z0wN7sp495PYNHGT3DZxQyo84lZcFsgRJa0aLgpXkZGOBa5L7+ZOrNQ0l06kSsrkOCXCjX/lWvaVzncOYXbq5NOPfuQzP3XTXkBJ7816EqNePo1OwBix7SEJOI45/YvEoJfn7J07zdRFzqaq3mjTEu1B92dO8kzvfFUSkbRUkLDpTg6Ra0LjRvPkqeuErcIzzHCLg8RB6Bd88LlLdhhqiN8kRoNUfjlyViyQXy3DYNFfXLV8up+4jJe4wK+p7qtVqpD3yGH7LRKn/911puy1AtzprQ8dUqHEby29f0J6jLrd9oNTI7haWTC+pO5xY2+YfkeOMQq7QKSuWoiMRCGExd4rBGsV/JD3FRq2O2vu/0xXKL+aep7UgEUMHkXOb0EwL/nTm6Bd0=
|
54
|
-
gem: honeycomb-beeline
|
55
|
-
on:
|
56
|
-
tags: true
|
57
|
-
repo: honeycombio/beeline-ruby
|