appsignal 2.11.1 → 3.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +6 -1
  3. data/.semaphore/semaphore.yml +197 -23
  4. data/CHANGELOG.md +25 -0
  5. data/README.md +9 -0
  6. data/Rakefile +9 -6
  7. data/build_matrix.yml +13 -4
  8. data/ext/agent.yml +17 -17
  9. data/ext/base.rb +12 -9
  10. data/gemfiles/no_dependencies.gemfile +7 -0
  11. data/gemfiles/resque-2.gemfile +0 -1
  12. data/gemfiles/webmachine.gemfile +1 -0
  13. data/lib/appsignal.rb +1 -27
  14. data/lib/appsignal/auth_check.rb +2 -8
  15. data/lib/appsignal/cli.rb +1 -23
  16. data/lib/appsignal/cli/diagnose/utils.rb +8 -11
  17. data/lib/appsignal/cli/install.rb +5 -8
  18. data/lib/appsignal/config.rb +0 -24
  19. data/lib/appsignal/event_formatter.rb +0 -25
  20. data/lib/appsignal/helpers/instrumentation.rb +32 -0
  21. data/lib/appsignal/hooks.rb +0 -23
  22. data/lib/appsignal/hooks/action_cable.rb +3 -34
  23. data/lib/appsignal/hooks/active_support_notifications.rb +7 -86
  24. data/lib/appsignal/hooks/celluloid.rb +5 -9
  25. data/lib/appsignal/hooks/net_http.rb +2 -12
  26. data/lib/appsignal/hooks/puma.rb +3 -5
  27. data/lib/appsignal/hooks/que.rb +1 -1
  28. data/lib/appsignal/hooks/rake.rb +2 -24
  29. data/lib/appsignal/hooks/redis.rb +2 -13
  30. data/lib/appsignal/hooks/resque.rb +2 -43
  31. data/lib/appsignal/hooks/shoryuken.rb +43 -4
  32. data/lib/appsignal/hooks/unicorn.rb +3 -24
  33. data/lib/appsignal/hooks/webmachine.rb +1 -7
  34. data/lib/appsignal/integrations/action_cable.rb +34 -0
  35. data/lib/appsignal/integrations/active_support_notifications.rb +77 -0
  36. data/lib/appsignal/integrations/net_http.rb +16 -0
  37. data/lib/appsignal/integrations/object.rb +44 -17
  38. data/lib/appsignal/integrations/padrino.rb +5 -7
  39. data/lib/appsignal/integrations/que.rb +26 -33
  40. data/lib/appsignal/integrations/railtie.rb +1 -4
  41. data/lib/appsignal/integrations/rake.rb +26 -2
  42. data/lib/appsignal/integrations/redis.rb +17 -0
  43. data/lib/appsignal/integrations/resque.rb +39 -10
  44. data/lib/appsignal/integrations/unicorn.rb +28 -0
  45. data/lib/appsignal/integrations/webmachine.rb +22 -24
  46. data/lib/appsignal/minutely.rb +0 -12
  47. data/lib/appsignal/system.rb +4 -0
  48. data/lib/appsignal/transaction.rb +30 -2
  49. data/lib/appsignal/version.rb +1 -1
  50. data/spec/lib/appsignal/auth_check_spec.rb +1 -24
  51. data/spec/lib/appsignal/cli_spec.rb +1 -1
  52. data/spec/lib/appsignal/config_spec.rb +0 -66
  53. data/spec/lib/appsignal/event_formatter_spec.rb +0 -37
  54. data/spec/lib/appsignal/hooks/celluloid_spec.rb +6 -1
  55. data/spec/lib/appsignal/hooks/rake_spec.rb +1 -2
  56. data/spec/lib/appsignal/hooks/redis_spec.rb +50 -15
  57. data/spec/lib/appsignal/hooks/resque_spec.rb +10 -2
  58. data/spec/lib/appsignal/hooks/shoryuken_spec.rb +151 -104
  59. data/spec/lib/appsignal/hooks/sidekiq_spec.rb +4 -2
  60. data/spec/lib/appsignal/hooks/unicorn_spec.rb +14 -3
  61. data/spec/lib/appsignal/hooks/webmachine_spec.rb +2 -13
  62. data/spec/lib/appsignal/hooks_spec.rb +0 -57
  63. data/spec/lib/appsignal/integrations/object_spec.rb +25 -10
  64. data/spec/lib/appsignal/integrations/padrino_spec.rb +2 -3
  65. data/spec/lib/appsignal/integrations/railtie_spec.rb +0 -45
  66. data/spec/lib/appsignal/integrations/webmachine_spec.rb +26 -8
  67. data/spec/lib/appsignal/minutely_spec.rb +0 -19
  68. data/spec/lib/appsignal/transaction_spec.rb +56 -14
  69. data/spec/lib/appsignal/transmitter_spec.rb +1 -1
  70. data/spec/lib/appsignal_spec.rb +30 -69
  71. data/spec/spec_helper.rb +1 -15
  72. metadata +13 -22
  73. data/lib/appsignal/cli/notify_of_deploy.rb +0 -131
  74. data/lib/appsignal/integrations/resque_active_job.rb +0 -19
  75. data/lib/appsignal/js_exception_transaction.rb +0 -56
  76. data/lib/appsignal/rack/js_exception_catcher.rb +0 -80
  77. data/spec/lib/appsignal/cli/notify_of_deploy_spec.rb +0 -180
  78. data/spec/lib/appsignal/integrations/resque_active_job_spec.rb +0 -28
  79. data/spec/lib/appsignal/integrations/resque_spec.rb +0 -28
  80. data/spec/lib/appsignal/js_exception_transaction_spec.rb +0 -128
  81. data/spec/lib/appsignal/rack/js_exception_catcher_spec.rb +0 -170
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e4d082500efd101198339616a3f7fc05170684bb6020864bda78c34121a96ff
4
- data.tar.gz: 467372cf2a4f5f0be4353a6cba168b8fad3c25b242902b4b79c949f4b9692fbc
3
+ metadata.gz: 936166fae7d72db514778fce44512e528f36cbfa0a94f7c3fe8ea383754c47c2
4
+ data.tar.gz: cbfeb15ecec3d152c34a1759273de14cabe086a11782d441bd5aae6114fc0ac2
5
5
  SHA512:
