scout_apm 2.1.6 → 2.1.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f03097407f7dbd49d3e27cd565e9e560cde514dd
4
- data.tar.gz: 6e5b6ecc1e77af62d996c2e28dd223c5c3cedbc7
3
+ metadata.gz: f40f5bdf9854daba7e00560485c48995eca9ab99
4
+ data.tar.gz: ad7ee5e02e7c3aeeac40eff374c833ad398899f0
5
5
  SHA512:
6
- metadata.gz: 15283444582d7b965d68b30ff095e908e0d3fd84076ecae08e8e352c0eff64001811e6e5affe7736483bb195bc478498eb07c68ca1c4662028eee3b2e7f6b899
7
- data.tar.gz: ed60c8e18e26cc79b8535c4c693cac1d6fb775961a38f38cf5ce709255ff93e67d9bc950aaa7d075ec1a49d48ad1d76c52176068baac8cbdaa542b7ed5816d44
6
+ metadata.gz: 441475777c789a538940b14e442a49cddd93ff58fd701b3bff2ecc9e80e217a94460e9d782c11cd5475f6913d5dd05bdc43fdacfc5aecb75d3e044e0dcff8229
7
+ data.tar.gz: 1b52f6e495117cd132abafef45606f7c7a6e98b6d6a30dc1802a2f51139e8c6638503110c69a25a5b56d0c5a34e1ddebec254cf237254c9fcce7e8e2e14ed5a0
data/CHANGELOG.markdown CHANGED
@@ -1,9 +1,12 @@
1
1
  # master
2
2
 
3
+ # 2.1.7
4
+
5
+ * Fix allocations extension compilation on Ruby 1.8.7
6
+
3
7
  # 2.1.6
4
8
 
5
9
  * Support older versions of Grape (0.10 onward)
6
- * Fix issue with complex AR queries
7
10
  * Vendor rusage library
8
11
  * Fix double-exit that caused error messages when running under Passenger
9
12
 
@@ -1,4 +1,8 @@
1
+ #ifdef HAVE_RUBY_RUBY_H
1
2
  #include <ruby/ruby.h>
3
+ #else // Ruby <= 1.8.7
4
+ #include <ruby.h>
5
+ #endif
2
6
 
3
7
  VALUE mScoutApm;
4
8
  VALUE mInstruments;
@@ -1,3 +1,4 @@
1
1
  require 'mkmf'
2
2
 
3
+ have_header("ruby/ruby.h") # Needed to check for Ruby <= 1.8.7
3
4
  create_makefile('allocations')
@@ -1,4 +1,4 @@
1
1
  module ScoutApm
2
- VERSION = "2.1.6"
2
+ VERSION = "2.1.7"
3
3
  end
4
4
 
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: 2.1.6
4
+ version: 2.1.7
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: 2016-08-29 00:00:00.000000000 Z
12
+ date: 2016-09-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -266,29 +266,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
266
266
  version: '0'
267
267
  requirements: []
268
268
  rubyforge_project: scout_apm
269
- rubygems_version: 2.6.2
269
+ rubygems_version: 2.2.2
270
270
  signing_key:
271
271
  specification_version: 4
272
272
  summary: Ruby application performance monitoring
273
- test_files:
274
- - test/data/config_test_1.yml
275
- - test/test_helper.rb
276
- - test/unit/agent_test.rb
277
- - test/unit/background_job_integrations/sidekiq_test.rb
278
- - test/unit/config_test.rb
279
- - test/unit/context_test.rb
280
- - test/unit/environment_test.rb
281
- - test/unit/histogram_test.rb
282
- - test/unit/ignored_uris_test.rb
283
- - test/unit/instruments/active_record_instruments_test.rb
284
- - test/unit/layaway_test.rb
285
- - test/unit/metric_set_test.rb
286
- - test/unit/scored_item_set_test.rb
287
- - test/unit/serializers/payload_serializer_test.rb
288
- - test/unit/slow_job_policy_test.rb
289
- - test/unit/slow_request_policy_test.rb
290
- - test/unit/sql_sanitizer_test.rb
291
- - test/unit/store_test.rb
292
- - test/unit/utils/active_record_metric_name_test.rb
293
- - test/unit/utils/backtrace_parser_test.rb
294
- has_rdoc:
273
+ test_files: []