instana 1.13.0 → 1.193.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +200 -133
  3. data/.editorconfig +10 -0
  4. data/.gitignore +3 -0
  5. data/.rubocop.yml +5 -1147
  6. data/.rubocop_todo.yml +1140 -0
  7. data/Appraisals +100 -0
  8. data/Gemfile +11 -32
  9. data/Rakefile +16 -39
  10. data/bin/console +5 -4
  11. data/gemfiles/.bundle/config +1 -2
  12. data/gemfiles/cuba_30.gemfile +15 -0
  13. data/gemfiles/dalli_20.gemfile +15 -0
  14. data/gemfiles/excon_02.gemfile +15 -0
  15. data/gemfiles/graphql_10.gemfile +15 -0
  16. data/gemfiles/grpc_10.gemfile +15 -0
  17. data/gemfiles/net_http_01.gemfile +14 -0
  18. data/gemfiles/rack_16.gemfile +15 -0
  19. data/gemfiles/rack_20.gemfile +15 -0
  20. data/gemfiles/rails_42.gemfile +18 -0
  21. data/gemfiles/rails_50.gemfile +18 -0
  22. data/gemfiles/rails_52.gemfile +18 -0
  23. data/gemfiles/rails_60.gemfile +18 -0
  24. data/gemfiles/redis_40.gemfile +15 -0
  25. data/gemfiles/resque_122.gemfile +16 -0
  26. data/gemfiles/resque_20.gemfile +15 -0
  27. data/gemfiles/rest_client_16.gemfile +15 -0
  28. data/gemfiles/rest_client_20.gemfile +15 -0
  29. data/gemfiles/roda_20.gemfile +15 -0
  30. data/gemfiles/roda_30.gemfile +15 -0
  31. data/gemfiles/sidekiq_42.gemfile +15 -0
  32. data/gemfiles/sidekiq_50.gemfile +15 -0
  33. data/gemfiles/sinatra_14.gemfile +15 -0
  34. data/instana.gemspec +1 -7
  35. data/lib/instana/activator.rb +41 -0
  36. data/lib/instana/activators/action_controller_api.rb +18 -0
  37. data/lib/instana/activators/action_controller_base.rb +18 -0
  38. data/lib/instana/activators/action_view.rb +18 -0
  39. data/lib/instana/activators/active_record.rb +18 -0
  40. data/lib/instana/activators/cuba.rb +18 -0
  41. data/lib/instana/activators/dalli.rb +20 -0
  42. data/lib/instana/activators/excon.rb +17 -0
  43. data/lib/instana/activators/graphql.rb +19 -0
  44. data/lib/instana/activators/grpc_client.rb +17 -0
  45. data/lib/instana/activators/grpc_server.rb +17 -0
  46. data/lib/instana/activators/net_http.rb +17 -0
  47. data/lib/instana/activators/rack.rb +13 -0
  48. data/lib/instana/activators/rails.rb +15 -0
  49. data/lib/instana/activators/redis.rb +17 -0
  50. data/lib/instana/activators/resque_client.rb +18 -0
  51. data/lib/instana/activators/resque_worker.rb +30 -0
  52. data/lib/instana/activators/rest_client.rb +17 -0
  53. data/lib/instana/activators/roda.rb +18 -0
  54. data/lib/instana/activators/sidekiq_client.rb +21 -0
  55. data/lib/instana/activators/sidekiq_worker.rb +21 -0
  56. data/lib/instana/activators/sinatra.rb +18 -0
  57. data/lib/instana/config.rb +11 -0
  58. data/lib/instana/frameworks/cuba.rb +6 -13
  59. data/lib/instana/frameworks/rails.rb +20 -33
  60. data/lib/instana/frameworks/roda.rb +7 -13
  61. data/lib/instana/frameworks/sinatra.rb +1 -8
  62. data/lib/instana/instrumentation/action_controller.rb +81 -0
  63. data/lib/instana/instrumentation/action_view.rb +27 -0
  64. data/lib/instana/instrumentation/active_record.rb +47 -0
  65. data/lib/instana/instrumentation/dalli.rb +7 -18
  66. data/lib/instana/instrumentation/excon.rb +51 -57
  67. data/lib/instana/instrumentation/graphql.rb +75 -0
  68. data/lib/instana/instrumentation/grpc.rb +70 -66
  69. data/lib/instana/instrumentation/instrumented_request.rb +69 -0
  70. data/lib/instana/instrumentation/net-http.rb +43 -47
  71. data/lib/instana/instrumentation/rack.rb +14 -53
  72. data/lib/instana/instrumentation/redis.rb +10 -18
  73. data/lib/instana/instrumentation/resque.rb +14 -50
  74. data/lib/instana/instrumentation/rest-client.rb +2 -17
  75. data/lib/instana/instrumentation/sidekiq-client.rb +0 -9
  76. data/lib/instana/instrumentation/sidekiq-worker.rb +0 -9
  77. data/lib/instana/secrets.rb +7 -7
  78. data/lib/instana/setup.rb +3 -1
  79. data/lib/instana/tracer.rb +6 -0
  80. data/lib/instana/tracing/span.rb +14 -10
  81. data/lib/instana/util.rb +15 -69
  82. data/lib/instana/version.rb +1 -1
  83. data/test/activator_test.rb +27 -0
  84. data/test/frameworks/cuba_test.rb +38 -40
  85. data/test/frameworks/roda_test.rb +39 -41
  86. data/test/frameworks/sinatra_test.rb +61 -64
  87. data/test/instrumentation/excon_test.rb +1 -2
  88. data/test/instrumentation/graphql_test.rb +116 -0
  89. data/test/instrumentation/grpc_test.rb +2 -1
  90. data/test/instrumentation/{net-http_test.rb → net_http_test.rb} +1 -0
  91. data/test/instrumentation/rack_instrumented_request_test.rb +84 -0
  92. data/test/{frameworks → instrumentation}/rack_test.rb +32 -20
  93. data/test/{frameworks/rails/actioncontroller_test.rb → instrumentation/rails_action_controller_test.rb} +37 -21
  94. data/test/instrumentation/rails_action_view_test.rb +138 -0
  95. data/test/instrumentation/rails_active_record_test.rb +121 -0
  96. data/test/instrumentation/redis_test.rb +10 -0
  97. data/test/instrumentation/resque_test.rb +3 -11
  98. data/test/instrumentation/{rest-client_test.rb → rest_client_test.rb} +6 -0
  99. data/test/instrumentation/sidekiq-client_test.rb +1 -0
  100. data/test/instrumentation/sidekiq-worker_test.rb +1 -0
  101. data/test/support/apps/active_record/active_record.rb +21 -0
  102. data/test/{servers/grpc_50051.rb → support/apps/grpc/boot.rb} +1 -1
  103. data/test/{apps → support/apps/grpc}/grpc_server.rb +0 -0
  104. data/test/{servers/rackapp_6511.rb → support/apps/http_endpoint/boot.rb} +0 -0
  105. data/test/{servers/rails_3205.rb → support/apps/rails/boot.rb} +8 -14
  106. data/test/{models → support/apps/rails/models}/block.rb +1 -1
  107. data/test/{models → support/apps/rails/models}/block6.rb +0 -0
  108. data/test/support/apps/resque/boot.rb +2 -0
  109. data/test/{jobs → support/apps/resque/jobs}/resque_error_job.rb +0 -0
  110. data/test/{jobs → support/apps/resque/jobs}/resque_fast_job.rb +0 -0
  111. data/test/support/apps/sidekiq/boot.rb +21 -0
  112. data/test/{jobs → support/apps/sidekiq/jobs}/sidekiq_job_1.rb +0 -0
  113. data/test/{jobs → support/apps/sidekiq/jobs}/sidekiq_job_2.rb +0 -0
  114. data/test/{servers → support/apps}/sidekiq/worker.rb +2 -2
  115. data/test/support/helpers.rb +94 -0
  116. data/test/test_helper.rb +24 -144
  117. data/test/tracing/id_management_test.rb +4 -66
  118. metadata +106 -95
  119. data/gemfiles/libraries.gemfile +0 -71
  120. data/gemfiles/rails32.gemfile +0 -51
  121. data/gemfiles/rails42.gemfile +0 -50
  122. data/gemfiles/rails50.gemfile +0 -52
  123. data/gemfiles/rails52.gemfile +0 -52
  124. data/gemfiles/rails60.gemfile +0 -72
  125. data/lib/instana/frameworks/instrumentation/abstract_mysql_adapter.rb +0 -58
  126. data/lib/instana/frameworks/instrumentation/action_controller.rb +0 -194
  127. data/lib/instana/frameworks/instrumentation/action_view.rb +0 -43
  128. data/lib/instana/frameworks/instrumentation/active_record.rb +0 -27
  129. data/lib/instana/frameworks/instrumentation/mysql2_adapter.rb +0 -81
  130. data/lib/instana/frameworks/instrumentation/mysql_adapter.rb +0 -56
  131. data/lib/instana/frameworks/instrumentation/postgresql_adapter.rb +0 -85
  132. data/lib/instana/instrumentation.rb +0 -25
  133. data/lib/instana/test.rb +0 -43
  134. data/test/apps/cuba.rb +0 -19
  135. data/test/apps/roda.rb +0 -13
  136. data/test/apps/sinatra.rb +0 -9
  137. data/test/frameworks/rails/actionview3_test.rb +0 -210
  138. data/test/frameworks/rails/actionview4_test.rb +0 -208
  139. data/test/frameworks/rails/actionview5_test.rb +0 -221
  140. data/test/frameworks/rails/activerecord_test.rb +0 -227
  141. data/test/servers/helpers/sidekiq_worker_initializer.rb +0 -27
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instana
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.193.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Giacomo Lombardo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-08 00:00:00.000000000 Z
11
+ date: 2021-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -53,47 +53,19 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '5.0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: pry
56
+ name: appraisal
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 0.10.0
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 0.10.0
69
- - !ruby/object:Gem::Dependency
70
- name: byebug
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: 8.0.0
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: 8.0.0
83
- - !ruby/object:Gem::Dependency
84
- name: pry-byebug
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: 3.0.0
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: 3.0.0
68
+ version: '0'
97
69
  - !ruby/object:Gem::Dependency