6
- metadata.gz: 52206e43698413eea911c3ef8c72aba46d50718abbe5f435d66d2bc235b97cbe6899e35c639bc205c0f228a8dbd52fed48493748123be3107eace29873ddd615
7
- data.tar.gz: a8eaa5c959545cc26bdc63e0d55619c906bc6496514a229febcebb606a40c552e8a981163ff532610133a17533ddca6bff3e701baa8e935a9e28df874097faca
6
+ metadata.gz: 4b125b9378be2ac1445e94f924dc5fbb70e4f5eb5b886673c6748482988eaa2cb29bef61fe87fd05d7e75954139dd57abf2a5c5605e479e5a6c68893b3739ea8
7
+ data.tar.gz: 28d5212905fefffdddc077619a8f57d1f92b23bbb4237cb8c28847ce5215e9f2b12790d20c25115d9735f19d1fb4d592699601c476f13398882a9c65a3c187e1
@@ -1,7 +1,7 @@
1
1
  inherit_from: .rubocop_todo.yml
2
2
 
3
3
  AllCops:
4
- TargetRubyVersion: 1.9
4
+ TargetRubyVersion: 2.0
5
5
  Include:
6
6
  - "**/*.cap"
7
7
  - "Gemfile"
@@ -13,6 +13,8 @@ AllCops:
13
13
  - "gemfiles/vendor/**/*"
14
14
  - "vendor/**/*"
15
15
  - "benchmark.rake"
16
+ - "lib/appsignal/integrations/object_ruby_modern.rb"
17
+ - "spec/lib/appsignal/integrations/object_spec.rb"
16
18
  DisplayCopNames: true
