appsignal 4.0.4 → 4.0.5

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.
@@ -1,14 +1,21 @@
1
1
  RSpec::Matchers.define :contains_log do |level, message|
2
- expected_log_line = "[#{level.upcase}] #{message}"
2
+ log_level_prefix = level.upcase
3
3
 
4
4
  match do |actual|
5
- actual.include?(expected_log_line)
5
+ case message
6
+ when Regexp
7
+ /\[#{log_level_prefix}\] #{message}/.match?(actual)
8
+ else
9
+ expected_log_line = "[#{log_level_prefix}] #{message}"
10
+ actual.include?(expected_log_line)
11
+ end
6
12
  end
7
13
 
8
14
  failure_message do |actual|
9
15
  <<~MESSAGE
10
16
  Did not contain log line:
11
- #{expected_log_line}
17
+ Log level: #{log_level_prefix}
18
+ Message: #{message}
12
19
 
13
20
  Received logs:
14
21
  #{actual}
@@ -0,0 +1,10 @@
1
+ class HashLike < Hash
2
+ def initialize(value)
3
+ super
4
+ @value = value
5
+ end
6
+
7
+ def to_h
8
+ @value
9
+ end
10
+ end
@@ -0,0 +1,43 @@
1
+ class PumaMock
2
+ module MiniSSL
3
+ class SSLError < StandardError
4
+ def self.to_s
5
+ "Puma::MiniSSL::SSLError"
6
+ end
7
+ end
8
+ end
9
+
10
+ class HttpParserError < StandardError
11
+ def self.to_s
12
+ "Puma::HttpParserError"
13
+ end
14
+ end
15
+
16
+ class HttpParserError501 < StandardError
17
+ def self.to_s
18
+ "Puma::HttpParserError501"
19
+ end
20
+ end
21
+
22
+ def self.stats
23
+ end
24
+
25
+ def self.cli_config
26
+ @cli_config ||= CliConfig.new
27
+ end
28
+
29
+ class Server
30
+ end
31
+
32
+ module Const
33
+ VERSION = "6.0.0".freeze
34
+ end
35
+
36
+ class CliConfig
37
+ attr_accessor :options
38
+
39
+ def initialize
40
+ @options = {}
41
+ end
42
+ end
43
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.4
4
+ version: 4.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-08-29 00:00:00.000000000 Z
13
+ date: 2024-09-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rack
@@ -254,6 +254,7 @@ files:
254
254
  - lib/appsignal/integrations/mongo_ruby_driver.rb
255
255
  - lib/appsignal/integrations/net_http.rb
256
256
  - lib/appsignal/integrations/object.rb
257
+ - lib/appsignal/integrations/puma.rb
257
258
  - lib/appsignal/integrations/que.rb
258
259
  - lib/appsignal/integrations/railtie.rb
259
260
  - lib/appsignal/integrations/rake.rb
@@ -373,6 +374,7 @@ files:
373
374
  - spec/lib/appsignal/integrations/mongo_ruby_driver_spec.rb
374
375
  - spec/lib/appsignal/integrations/net_http_spec.rb
375
376
  - spec/lib/appsignal/integrations/object_spec.rb
377
+ - spec/lib/appsignal/integrations/puma_spec.rb
376
378
  - spec/lib/appsignal/integrations/que_spec.rb
377
379
  - spec/lib/appsignal/integrations/railtie_spec.rb
378
380
  - spec/lib/appsignal/integrations/resque_spec.rb
@@ -450,7 +452,9 @@ files:
450
452
  - spec/support/mocks/dummy_app.rb
451
453
  - spec/support/mocks/fake_gc_profiler.rb
452
454
  - spec/support/mocks/fake_gvl_tools.rb
455
+ - spec/support/mocks/hash_like.rb
453
456
  - spec/support/mocks/mock_probe.rb
457
+ - spec/support/mocks/puma_mock.rb
454
458
  - spec/support/shared_examples/instrument.rb
455
459
  - spec/support/stubs/appsignal/loaders/loader_stub.rb
456
460
  - spec/support/stubs/delayed_job.rb