98
70
  name: sys-proctable
99
71
  requirement: !ruby/object:Gem::Requirement
@@ -175,9 +147,12 @@ extra_rdoc_files: []
175
147
  files:
176
148
  - ".circleci/config.yml"
177
149
  - ".codeclimate.yml"
150
+ - ".editorconfig"
178
151
  - ".fasterer.yml"
179
152
  - ".gitignore"
180
153
  - ".rubocop.yml"
154
+ - ".rubocop_todo.yml"
155
+ - Appraisals
181
156
  - Dockerfile
182
157
  - Gemfile
183
158
  - LICENSE
@@ -196,14 +171,52 @@ files:
196
171
  - examples/opentracing.rb
197
172
  - examples/tracing.rb
198
173
  - gemfiles/.bundle/config
199
- - gemfiles/libraries.gemfile
200
- - gemfiles/rails32.gemfile
201
- - gemfiles/rails42.gemfile
202
- - gemfiles/rails50.gemfile
203
- - gemfiles/rails52.gemfile
204
- - gemfiles/rails60.gemfile
174
+ - gemfiles/cuba_30.gemfile
175
+ - gemfiles/dalli_20.gemfile
176
+ - gemfiles/excon_02.gemfile
177
+ - gemfiles/graphql_10.gemfile
178
+ - gemfiles/grpc_10.gemfile
179
+ - gemfiles/net_http_01.gemfile
180
+ - gemfiles/rack_16.gemfile
181
+ - gemfiles/rack_20.gemfile
182
+ - gemfiles/rails_42.gemfile
183
+ - gemfiles/rails_50.gemfile
184
+ - gemfiles/rails_52.gemfile
185
+ - gemfiles/rails_60.gemfile
186
+ - gemfiles/redis_40.gemfile
187
+ - gemfiles/resque_122.gemfile
188
+ - gemfiles/resque_20.gemfile
189
+ - gemfiles/rest_client_16.gemfile
190
+ - gemfiles/rest_client_20.gemfile
191
+ - gemfiles/roda_20.gemfile
192
+ - gemfiles/roda_30.gemfile
193
+ - gemfiles/sidekiq_42.gemfile
194
+ - gemfiles/sidekiq_50.gemfile
195
+ - gemfiles/sinatra_14.gemfile
205
196
  - instana.gemspec