17
19
  UseCache: true
18
20
  CacheRootDirectory: ./tmp
@@ -78,5 +80,8 @@ Metrics/BlockLength:
78
80
  Style/FrozenStringLiteralComment:
79
81
  Enabled: true
80
82
 
83
+ Style/SymbolArray:
84
+ EnforcedStyle: brackets
85
+
81
86
  # Metrics/LineLength:
82
87
  # Max: 80
@@ -31,6 +31,7 @@ global_job_config:
31
31
  prologue:
32
32
  commands:
33
33
  - checkout
34
+ - rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
34
35
  - sem-version ruby $RUBY_VERSION
35
36
  - "./support/check_versions"
36
37
  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
@@ -78,29 +79,6 @@ blocks:
78
79
  value: gemfiles/no_dependencies.gemfile
79
80
  commands:
80
81
  - "./support/bundler_wrapper exec rubocop"
81
- - name: Ruby 1.9.3-p551
82
- dependencies:
83
- - Validation
84
- task:
85
- prologue:
86
- commands:
87
- - "./support/bundler_wrapper exec rake extension:install"
88
- jobs:
89
- - name: Ruby 1.9.3-p551 for no_dependencies
90
- env_vars:
91
- - name: RUBY_VERSION
92
- value: 1.9.3-p551
93
- - name: GEMSET
94
- value: no_dependencies
95
- - name: BUNDLE_GEMFILE
96
- value: gemfiles/no_dependencies.gemfile
97
- - name: _RUBYGEMS_VERSION
98
- value: 2.7.8
99
- - name: _BUNDLER_VERSION
100
- value: 1.17.3
101
- commands:
102
- - "./support/bundler_wrapper exec rake test"
103
- - "./support/bundler_wrapper exec rake test:failure"
104
82
  - name: Ruby 2.0.0-p648
105
83
  dependencies:
106
84
  - Validation
@@ -992,6 +970,202 @@ blocks:
992
970
  commands:
993
971
  - "./support/bundler_wrapper exec rake test"
994
972
  - "./support/bundler_wrapper exec rake test:failure"
