scout_apm 3.0.0.pre27 → 3.0.0.pre28
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/stacks/extconf.rb +1 -0
- data/lib/scout_apm/version.rb +1 -1
- metadata +4 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2d0813402ccb2bbedb7ce81d0de22cff013d477
|
4
|
+
data.tar.gz: 32a5467192d8677b641e4e195b197eca7337c6e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db361b9cc1a2c0c23a70c3165b391788d44150a34c8cc37b858d004d62660d829d89714f3dc96a7e9f519713ebdee4b06c04ab5da6375a29937617b5d860b58b
|
7
|
+
data.tar.gz: f8b2c30c07950cbaf5377c805a5e41eb06d3c6b423f9a3027712987d3ae652dbe11032cb6c911f94141b9f547c9d98c9eced4533e64a38fabed533b6f96e5fea
|
data/ext/stacks/extconf.rb
CHANGED
@@ -15,6 +15,7 @@ can_compile &&= have_func('rb_profile_frame_classpath')
|
|
15
15
|
# Explicitly link against librt
|
16
16
|
if have_macro('__linux__')
|
17
17
|
can_compile &&= have_library('rt') # for timer_create, timer_settime
|
18
|
+
can_compile &&= have_macro('__GLIBC__') # Check for glibc (we don't compile against MUSL)
|
18
19
|
end
|
19
20
|
|
20
21
|
# Pick the atomics implementation
|
data/lib/scout_apm/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scout_apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0.
|
4
|
+
version: 3.0.0.pre28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Derek Haynes
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-08-
|
12
|
+
date: 2018-08-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|
@@ -397,51 +397,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
397
397
|
version: 1.3.1
|
398
398
|
requirements: []
|
399
399
|
rubyforge_project: scout_apm
|
400
|
-
rubygems_version: 2.4.
|
400
|
+
rubygems_version: 2.4.5.5
|
401
401
|
signing_key:
|
402
402
|
specification_version: 4
|
403
403
|
summary: Ruby application performance monitoring
|
404
|
-
test_files:
|
405
|
-
- test/data/config_test_1.yml
|
406
|
-
- test/test_helper.rb
|
407
|
-
- test/unit/agent_test.rb
|
408
|
-
- test/unit/background_job_integrations/sidekiq_test.rb
|
409
|
-
- test/unit/config_test.rb
|
410
|
-
- test/unit/context_test.rb
|
411
|
-
- test/unit/db_query_metric_set_test.rb
|
412
|
-
- test/unit/db_query_metric_stats_test.rb
|
413
|
-
- test/unit/environment_test.rb
|
414
|
-
- test/unit/extensions/periodic_callbacks_test.rb
|
415
|
-
- test/unit/extensions/transaction_callbacks_test.rb
|
416
|
-
- test/unit/fake_store_test.rb
|
417
|
-
- test/unit/git_revision_test.rb
|
418
|
-
- test/unit/histogram_test.rb
|
419
|
-
- test/unit/ignored_uris_test.rb
|
420
|
-
- test/unit/instruments/active_record_instruments_test.rb
|
421
|
-
- test/unit/instruments/net_http_test.rb
|
422
|
-
- test/unit/instruments/percentile_sampler_test.rb
|
423
|
-
- test/unit/layaway_test.rb
|
424
|
-
- test/unit/layer_children_set_test.rb
|
425
|
-
- test/unit/layer_converters/depth_first_walker_test.rb
|
426
|
-
- test/unit/layer_converters/metric_converter_test.rb
|
427
|
-
- test/unit/layer_converters/stubs.rb
|
428
|
-
- test/unit/limited_layer_test.rb
|
429
|
-
- test/unit/logger_test.rb
|
430
|
-
- test/unit/metric_set_test.rb
|
431
|
-
- test/unit/remote/test_message.rb
|
432
|
-
- test/unit/remote/test_router.rb
|
433
|
-
- test/unit/remote/test_server.rb
|
434
|
-
- test/unit/scored_item_set_test.rb
|
435
|
-
- test/unit/serializers/payload_serializer_test.rb
|
436
|
-
- test/unit/slow_job_policy_test.rb
|
437
|
-
- test/unit/slow_request_policy_test.rb
|
438
|
-
- test/unit/sql_sanitizer_test.rb
|
439
|
-
- test/unit/store_test.rb
|
440
|
-
- test/unit/tracer_test.rb
|
441
|
-
- test/unit/tracked_request_test.rb
|
442
|
-
- test/unit/transaction_test.rb
|
443
|
-
- test/unit/transaction_time_consumed_test.rb
|
444
|
-
- test/unit/utils/active_record_metric_name_test.rb
|
445
|
-
- test/unit/utils/backtrace_parser_test.rb
|
446
|
-
- test/unit/utils/numbers_test.rb
|
447
|
-
- test/unit/utils/scm.rb
|
404
|
+
test_files: []
|