206
197
  - lib/instana.rb
198
+ - lib/instana/activator.rb
199
+ - lib/instana/activators/action_controller_api.rb
200
+ - lib/instana/activators/action_controller_base.rb
201
+ - lib/instana/activators/action_view.rb
202
+ - lib/instana/activators/active_record.rb
203
+ - lib/instana/activators/cuba.rb
204
+ - lib/instana/activators/dalli.rb
205
+ - lib/instana/activators/excon.rb
206
+ - lib/instana/activators/graphql.rb
207
+ - lib/instana/activators/grpc_client.rb
208
+ - lib/instana/activators/grpc_server.rb
209
+ - lib/instana/activators/net_http.rb
210
+ - lib/instana/activators/rack.rb
211
+ - lib/instana/activators/rails.rb
212
+ - lib/instana/activators/redis.rb
213
+ - lib/instana/activators/resque_client.rb
214
+ - lib/instana/activators/resque_worker.rb
215
+ - lib/instana/activators/rest_client.rb
216
+ - lib/instana/activators/roda.rb
217
+ - lib/instana/activators/sidekiq_client.rb
218
+ - lib/instana/activators/sidekiq_worker.rb
219
+ - lib/instana/activators/sinatra.rb
207
220
  - lib/instana/agent.rb
208
221
  - lib/instana/agent/helpers.rb