973
+ - name: Ruby 3.0.0
974
+ dependencies:
975
+ - Validation
976
+ task:
977
+ prologue:
978
+ commands:
979
+ - "./support/bundler_wrapper exec rake extension:install"
980
+ jobs:
981
+ - name: Ruby 3.0.0 for no_dependencies
982
+ env_vars:
983
+ - name: RUBY_VERSION
984
+ value: 3.0.0
985
+ - name: GEMSET
986
+ value: no_dependencies
987
+ - name: BUNDLE_GEMFILE
988
+ value: gemfiles/no_dependencies.gemfile
989
+ - name: _RUBYGEMS_VERSION
990
+ value: latest
991
+ - name: _BUNDLER_VERSION
992
+ value: latest
993
+ commands:
994
+ - "./support/bundler_wrapper exec rake test"
995
+ - "./support/bundler_wrapper exec rake test:failure"
996
+ - name: Ruby 3.0.0 - Gems
997
+ dependencies:
998
+ - Ruby 3.0.0
999
+ task:
1000
+ prologue:
1001
+ commands:
1002
+ - "./support/bundler_wrapper exec rake extension:install"
1003
+ jobs:
1004
+ - name: Ruby 3.0.0 for capistrano2
1005
+ env_vars:
1006
+ - name: RUBY_VERSION
1007
+ value: 3.0.0
1008
+ - name: GEMSET
1009
+ value: capistrano2
1010
+ - name: BUNDLE_GEMFILE
1011
+ value: gemfiles/capistrano2.gemfile
1012
+ - name: _RUBYGEMS_VERSION
1013
+ value: latest
1014
+ - name: _BUNDLER_VERSION
1015
+ value: latest
1016
+ commands:
1017
+ - "./support/bundler_wrapper exec rake test"
1018
+ - "./support/bundler_wrapper exec rake test:failure"
1019
+ - name: Ruby 3.0.0 for capistrano3
1020
+ env_vars:
1021
+ - name: RUBY_VERSION
1022
+ value: 3.0.0
1023
+ - name: GEMSET
1024
+ value: capistrano3
1025
+ - name: BUNDLE_GEMFILE
1026
+ value: gemfiles/capistrano3.gemfile
1027
+ - name: _RUBYGEMS_VERSION
1028
+ value: latest
1029
+ - name: _BUNDLER_VERSION
1030
+ value: latest
1031
+ commands:
1032
+ - "./support/bundler_wrapper exec rake test"
1033
+ - "./support/bundler_wrapper exec rake test:failure"
1034
+ - name: Ruby 3.0.0 for grape
1035
+ env_vars:
1036
+ - name: RUBY_VERSION
1037
+ value: 3.0.0
1038
+ - name: GEMSET
1039
+ value: grape
1040
+ - name: BUNDLE_GEMFILE
1041
+ value: gemfiles/grape.gemfile
1042
+ - name: _RUBYGEMS_VERSION
1043
+ value: latest
1044
+ - name: _BUNDLER_VERSION
1045
+ value: latest
1046
+ commands:
1047
+ - "./support/bundler_wrapper exec rake test"
1048
+ - "./support/bundler_wrapper exec rake test:failure"
1049
+ - name: Ruby 3.0.0 for padrino
1050
+ env_vars:
1051
+ - name: RUBY_VERSION
1052
+ value: 3.0.0
1053
+ - name: GEMSET
1054
+ value: padrino
1055
+ - name: BUNDLE_GEMFILE
1056
+ value: gemfiles/padrino.gemfile
1057
+ - name: _RUBYGEMS_VERSION
1058
+ value: latest
1059
+ - name: _BUNDLER_VERSION
1060
+ value: latest
1061
+ commands:
1062
+ - "./support/bundler_wrapper exec rake test"
1063
+ - "./support/bundler_wrapper exec rake test:failure"
1064
+ - name: Ruby 3.0.0 for que
1065
+ env_vars:
1066
+ - name: RUBY_VERSION
1067
+ value: 3.0.0
1068
+ - name: GEMSET
1069
+ value: que
1070
+ - name: BUNDLE_GEMFILE
1071
+ value: gemfiles/que.gemfile
1072
+ - name: _RUBYGEMS_VERSION
1073
+ value: latest
1074
+ - name: _BUNDLER_VERSION
1075
+ value: latest
1076
+ commands:
1077
+ - "./support/bundler_wrapper exec rake test"
1078
+ - "./support/bundler_wrapper exec rake test:failure"
1079
+ - name: Ruby 3.0.0 for que_beta
1080
+ env_vars:
1081
+ - name: RUBY_VERSION
1082
+ value: 3.0.0
1083
+ - name: GEMSET
1084
+ value: que_beta
1085
+ - name: BUNDLE_GEMFILE
1086
+ value: gemfiles/que_beta.gemfile
1087
+ - name: _RUBYGEMS_VERSION
1088
+ value: latest
1089
+ - name: _BUNDLER_VERSION
1090
+ value: latest
1091
+ commands:
1092
+ - "./support/bundler_wrapper exec rake test"
1093
+ - "./support/bundler_wrapper exec rake test:failure"
1094
+ - name: Ruby 3.0.0 for rails-6.0
1095
+ env_vars:
1096
+ - name: RUBY_VERSION
1097
+ value: 3.0.0
1098
+ - name: GEMSET
1099
+ value: rails-6.0
1100
+ - name: BUNDLE_GEMFILE
1101
+ value: gemfiles/rails-6.0.gemfile
1102
+ - name: _RUBYGEMS_VERSION
1103
+ value: latest
1104
+ - name: _BUNDLER_VERSION
1105
+ value: latest
1106
+ commands:
1107
+ - "./support/bundler_wrapper exec rake test"
1108
+ - "./support/bundler_wrapper exec rake test:failure"
1109
+ - name: Ruby 3.0.0 for resque-2
1110
+ env_vars:
1111
+ - name: RUBY_VERSION
1112
+ value: 3.0.0
1113
+ - name: GEMSET
1114
+ value: resque-2
1115
+ - name: BUNDLE_GEMFILE
1116
+ value: gemfiles/resque-2.gemfile
1117
+ - name: _RUBYGEMS_VERSION
1118
+ value: latest
1119
+ - name: _BUNDLER_VERSION
1120
+ value: latest
1121
+ commands:
1122
+ - "./support/bundler_wrapper exec rake test"
1123
+ - "./support/bundler_wrapper exec rake test:failure"
1124
+ - name: Ruby 3.0.0 for sequel
1125
+ env_vars:
1126
+ - name: RUBY_VERSION
1127
+ value: 3.0.0
1128
+ - name: GEMSET
1129
+ value: sequel
1130
+ - name: BUNDLE_GEMFILE
1131
+ value: gemfiles/sequel.gemfile
1132
+ - name: _RUBYGEMS_VERSION
1133
+ value: latest
1134
+ - name: _BUNDLER_VERSION
1135
+ value: latest
1136
+ commands:
1137
+ - "./support/bundler_wrapper exec rake test"
1138
+ - "./support/bundler_wrapper exec rake test:failure"
1139
+ - name: Ruby 3.0.0 for sinatra
1140
+ env_vars:
1141
+ - name: RUBY_VERSION
1142
+ value: 3.0.0
1143
+ - name: GEMSET
1144
+ value: sinatra
1145
+ - name: BUNDLE_GEMFILE
1146
+ value: gemfiles/sinatra.gemfile
1147
+ - name: _RUBYGEMS_VERSION
1148
+ value: latest
1149
+ - name: _BUNDLER_VERSION
1150
+ value: latest
1151
+ commands:
1152
+ - "./support/bundler_wrapper exec rake test"
1153
+ - "./support/bundler_wrapper exec rake test:failure"
1154
+ - name: Ruby 3.0.0 for webmachine
1155
+ env_vars:
1156
+ - name: RUBY_VERSION
1157
+ value: 3.0.0
1158
+ - name: GEMSET
1159
+ value: webmachine
1160
+ - name: BUNDLE_GEMFILE
1161
+ value: gemfiles/webmachine.gemfile
1162
+ - name: _RUBYGEMS_VERSION
1163
+ value: latest
1164
+ - name: _BUNDLER_VERSION
1165
+ value: latest
1166
+ commands:
1167
+ - "./support/bundler_wrapper exec rake test"
1168
+ - "./support/bundler_wrapper exec rake test:failure"
995
1169
  - name: Ruby jruby-9.1.17.0