209
222
  - lib/instana/agent/hooks.rb
@@ -217,21 +230,18 @@ files:
217
230
  - lib/instana/eum/eum-test.js.erb
218
231
  - lib/instana/eum/eum.js.erb
219
232
  - lib/instana/frameworks/cuba.rb
220
- - lib/instana/frameworks/instrumentation/abstract_mysql_adapter.rb
221
- - lib/instana/frameworks/instrumentation/action_controller.rb
222
- - lib/instana/frameworks/instrumentation/action_view.rb
223
- - lib/instana/frameworks/instrumentation/active_record.rb
224
- - lib/instana/frameworks/instrumentation/mysql2_adapter.rb
225
- - lib/instana/frameworks/instrumentation/mysql_adapter.rb
226
- - lib/instana/frameworks/instrumentation/postgresql_adapter.rb
227
233
  - lib/instana/frameworks/rails.rb
228
234
  - lib/instana/frameworks/roda.rb
229
235
  - lib/instana/frameworks/sinatra.rb
230
236
  - lib/instana/helpers.rb
231
- - lib/instana/instrumentation.rb
237
+ - lib/instana/instrumentation/action_controller.rb
238
+ - lib/instana/instrumentation/action_view.rb
239
+ - lib/instana/instrumentation/active_record.rb
232
240
  - lib/instana/instrumentation/dalli.rb
233
241
  - lib/instana/instrumentation/excon.rb
242
+ - lib/instana/instrumentation/graphql.rb
234
243
  - lib/instana/instrumentation/grpc.rb
244
+ - lib/instana/instrumentation/instrumented_request.rb
235
245
  - lib/instana/instrumentation/net-http.rb
236
246
  - lib/instana/instrumentation/rack.rb
237
247
  - lib/instana/instrumentation/redis.rb
@@ -244,7 +254,6 @@ files:
244
254
  - lib/instana/rack.rb
245
255
  - lib/instana/secrets.rb
246
256
  - lib/instana/setup.rb
247
- - lib/instana/test.rb
248
257
  - lib/instana/thread_local.rb
249
258
  - lib/instana/tracer.rb
250
259
  - lib/instana/tracing/processor.rb
@@ -255,45 +264,46 @@ files:
255
264
  - lib/oj_check.rb
256
265
  - lib/opentracing.rb
257
266
  - log/.keep
267
+ - test/activator_test.rb
258
268
  - test/agent/agent_test.rb
259
- - test/apps/cuba.rb
260
- - test/apps/grpc_server.rb
261
- - test/apps/roda.rb
262
- - test/apps/sinatra.rb
263
269
  - test/benchmarks/bench_id_generation.rb
264
270
  - test/benchmarks/bench_opentracing.rb
265
271
  - test/config_test.rb
266
272
  - test/frameworks/cuba_test.rb
267
- - test/frameworks/rack_test.rb
268
- - test/frameworks/rails/actioncontroller_test.rb
269
- - test/frameworks/rails/actionview3_test.rb
270
- - test/frameworks/rails/actionview4_test.rb
271
- - test/frameworks/rails/actionview5_test.rb
272
- - test/frameworks/rails/activerecord_test.rb
273
273
  - test/frameworks/roda_test.rb
274
274
  - test/frameworks/sinatra_test.rb
275
275
  - test/instana_test.rb
276
276
  - test/instrumentation/dalli_test.rb
277
277
  - test/instrumentation/excon_test.rb
278
+ - test/instrumentation/graphql_test.rb
278
279
  - test/instrumentation/grpc_test.rb
279
- - test/instrumentation/net-http_test.rb
280
+ - test/instrumentation/net_http_test.rb
281
+ - test/instrumentation/rack_instrumented_request_test.rb
282
+ - test/instrumentation/rack_test.rb
283
+ - test/instrumentation/rails_action_controller_test.rb
284
+ - test/instrumentation/rails_action_view_test.rb
285
+ - test/instrumentation/rails_active_record_test.rb
280
286
  - test/instrumentation/redis_test.rb
281
287
  - test/instrumentation/resque_test.rb
282
- - test/instrumentation/rest-client_test.rb
288
+ - test/instrumentation/rest_client_test.rb
283
289
  - test/instrumentation/sidekiq-client_test.rb
284
290
  - test/instrumentation/sidekiq-worker_test.rb
285
- - test/jobs/resque_error_job.rb
286
- - test/jobs/resque_fast_job.rb
287
- - test/jobs/sidekiq_job_1.rb
288
- - test/jobs/sidekiq_job_2.rb
289
- - test/models/block.rb
290
- - test/models/block6.rb
291
291
  - test/secrets_test.rb
292
- - test/servers/grpc_50051.rb
293
- - test/servers/helpers/sidekiq_worker_initializer.rb
294
- - test/servers/rackapp_6511.rb
295
- - test/servers/rails_3205.rb
296
- - test/servers/sidekiq/worker.rb
292
+ - test/support/apps/active_record/active_record.rb
293
+ - test/support/apps/grpc/boot.rb
294
+ - test/support/apps/grpc/grpc_server.rb
295
+ - test/support/apps/http_endpoint/boot.rb
296
+ - test/support/apps/rails/boot.rb
297
+ - test/support/apps/rails/models/block.rb
298
+ - test/support/apps/rails/models/block6.rb
299
+ - test/support/apps/resque/boot.rb
300
+ - test/support/apps/resque/jobs/resque_error_job.rb
301
+ - test/support/apps/resque/jobs/resque_fast_job.rb
302
+ - test/support/apps/sidekiq/boot.rb
303
+ - test/support/apps/sidekiq/jobs/sidekiq_job_1.rb
304
+ - test/support/apps/sidekiq/jobs/sidekiq_job_2.rb
305
+ - test/support/apps/sidekiq/worker.rb
306
+ - test/support/helpers.rb
297
307
  - test/test_helper.rb
298
308
  - test/tracing/custom_test.rb
299
309
  - test/tracing/id_management_test.rb
@@ -323,53 +333,54 @@ required_rubygems_version: !ruby/object:Gem::Requirement
323
333
  - !ruby/object:Gem::Version
324
334
  version: '0'
325
335
  requirements: []
326
- rubygems_version: 3.1.4
336
+ rubygems_version: 3.2.6
327
337
  signing_key:
328
338
  specification_version: 4
329
339
  summary: Ruby Distributed Tracing & Metrics Sensor for Instana
330
340
  test_files:
331
341
  - test/config_test.rb
342
+ - test/activator_test.rb
332
343
  - test/tracing/id_management_test.rb
333
344
  - test/tracing/tracer_test.rb
334
345
  - test/tracing/custom_test.rb
335
346
  - test/tracing/opentracing_test.rb
336
347
  - test/tracing/tracer_async_test.rb
337
348
  - test/agent/agent_test.rb
338
- - test/models/block.rb
339
- - test/models/block6.rb
340
349
  - test/secrets_test.rb
350
+ - test/instrumentation/graphql_test.rb
341
351
  - test/instrumentation/sidekiq-client_test.rb
352
+ - test/instrumentation/rails_action_controller_test.rb
353
+ - test/instrumentation/rest_client_test.rb
354
+ - test/instrumentation/net_http_test.rb
342
355
  - test/instrumentation/resque_test.rb
343
356
  - test/instrumentation/sidekiq-worker_test.rb
357
+ - test/instrumentation/rails_action_view_test.rb
358
+ - test/instrumentation/rack_test.rb
359
+ - test/instrumentation/rack_instrumented_request_test.rb
360
+ - test/instrumentation/rails_active_record_test.rb
344
361
  - test/instrumentation/redis_test.rb
345
- - test/instrumentation/rest-client_test.rb
346
362
  - test/instrumentation/dalli_test.rb
347
363
  - test/instrumentation/excon_test.rb
348
364
  - test/instrumentation/grpc_test.rb
349
- - test/instrumentation/net-http_test.rb
365
+ - test/support/helpers.rb
366
+ - test/support/apps/sidekiq/boot.rb
367
+ - test/support/apps/sidekiq/jobs/sidekiq_job_2.rb
368
+ - test/support/apps/sidekiq/jobs/sidekiq_job_1.rb
369
+ - test/support/apps/sidekiq/worker.rb
370
+ - test/support/apps/grpc/boot.rb
371
+ - test/support/apps/grpc/grpc_server.rb
372
+ - test/support/apps/active_record/active_record.rb
373
+ - test/support/apps/resque/boot.rb
374
+ - test/support/apps/resque/jobs/resque_error_job.rb
375
+ - test/support/apps/resque/jobs/resque_fast_job.rb
376
+ - test/support/apps/http_endpoint/boot.rb
377
+ - test/support/apps/rails/models/block.rb
378
+ - test/support/apps/rails/models/block6.rb
379
+ - test/support/apps/rails/boot.rb
350
380
  - test/benchmarks/bench_opentracing.rb
351
381
  - test/benchmarks/bench_id_generation.rb
352
382
  - test/test_helper.rb
353
- - test/jobs/sidekiq_job_2.rb
354
- - test/jobs/resque_error_job.rb
355
- - test/jobs/sidekiq_job_1.rb
356
- - test/jobs/resque_fast_job.rb
357
383
  - test/frameworks/cuba_test.rb
358
- - test/frameworks/rack_test.rb
359
384
  - test/frameworks/roda_test.rb
360
385
  - test/frameworks/sinatra_test.rb
361
- - test/frameworks/rails/actionview4_test.rb
362
- - test/frameworks/rails/activerecord_test.rb
363
- - test/frameworks/rails/actioncontroller_test.rb
364
- - test/frameworks/rails/actionview5_test.rb
365
- - test/frameworks/rails/actionview3_test.rb
366
- - test/apps/sinatra.rb
367
- - test/apps/roda.rb
368
- - test/apps/cuba.rb
369
- - test/apps/grpc_server.rb
370
- - test/servers/rackapp_6511.rb
371
- - test/servers/sidekiq/worker.rb
372
- - test/servers/grpc_50051.rb
373
- - test/servers/rails_3205.rb
374
- - test/servers/helpers/sidekiq_worker_initializer.rb
375
386
  - test/instana_test.rb
@@ -1,71 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- group :development, :test do
4
- gem 'rake'
5
- gem 'minitest', '5.9.1'
6
- gem 'minitest-reporters'
7
- gem 'minitest-debugger', :require => false
8
- gem 'rack-test'
9
- gem 'webmock'
10
- gem 'puma'
11
- # public_suffix dropped support for Ruby 2.1 and earlier.
12
- gem 'public_suffix', '< 3.0'
13
- end
14
-
15
- group :development do
16
- gem 'ruby-debug', :platforms => [:mri_18, :jruby]
17
- gem 'debugger', :platform => :mri_19
18
-
19
- if RUBY_VERSION > '1.8.7'
20
- gem 'pry'
21
-
22
- if RUBY_VERSION < '2.2'
23
- gem 'byebug', '< 9.1.0'
24
- gem 'pry-byebug'
25
- else
26
- gem 'pry-byebug'
27
- end
28
- else
29
- gem 'pry', '0.9.12.4'
30
- end
31
- end
32
-
33
- # Frameworks
34
- gem "sinatra", '1.4.7'
35
- gem "cuba"
36
- gem "roda"
37
-
38
- # gRPC
39
- gem 'grpc'
40
-
41
- # HTTP Clients
42
- gem 'rest-client'
43
-
44
- # Webservers
45
- gem "puma"
46
-
47
- # HTTP Clients
48
- gem 'excon'
49
-
50
- # Memcache
51
- gem 'dalli'
52
- gem 'redis'
53
-
54
- # Background Job queuing and processing
55
- if RUBY_VERSION < '2.2'
56
- gem 'sidekiq', '~> 4.2.10'
57
- else
58
- gem 'sidekiq', '> 5.0'
59
- end
60
-
61
- gem 'resque'
62
-
63
- # Rack v2 dropped support for Ruby 2.2 and higher.
64
- if RUBY_VERSION < '2.2'
65
- gem 'rack', '< 2.0'
66
- end
67
-
68
- # Include the Instana Ruby gem's base set of gems
69
- gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../')
70
-
71
- # vim:syntax=ruby
@@ -1,51 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- group :development, :test do
4
- gem 'rake'
5
- gem 'minitest', '5.9.1'
6
- gem 'minitest-reporters'
7
- gem 'minitest-debugger', :require => false
8
- gem 'rack-test'
9
- gem 'webmock'
10
- gem 'puma'
11
- # public_suffix dropped support for Ruby 2.1 and earlier.
12
- gem 'public_suffix', '< 3.0'
13
- end
14
-
15
- group :development do
16
- gem 'ruby-debug', :platforms => [:mri_18, :jruby]
17
- gem 'debugger', :platform => :mri_19
18
-
19
- if RUBY_VERSION > '1.8.7'
20
- gem 'pry'
21
-
22
- if RUBY_VERSION < '2.2'
23
- gem 'byebug', '< 9.1.0'
24
- gem 'pry-byebug'
25
- else
26
- gem 'pry-byebug'
27
- end
28
- else
29
- gem 'pry', '0.9.12.4'
30
- end
31
- end
32
-
33
- gem 'rails', '3.2.22.5'
34
- gem 'pg', '~> 0.21'
35
- gem 'mysql2', '~> 0.3.21'
36
-
37
- # Gems used only for assets and not required
38
- # in production environments by default.
39
- group :assets do
40
- gem 'sass-rails', '~> 3.2.3'
41
- gem 'coffee-rails', '~> 3.2.1'
42
- #gem 'therubyracer', :platforms => :ruby
43
- gem 'uglifier', '>= 1.0.3'
44
- end
45
-
46
- gem 'jquery-rails'
47
-
48
- # Include the Instana Ruby gem's base set of gems
49
- gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../')
50
-
51
- # vim:syntax=ruby
@@ -1,50 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- group :development, :test do
4
- gem 'rake'
5
- gem 'minitest', '5.9.1'
6
- gem 'minitest-reporters'
7
- gem 'minitest-debugger', :require => false
8
- gem 'rack-test'
9
- gem 'webmock'
10
- gem 'puma'
11
- # public_suffix dropped support for Ruby 2.1 and earlier.
12
- gem 'public_suffix', '< 3.0'
13
- end
14
-
15
- group :development do
16
- gem 'ruby-debug', :platforms => [:mri_18, :jruby]
17
- gem 'debugger', :platform => :mri_19
18
-
19
- if RUBY_VERSION > '1.8.7'
20
- gem 'pry'
21
-
22
- if RUBY_VERSION < '2.2'
23
- gem 'byebug', '< 9.1.0'
24
- gem 'pry-byebug'
25
- else
26
- gem 'pry-byebug'
27
- end
28
- else
29
- gem 'pry', '0.9.12.4'
30
- end
31
- end
32
-
33
- gem 'rails', '4.2.9'
34
- gem 'sqlite3'
35
- gem 'sass-rails', '~> 5.0'
36
- gem 'uglifier', '>= 1.3.0'
37
- gem 'coffee-rails', '~> 4.1.0'
38
- #gem 'therubyracer', platforms: :ruby
39
-
40
- gem 'jquery-rails'
41
- gem 'turbolinks'
42
- gem 'jbuilder', '~> 2.0'
43
- gem 'sdoc', '~> 0.4.0', group: :doc
44
- gem 'pg', '~> 0.21'
45
- gem "mysql2", '0.4.10'
46
-
47
- # Include the Instana Ruby gem's base set of gems
48
- gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../')
49
-
50
- # vim:syntax=ruby