996
1170
  dependencies:
997
1171
  - Validation
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ # 3.0.0
4
+ - Drop Ruby 1.9 support. PR #683, #682, #688, #694
5
+ - Use Module.prepend for all gem integrations. Fixes #603 in combination with
6
+ other gems that provide instrumentation for gems. PR #683
7
+ - Remove deprecated integrations, classes, methods and arguments. PR #685
8
+
9
+ # 2.11.5
10
+ - Add more detailed logging to finish_event calls when the event is unknown, so
11
+ we know what event is being tried to finish. Commit
12
+ c888a04d1b9ac947652b29c111c650fb5a5cf71c
13
+
14
+ # 2.11.4
15
+ - Support Ruby 3.0 for Object method instrumentation with keyword arguments
16
+ (https://docs.appsignal.com/ruby/instrumentation/method-instrumentation.html)
17
+ PR #693
18
+
19
+ # 2.11.3
20
+ - Support Shoryuken batch workers. PR #687
21
+
22
+ # 2.11.2
23
+ - Support Ruby 3.0. PR #681
24
+ - Support breadcrumbs. PR #666
25
+ - Log Ruby errors on extension download. PR #679
26
+ - Fix Ruby 1.9 build. PR #680
27
+
3
28
  # 2.11.1
4
29
  - Support AS notifications instrumenters that use `start` and `finish`.
5
30
  - Updated agent with better logging and an IO stats fix.
data/README.md CHANGED
@@ -157,6 +157,15 @@ as most Linux distributions, FreeBSD, macOS, excluding Microsoft Windows.
157
157
  For more detailed information please visit our [Supported
158
158
  systems][supported-systems] page.
159
159
 
160
+ ## Releases
161
+
162
+ Following the process below to release a new version of the Ruby gem.
163
+
164
+ 1. Run: `rake publish`
165
+ 1. Update the Ruby gem version number when prompted.
166
+ 1. Update the `CHANGELOG` file with the changes since the last release.
167
+ 1. Confirm with your two-factor authentication token for Rubygems.org, _twice_.
168
+
160
169
  ## Development
161
170
 
162
171
  ### Installation
data/Rakefile CHANGED
@@ -275,7 +275,8 @@ namespace :publish do
275
275
  Dir.chdir("#{File.dirname(__FILE__)}/pkg") do
276
276
  Dir["*.gem"].each do |gem_package|
277
277
  puts "## Publishing gem package: #{gem_package}"
278
- system "gem push #{gem_package}"
278
+ result = system "gem push #{gem_package}"
279
+ raise "Failed to Push gem" unless result
279
280
  end
280
281
  end
281
282
  end
@@ -374,19 +375,21 @@ end
374
375
  begin
375
376
  require "rspec/core/rake_task"
376
377
  is_jruby = defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
377
- unless is_jruby
378
- jruby_opts = "--exclude-pattern=spec/lib/appsignal/extension/jruby_spec.rb"
379
- end
378
+ excludes = []
379
+ excludes << "spec/lib/appsignal/extension/jruby_spec.rb" unless is_jruby
380
+ is_ruby19 = RUBY_VERSION < "2.0"
381
+ excludes << "spec/lib/appsignal/integrations/object_spec.rb" if is_ruby19
382
+ exclude_pattern = "--exclude-pattern=#{excludes.join(",")}" if excludes.any?
380
383
 
381
384
  desc "Run the AppSignal gem test suite."
382
385
  RSpec::Core::RakeTask.new :test do |t|
383
- t.rspec_opts = jruby_opts
386
+ t.rspec_opts = exclude_pattern
384
387
  end
385
388
 
386
389
  namespace :test do
387
390
  desc "Run the Appsignal gem test in an extension failure scenario"
388
391
  RSpec::Core::RakeTask.new :failure do |t|
389
- t.rspec_opts = "#{jruby_opts} --tag extension_installation_failure"
392
+ t.rspec_opts = "#{exclude_pattern} --tag extension_installation_failure"
390
393
  end
391
394
  end
392
395
  rescue LoadError # rubocop:disable Lint/HandleExceptions
@@ -32,6 +32,7 @@ semaphore: # Default `.semaphore/semaphore.yml` contents
32
32
  prologue:
33
33
  commands:
34
34
  - checkout
35
+ - rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
35
36
  - sem-version ruby $RUBY_VERSION
36
37
  - ./support/check_versions
37
38
  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
@@ -93,10 +94,6 @@ matrix:
93
94
  - "rails-6.0"
94
95
 
95
96
  ruby:
96
- - ruby: "1.9.3-p551"
97
- rubygems: "2.7.8"
98
- bundler: "1.17.3"
99
- gems: "none"
100
97
  - ruby: "2.0.0-p648"
101
98
  rubygems: "2.7.8"
102
99
  bundler: "1.17.3"
@@ -116,6 +113,7 @@ matrix:
116
113
  gems: "minimal"
117
114
  - ruby: "2.6.5"
118
115
  - ruby: "2.7.1"
116
+ - ruby: "3.0.0"
119
117
  - ruby: "jruby-9.1.17.0"
120
118
  gems: "minimal"
121
119
  gems:
@@ -138,24 +136,29 @@ matrix:
138
136
  ruby:
139
137
  - "2.6.5"
140
138
  - "2.7.1"
139
+ - "3.0.0"
141
140
  - gem: "rails-4.2"
142
141
  bundler: "1.17.3"
143
142
  exclude:
144
143
  ruby:
145
144
  - "2.6.5"
146
145
  - "2.7.1"
146
+ - "3.0.0"
147
147
  - gem: "rails-5.0"
148
148
  exclude:
149
149
  ruby:
150
150
  - "2.0.0-p648"
151
+ - "3.0.0"
151
152
  - gem: "rails-5.1"
152
153
  exclude:
153
154
  ruby:
154
155
  - "2.0.0-p648"
156
+ - "3.0.0"
155
157
  - gem: "rails-5.2"
156
158
  exclude:
157
159
  ruby:
158
160
  - "2.0.0-p648"
161
+ - "3.0.0"
159
162
  - gem: "rails-6.0"
160
163
  exclude:
161
164
  ruby:
@@ -167,11 +170,17 @@ matrix:
167
170
  - "jruby-9.1.17.0"
168
171
  - gem: "resque-1"
169
172
  bundler: "1.17.3"
173
+ exclude:
174
+ ruby:
175
+ - "3.0.0"
170
176
  - gem: "resque-2"
171
177
  exclude:
172
178
  ruby:
173
179
  - "2.0.0-p648"
174
180
  - gem: "sequel"
175
181
  - gem: "sequel-435"
182
+ exclude:
183
+ ruby:
184
+ - "3.0.0"
176
185
  - gem: "sinatra"
177
186
  - gem: "webmachine"
@@ -1,62 +1,62 @@
1
1
  ---
2
- version: 361340a
2
+ version: d98461b
3
3
  mirrors:
4
4
  - https://appsignal-agent-releases.global.ssl.fastly.net
5
5
  - https://d135dj0rjqvssy.cloudfront.net
6
6
  triples:
7
7
  x86_64-darwin:
8
8
  static:
9
- checksum: 4e08cb0cef0ea7e30f8d507380b923f6cfa14adaea12c81804e118acd6395b57
9
+ checksum: 178ab2329c7b29cf45140e4707e75c20379fa0c7dfd7f39266a7a95aea510780
10
10
  filename: appsignal-x86_64-darwin-all-static.tar.gz
11
11
  dynamic:
12
- checksum: 1a9c3e26bd453fe60a2f511d536e64bdeddb1f939664bda90d6a41eaeedf5250
12
+ checksum: '0923985cc78c5cf278f45d530679954b94b1a91c87453369116fc05525e29864'
13
13
  filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
14
14
  universal-darwin:
15
15
  static:
16
- checksum: 4e08cb0cef0ea7e30f8d507380b923f6cfa14adaea12c81804e118acd6395b57
16
+ checksum: 178ab2329c7b29cf45140e4707e75c20379fa0c7dfd7f39266a7a95aea510780
17
17
  filename: appsignal-x86_64-darwin-all-static.tar.gz
18
18
  dynamic:
19
- checksum: 1a9c3e26bd453fe60a2f511d536e64bdeddb1f939664bda90d6a41eaeedf5250
19
+ checksum: '0923985cc78c5cf278f45d530679954b94b1a91c87453369116fc05525e29864'
20
20
  filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
21
21
  i686-linux:
22
22
  static:
23
- checksum: 01c027b3e472cb39d844284fcc8ba532628c00731b912e0e9718646ed124ae6e
23
+ checksum: cb772a8a178edb25d666b650efda80149c98e80e4264435d6176f8a6104f959a
24
24
  filename: appsignal-i686-linux-all-static.tar.gz
25
25
  dynamic:
26
- checksum: 30696eac3ae5646bcb21ff86a1824dd4511a41dd323514e4a97a41b5ff09e2f8
26
+ checksum: c9ac51f4d1b3cc13773d8fa8ea5cfad6af7909144d85186cef9324ec0531bdac
27
27
  filename: appsignal-i686-linux-all-dynamic.tar.gz
28
28
  x86-linux:
29
29
  static:
30
- checksum: 01c027b3e472cb39d844284fcc8ba532628c00731b912e0e9718646ed124ae6e
30
+ checksum: cb772a8a178edb25d666b650efda80149c98e80e4264435d6176f8a6104f959a
31
31
  filename: appsignal-i686-linux-all-static.tar.gz
32
32
  dynamic:
33
- checksum: 30696eac3ae5646bcb21ff86a1824dd4511a41dd323514e4a97a41b5ff09e2f8
33
+ checksum: c9ac51f4d1b3cc13773d8fa8ea5cfad6af7909144d85186cef9324ec0531bdac
34
34
  filename: appsignal-i686-linux-all-dynamic.tar.gz
35
35
  x86_64-linux:
36
36
  static:
37
- checksum: fe2038d6fa468fc23900fea6d8179d2b37d41d54f4ff33c573116183ac1cb491
37
+ checksum: d6c280e992d74f97d59da9827ec5707ca4f6776b0568cde1c083c1113e4b7104
38
38
  filename: appsignal-x86_64-linux-all-static.tar.gz
39
39
  dynamic:
40
- checksum: bcbf9546b078fb8bbaae5e7df4ed84831346c814bc865a47d32a3a095a84acbb
40
+ checksum: ef1a3f5d4b2ed61ea2ae4d5cb1a261a0e685fb9d3e7ea9efe455498aad386e59
41
41
  filename: appsignal-x86_64-linux-all-dynamic.tar.gz
42
42
  x86_64-linux-musl:
43
43
  static:
44
- checksum: b2ee5579a62b76a1d2f41f4e06749c4c549f9aaa40764862eff49c5a6a8841f1
44
+ checksum: 9cf8ad34392662746a45cfce18113ad19cc29954789e2058f30e527163f2e98a
45
45
  filename: appsignal-x86_64-linux-musl-all-static.tar.gz
46
46
  dynamic:
47
- checksum: 53cd2464853e61c2d8f911ec32ff98cb48f824293ffd575da6743bc34625a7eb
47
+ checksum: 01bd76983227648d9bc41d035e1552fcf18d62f0d6818bf7bb7fc2e7c166513d
48
48
  filename: appsignal-x86_64-linux-musl-all-dynamic.tar.gz
49
49
  x86_64-freebsd:
50
50
  static:
51
- checksum: f228dd2f2cf951c9eb9f04487be50fdfdc3d29a956e639787a4022bd73f02e53
51
+ checksum: 403a597cbdbdba08460c5c9e93347ed9ad1d24333204e6d72db342deb266a296
52
52
  filename: appsignal-x86_64-freebsd-all-static.tar.gz
53
53
  dynamic:
54
- checksum: 030b322b2cb15607260cbb0424c03f6e41646dca7aacc43a30279ad63a336541
54
+ checksum: a1faae80ae09a6588c4cd35cb91dfa4b2176fc3cb17fbf79db80194c21e75bf9
55
55
  filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
56
56
  amd64-freebsd:
57
57
  static:
58
- checksum: f228dd2f2cf951c9eb9f04487be50fdfdc3d29a956e639787a4022bd73f02e53
58
+ checksum: 403a597cbdbdba08460c5c9e93347ed9ad1d24333204e6d72db342deb266a296
59
59
  filename: appsignal-x86_64-freebsd-all-static.tar.gz
60
60
  dynamic:
61
- checksum: 030b322b2cb15607260cbb0424c03f6e41646dca7aacc43a30279ad63a336541
61
+ checksum: a1faae80ae09a6588c4cd35cb91dfa4b2176fc3cb17fbf79db80194c21e75bf9
62
62
  filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz