scan-suppressing-logger 0.1.0.pre.alpha2 → 0.1.0

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
  SHA256:
3
- metadata.gz: 6e0de18ab2fe0513368225dfbc74a50838bf191ff91b7f0760a6ad832eaf4c8b
4
- data.tar.gz: d3ea9bb86de5c08b290505bcd20ac8d38126ea886ea2c01e62439fe25c0bc6d4
3
+ metadata.gz: 175b009266b6407cf1bf323fb1578be7876d22eea0693860fea28dbbad9624b0
4
+ data.tar.gz: 2f0f07c85648a7524e07161fe4a60b9ed143ba4b31952cc8a88102501c2e0172
5
5
  SHA512:
6
- metadata.gz: 4a442c36fb0fbcd938fb02d318317142701fac52feb68facd8de91ad4b3bf604ddfa7c3405ff5f64c16f1d7c099009cd3ca748f94234027a45fc47c651cb8853
7
- data.tar.gz: b542fac5e8894221b8b192719c70586b6395aa7e9cb2767bb65865b7ad2e6b45388593210a5e4a2a40c217f55b8811e09fa8202ec852e105540a966b931b6997
6
+ metadata.gz: f10eea8a1a88c1329ba25c0a3db184792efd77e1b281ebb7490d07269d61d6e6494ad98c664b200189d5b1263e2cad53ad3242444821aacd2cc8341b806d32b0
7
+ data.tar.gz: c05b45157f7126441afbe99a6f5de4d780910534b8335053b051dd73889528e558615fcb4da8549daef84ce8889bfc6a1d832d2e8265168d614eb170be434851
@@ -0,0 +1,24 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby-version: [ '3.1', '3.2', '3.3' ]
11
+ gemfile: [ 'gemfiles/rails_6.1.gemfile', 'gemfiles/rails_7.0.gemfile', 'gemfiles/rails_7.1.gemfile' ]
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Set up Ruby
15
+ uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: ${{ matrix.ruby-version }}
18
+ - name: Install dependencies
19
+ run: |
20
+ gem install bundler
21
+ bundle install --gemfile ${{ matrix.gemfile }}
22
+ - name: Run tests
23
+ run: |
24
+ BUNDLE_GEMFILE=${{ matrix.gemfile }} bundle exec rspec
data/.gitignore CHANGED
@@ -9,3 +9,8 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ # Created when initializing Rails app
14
+ /spec/log
15
+ /spec/tmp
16
+ /log
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.6
data/Appraisals ADDED
@@ -0,0 +1,12 @@
1
+ # Appraisals
2
+ appraise 'rails-6.1' do
3
+ gem 'rails', '~> 6.1.0'
4
+ end
5
+
6
+ appraise 'rails-7.0' do
7
+ gem 'rails', '~> 7.0.0'
8
+ end
9
+
10
+ appraise 'rails-7.1' do
11
+ gem 'rails', '~> 7.1.0'
12
+ end
data/Gemfile.lock CHANGED
@@ -1,142 +1,180 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- scan-suppressing-logger (0.1.0.pre.alpha2)
4
+ scan-suppressing-logger (0.1.0)
5
5
  rails (>= 4.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (5.2.3)
11
- actionpack (= 5.2.3)
10
+ actioncable (6.1.4.7)
11
+ actionpack (= 6.1.4.7)
12
+ activesupport (= 6.1.4.7)
12
13
  nio4r (~> 2.0)
13
14
  websocket-driver (>= 0.6.1)
14
- actionmailer (5.2.3)
15
- actionpack (= 5.2.3)
16
- actionview (= 5.2.3)
17
- activejob (= 5.2.3)
15
+ actionmailbox (6.1.4.7)
16
+ actionpack (= 6.1.4.7)
17
+ activejob (= 6.1.4.7)
18
+ activerecord (= 6.1.4.7)
19
+ activestorage (= 6.1.4.7)
20
+ activesupport (= 6.1.4.7)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.4.7)
23
+ actionpack (= 6.1.4.7)
24
+ actionview (= 6.1.4.7)
25
+ activejob (= 6.1.4.7)
26
+ activesupport (= 6.1.4.7)
18
27
  mail (~> 2.5, >= 2.5.4)
19
28
  rails-dom-testing (~> 2.0)
20
- actionpack (5.2.3)
21
- actionview (= 5.2.3)
22
- activesupport (= 5.2.3)
23
- rack (~> 2.0)
29
+ actionpack (6.1.4.7)
30
+ actionview (= 6.1.4.7)
31
+ activesupport (= 6.1.4.7)
32
+ rack (~> 2.0, >= 2.0.9)
24
33
  rack-test (>= 0.6.3)
25
34
  rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.2.3)
28
- activesupport (= 5.2.3)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.4.7)
37
+ actionpack (= 6.1.4.7)
38
+ activerecord (= 6.1.4.7)
39
+ activestorage (= 6.1.4.7)
40
+ activesupport (= 6.1.4.7)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.4.7)
43
+ activesupport (= 6.1.4.7)
29
44
  builder (~> 3.1)
30
45
  erubi (~> 1.4)
31
46
  rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.2.3)
34
- activesupport (= 5.2.3)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.4.7)
49
+ activesupport (= 6.1.4.7)
35
50
  globalid (>= 0.3.6)
36
- activemodel (5.2.3)
37
- activesupport (= 5.2.3)
38
- activerecord (5.2.3)
39
- activemodel (= 5.2.3)
40
- activesupport (= 5.2.3)
41
- arel (>= 9.0)
42
- activestorage (5.2.3)
43
- actionpack (= 5.2.3)
44
- activerecord (= 5.2.3)
45
- marcel (~> 0.3.1)
46
- activesupport (5.2.3)
51
+ activemodel (6.1.4.7)
52
+ activesupport (= 6.1.4.7)
53
+ activerecord (6.1.4.7)
54
+ activemodel (= 6.1.4.7)
55
+ activesupport (= 6.1.4.7)
56
+ activestorage (6.1.4.7)
57
+ actionpack (= 6.1.4.7)
58
+ activejob (= 6.1.4.7)
59
+ activerecord (= 6.1.4.7)
60
+ activesupport (= 6.1.4.7)
61
+ marcel (~> 1.0.0)
62
+ mini_mime (>= 1.1.0)
63
+ activesupport (6.1.4.7)
47
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
- i18n (>= 0.7, < 2)
49
- minitest (~> 5.1)
50
- tzinfo (~> 1.1)
51
- arel (9.0.0)
52
- builder (3.2.3)
53
- concurrent-ruby (1.1.5)
54
- crass (1.0.4)
55
- diff-lcs (1.3)
56
- erubi (1.8.0)
57
- globalid (0.4.2)
58
- activesupport (>= 4.2.0)
59
- i18n (1.6.0)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ appraisal (2.5.0)
70
+ bundler
71
+ rake
72
+ thor (>= 0.14.0)
73
+ builder (3.3.0)
74
+ concurrent-ruby (1.3.3)
75
+ crass (1.0.6)
76
+ date (3.3.4)
77
+ diff-lcs (1.5.1)
78
+ erubi (1.13.0)
79
+ globalid (1.2.1)
80
+ activesupport (>= 6.1)
81
+ i18n (1.14.5)
60
82
  concurrent-ruby (~> 1.0)
61
- loofah (2.2.3)
83
+ loofah (2.22.0)
62
84
  crass (~> 1.0.2)
63
- nokogiri (>= 1.5.9)
64
- mail (2.7.1)
85
+ nokogiri (>= 1.12.0)
86
+ mail (2.8.1)
65
87
  mini_mime (>= 0.1.1)
66
- marcel (0.3.3)
67
- mimemagic (~> 0.3.2)
68
- method_source (0.9.2)
69
- mimemagic (0.3.3)
70
- mini_mime (1.0.1)
71
- mini_portile2 (2.4.0)
72
- minitest (5.11.3)
73
- nio4r (2.3.1)
74
- nokogiri (1.10.3)
75
- mini_portile2 (~> 2.4.0)
76
- rack (2.0.7)
77
- rack-test (1.1.0)
78
- rack (>= 1.0, < 3)
79
- rails (5.2.3)
80
- actioncable (= 5.2.3)
81
- actionmailer (= 5.2.3)
82
- actionpack (= 5.2.3)
83
- actionview (= 5.2.3)
84
- activejob (= 5.2.3)
85
- activemodel (= 5.2.3)
86
- activerecord (= 5.2.3)
87
- activestorage (= 5.2.3)
88
- activesupport (= 5.2.3)
89
- bundler (>= 1.3.0)
90
- railties (= 5.2.3)
88
+ net-imap
89
+ net-pop
90
+ net-smtp
91
+ marcel (1.0.4)
92
+ method_source (1.1.0)
93
+ mini_mime (1.1.5)
94
+ minitest (5.24.0)
95
+ net-imap (0.4.14)
96
+ date
97
+ net-protocol
98
+ net-pop (0.1.2)
99
+ net-protocol
100
+ net-protocol (0.2.2)
101
+ timeout
102
+ net-smtp (0.5.0)
103
+ net-protocol
104
+ nio4r (2.7.3)
105
+ nokogiri (1.16.6-arm64-darwin)
106
+ racc (~> 1.4)
107
+ racc (1.8.0)
108
+ rack (2.2.9)
109
+ rack-test (2.1.0)
110
+ rack (>= 1.3)
111
+ rails (6.1.4.7)
112
+ actioncable (= 6.1.4.7)
113
+ actionmailbox (= 6.1.4.7)
114
+ actionmailer (= 6.1.4.7)
115
+ actionpack (= 6.1.4.7)
116
+ actiontext (= 6.1.4.7)
117
+ actionview (= 6.1.4.7)
118
+ activejob (= 6.1.4.7)
119
+ activemodel (= 6.1.4.7)
120
+ activerecord (= 6.1.4.7)
121
+ activestorage (= 6.1.4.7)
122
+ activesupport (= 6.1.4.7)
123
+ bundler (>= 1.15.0)
124
+ railties (= 6.1.4.7)
91
125
  sprockets-rails (>= 2.0.0)
92
- rails-dom-testing (2.0.3)
93
- activesupport (>= 4.2.0)
126
+ rails-dom-testing (2.2.0)
127
+ activesupport (>= 5.0.0)
128
+ minitest
94
129
  nokogiri (>= 1.6)
95
- rails-html-sanitizer (1.0.4)
96
- loofah (~> 2.2, >= 2.2.2)
97
- railties (5.2.3)
98
- actionpack (= 5.2.3)
99
- activesupport (= 5.2.3)
130
+ rails-html-sanitizer (1.6.0)
131
+ loofah (~> 2.21)
132
+ nokogiri (~> 1.14)
133
+ railties (6.1.4.7)
134
+ actionpack (= 6.1.4.7)
135
+ activesupport (= 6.1.4.7)
100
136
  method_source
101
- rake (>= 0.8.7)
102
- thor (>= 0.19.0, < 2.0)
137
+ rake (>= 0.13)
138
+ thor (~> 1.0)
103
139
  rake (10.5.0)
104
- rspec (3.8.0)
105
- rspec-core (~> 3.8.0)
106
- rspec-expectations (~> 3.8.0)
107
- rspec-mocks (~> 3.8.0)
108
- rspec-core (3.8.1)
109
- rspec-support (~> 3.8.0)
110
- rspec-expectations (3.8.4)
140
+ rspec (3.13.0)
141
+ rspec-core (~> 3.13.0)
142
+ rspec-expectations (~> 3.13.0)
143
+ rspec-mocks (~> 3.13.0)
144
+ rspec-core (3.13.0)
145
+ rspec-support (~> 3.13.0)
146
+ rspec-expectations (3.13.1)
111
147
  diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.8.0)
113
- rspec-mocks (3.8.1)
148
+ rspec-support (~> 3.13.0)
149
+ rspec-mocks (3.13.1)
114
150
  diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.8.0)
116
- rspec-support (3.8.2)
117
- sprockets (3.7.2)
151
+ rspec-support (~> 3.13.0)
152
+ rspec-support (3.13.1)
153
+ sprockets (4.2.1)
118
154
  concurrent-ruby (~> 1.0)
119
- rack (> 1, < 3)
120
- sprockets-rails (3.2.1)
121
- actionpack (>= 4.0)
122
- activesupport (>= 4.0)
155
+ rack (>= 2.2.4, < 4)
156
+ sprockets-rails (3.5.1)
157
+ actionpack (>= 6.1)
158
+ activesupport (>= 6.1)
123
159
  sprockets (>= 3.0.0)
124
- thor (0.20.3)
125
- thread_safe (0.3.6)
126
- tzinfo (1.2.5)
127
- thread_safe (~> 0.1)
128
- websocket-driver (0.7.1)
160
+ thor (1.3.1)
161
+ timeout (0.4.1)
162
+ tzinfo (2.0.6)
163
+ concurrent-ruby (~> 1.0)
164
+ websocket-driver (0.7.6)
129
165
  websocket-extensions (>= 0.1.0)
130
- websocket-extensions (0.1.4)
166
+ websocket-extensions (0.1.5)
167
+ zeitwerk (2.6.16)
131
168
 
132
169
  PLATFORMS
133
- ruby
170
+ arm64-darwin-23
134
171
 
135
172
  DEPENDENCIES
136
- bundler (~> 2.0)
137
- rake (~> 10.0)
138
- rspec (~> 3.0)
173
+ appraisal
174
+ bundler
175
+ rake (>= 10.0)
176
+ rspec (>= 3.0)
139
177
  scan-suppressing-logger!
140
178
 
141
179
  BUNDLED WITH
142
- 2.0.1
180
+ 2.5.14
data/README.md CHANGED
@@ -50,7 +50,7 @@ If you get this error it might be because something else is replacing the
50
50
  standard logger, or expecting it to be there. For example, if you have
51
51
  `config.assets.quiet = true` in your configuration, Sprockets tries to
52
52
  `insert_before` the standard logging middleware in an initializer. You'll need
53
- to configure this gem in an initializer too:
53
+ to configure this gem in an initializer instead:
54
54
 
55
55
  ```ruby
56
56
  # config/initializer/suppressing_logger.rb
@@ -86,4 +86,4 @@ License](https://opensource.org/licenses/MIT).
86
86
 
87
87
  Everyone interacting in the ScanSuppressingLogger project’s codebases, issue
88
88
  trackers, chat rooms and mailing lists is expected to follow the [code of
89
- conduct](https://github.com/jalada/scan-suppressing-logger/blob/master/CODE_OF_CONDUCT.md).
89
+ conduct](https://github.com/jalada/scan-suppressing-logger/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 6.1.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,181 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ scan-suppressing-logger (0.1.0.pre.alpha2)
5
+ rails (>= 4.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.4.7)
11
+ actionpack (= 6.1.4.7)
12
+ activesupport (= 6.1.4.7)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.1.4.7)
16
+ actionpack (= 6.1.4.7)
17
+ activejob (= 6.1.4.7)
18
+ activerecord (= 6.1.4.7)
19
+ activestorage (= 6.1.4.7)
20
+ activesupport (= 6.1.4.7)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.4.7)
23
+ actionpack (= 6.1.4.7)
24
+ actionview (= 6.1.4.7)
25
+ activejob (= 6.1.4.7)
26
+ activesupport (= 6.1.4.7)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.4.7)
30
+ actionview (= 6.1.4.7)
31
+ activesupport (= 6.1.4.7)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.4.7)
37
+ actionpack (= 6.1.4.7)
38
+ activerecord (= 6.1.4.7)
39
+ activestorage (= 6.1.4.7)
40
+ activesupport (= 6.1.4.7)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.4.7)
43
+ activesupport (= 6.1.4.7)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.4.7)
49
+ activesupport (= 6.1.4.7)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.1.4.7)
52
+ activesupport (= 6.1.4.7)
53
+ activerecord (6.1.4.7)
54
+ activemodel (= 6.1.4.7)
55
+ activesupport (= 6.1.4.7)
56
+ activestorage (6.1.4.7)
57
+ actionpack (= 6.1.4.7)
58
+ activejob (= 6.1.4.7)
59
+ activerecord (= 6.1.4.7)
60
+ activesupport (= 6.1.4.7)
61
+ marcel (~> 1.0.0)
62
+ mini_mime (>= 1.1.0)
63
+ activesupport (6.1.4.7)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ appraisal (2.5.0)
70
+ bundler
71
+ rake
72
+ thor (>= 0.14.0)
73
+ builder (3.3.0)
74
+ concurrent-ruby (1.3.3)
75
+ crass (1.0.6)
76
+ date (3.3.4)
77
+ diff-lcs (1.5.1)
78
+ erubi (1.13.0)
79
+ globalid (1.2.1)
80
+ activesupport (>= 6.1)
81
+ i18n (1.14.5)
82
+ concurrent-ruby (~> 1.0)
83
+ loofah (2.22.0)
84
+ crass (~> 1.0.2)
85
+ nokogiri (>= 1.12.0)
86
+ mail (2.8.1)
87
+ mini_mime (>= 0.1.1)
88
+ net-imap
89
+ net-pop
90
+ net-smtp
91
+ marcel (1.0.4)
92
+ method_source (1.1.0)
93
+ mini_mime (1.1.5)
94
+ minitest (5.24.0)
95
+ net-imap (0.4.14)
96
+ date
97
+ net-protocol
98
+ net-pop (0.1.2)
99
+ net-protocol
100
+ net-protocol (0.2.2)
101
+ timeout
102
+ net-smtp (0.5.0)
103
+ net-protocol
104
+ nio4r (2.7.3)
105
+ nokogiri (1.16.6-arm64-darwin)
106
+ racc (~> 1.4)
107
+ racc (1.8.0)
108
+ rack (2.2.9)
109
+ rack-test (2.1.0)
110
+ rack (>= 1.3)
111
+ rails (6.1.4.7)
112
+ actioncable (= 6.1.4.7)
113
+ actionmailbox (= 6.1.4.7)
114
+ actionmailer (= 6.1.4.7)
115
+ actionpack (= 6.1.4.7)
116
+ actiontext (= 6.1.4.7)
117
+ actionview (= 6.1.4.7)
118
+ activejob (= 6.1.4.7)
119
+ activemodel (= 6.1.4.7)
120
+ activerecord (= 6.1.4.7)
121
+ activestorage (= 6.1.4.7)
122
+ activesupport (= 6.1.4.7)
123
+ bundler (>= 1.15.0)
124
+ railties (= 6.1.4.7)
125
+ sprockets-rails (>= 2.0.0)
126
+ rails-dom-testing (2.2.0)
127
+ activesupport (>= 5.0.0)
128
+ minitest
129
+ nokogiri (>= 1.6)
130
+ rails-html-sanitizer (1.6.0)
131
+ loofah (~> 2.21)
132
+ nokogiri (~> 1.14)
133
+ railties (6.1.4.7)
134
+ actionpack (= 6.1.4.7)
135
+ activesupport (= 6.1.4.7)
136
+ method_source
137
+ rake (>= 0.13)
138
+ thor (~> 1.0)
139
+ rake (13.2.1)
140
+ rspec (3.13.0)
141
+ rspec-core (~> 3.13.0)
142
+ rspec-expectations (~> 3.13.0)
143
+ rspec-mocks (~> 3.13.0)
144
+ rspec-core (3.13.0)
145
+ rspec-support (~> 3.13.0)
146
+ rspec-expectations (3.13.1)
147
+ diff-lcs (>= 1.2.0, < 2.0)
148
+ rspec-support (~> 3.13.0)
149
+ rspec-mocks (3.13.1)
150
+ diff-lcs (>= 1.2.0, < 2.0)
151
+ rspec-support (~> 3.13.0)
152
+ rspec-support (3.13.1)
153
+ sprockets (4.2.1)
154
+ concurrent-ruby (~> 1.0)
155
+ rack (>= 2.2.4, < 4)
156
+ sprockets-rails (3.5.1)
157
+ actionpack (>= 6.1)
158
+ activesupport (>= 6.1)
159
+ sprockets (>= 3.0.0)
160
+ thor (1.3.1)
161
+ timeout (0.4.1)
162
+ tzinfo (2.0.6)
163
+ concurrent-ruby (~> 1.0)
164
+ websocket-driver (0.7.6)
165
+ websocket-extensions (>= 0.1.0)
166
+ websocket-extensions (0.1.5)
167
+ zeitwerk (2.6.16)
168
+
169
+ PLATFORMS
170
+ arm64-darwin
171
+
172
+ DEPENDENCIES
173
+ appraisal
174
+ bundler
175
+ rails (~> 6.1.0)
176
+ rake (>= 10.0)
177
+ rspec (>= 3.0)
178
+ scan-suppressing-logger!
179
+
180
+ BUNDLED WITH
181
+ 2.5.14
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.0.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,180 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ scan-suppressing-logger (0.1.0.pre.alpha2)
5
+ rails (>= 4.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.0.8)
11
+ actionpack (= 7.0.8)
12
+ activesupport (= 7.0.8)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (7.0.8)
16
+ actionpack (= 7.0.8)
17
+ activejob (= 7.0.8)
18
+ activerecord (= 7.0.8)
19
+ activestorage (= 7.0.8)
20
+ activesupport (= 7.0.8)
21
+ mail (>= 2.7.1)
22
+ net-imap
23
+ net-pop
24
+ net-smtp
25
+ actionmailer (7.0.8)
26
+ actionpack (= 7.0.8)
27
+ actionview (= 7.0.8)
28
+ activejob (= 7.0.8)
29
+ activesupport (= 7.0.8)
30
+ mail (~> 2.5, >= 2.5.4)
31
+ net-imap
32
+ net-pop
33
+ net-smtp
34
+ rails-dom-testing (~> 2.0)
35
+ actionpack (7.0.8)
36
+ actionview (= 7.0.8)
37
+ activesupport (= 7.0.8)
38
+ rack (~> 2.0, >= 2.2.4)
39
+ rack-test (>= 0.6.3)
40
+ rails-dom-testing (~> 2.0)
41
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
+ actiontext (7.0.8)
43
+ actionpack (= 7.0.8)
44
+ activerecord (= 7.0.8)
45
+ activestorage (= 7.0.8)
46
+ activesupport (= 7.0.8)
47
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (7.0.8)
50
+ activesupport (= 7.0.8)
51
+ builder (~> 3.1)
52
+ erubi (~> 1.4)
53
+ rails-dom-testing (~> 2.0)
54
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
55
+ activejob (7.0.8)
56
+ activesupport (= 7.0.8)
57
+ globalid (>= 0.3.6)
58
+ activemodel (7.0.8)
59
+ activesupport (= 7.0.8)
60
+ activerecord (7.0.8)
61
+ activemodel (= 7.0.8)
62
+ activesupport (= 7.0.8)
63
+ activestorage (7.0.8)
64
+ actionpack (= 7.0.8)
65
+ activejob (= 7.0.8)
66
+ activerecord (= 7.0.8)
67
+ activesupport (= 7.0.8)
68
+ marcel (~> 1.0)
69
+ mini_mime (>= 1.1.0)
70
+ activesupport (7.0.8)
71
+ concurrent-ruby (~> 1.0, >= 1.0.2)
72
+ i18n (>= 1.6, < 2)
73
+ minitest (>= 5.1)
74
+ tzinfo (~> 2.0)
75
+ appraisal (2.5.0)
76
+ bundler
77
+ rake
78
+ thor (>= 0.14.0)
79
+ builder (3.3.0)
80
+ concurrent-ruby (1.3.3)
81
+ crass (1.0.6)
82
+ date (3.3.4)
83
+ diff-lcs (1.5.1)
84
+ erubi (1.13.0)
85
+ globalid (1.2.1)
86
+ activesupport (>= 6.1)
87
+ i18n (1.14.5)
88
+ concurrent-ruby (~> 1.0)
89
+ loofah (2.22.0)
90
+ crass (~> 1.0.2)
91
+ nokogiri (>= 1.12.0)
92
+ mail (2.8.1)
93
+ mini_mime (>= 0.1.1)
94
+ net-imap
95
+ net-pop
96
+ net-smtp
97
+ marcel (1.0.4)
98
+ method_source (1.1.0)
99
+ mini_mime (1.1.5)
100
+ minitest (5.24.0)
101
+ net-imap (0.4.14)
102
+ date
103
+ net-protocol
104
+ net-pop (0.1.2)
105
+ net-protocol
106
+ net-protocol (0.2.2)
107
+ timeout
108
+ net-smtp (0.5.0)
109
+ net-protocol
110
+ nio4r (2.7.3)
111
+ nokogiri (1.16.6-arm64-darwin)
112
+ racc (~> 1.4)
113
+ racc (1.8.0)
114
+ rack (2.2.9)
115
+ rack-test (2.1.0)
116
+ rack (>= 1.3)
117
+ rails (7.0.8)
118
+ actioncable (= 7.0.8)
119
+ actionmailbox (= 7.0.8)
120
+ actionmailer (= 7.0.8)
121
+ actionpack (= 7.0.8)
122
+ actiontext (= 7.0.8)
123
+ actionview (= 7.0.8)
124
+ activejob (= 7.0.8)
125
+ activemodel (= 7.0.8)
126
+ activerecord (= 7.0.8)
127
+ activestorage (= 7.0.8)
128
+ activesupport (= 7.0.8)
129
+ bundler (>= 1.15.0)
130
+ railties (= 7.0.8)
131
+ rails-dom-testing (2.2.0)
132
+ activesupport (>= 5.0.0)
133
+ minitest
134
+ nokogiri (>= 1.6)
135
+ rails-html-sanitizer (1.6.0)
136
+ loofah (~> 2.21)
137
+ nokogiri (~> 1.14)
138
+ railties (7.0.8)
139
+ actionpack (= 7.0.8)
140
+ activesupport (= 7.0.8)
141
+ method_source
142
+ rake (>= 12.2)
143
+ thor (~> 1.0)
144
+ zeitwerk (~> 2.5)
145
+ rake (13.2.1)
146
+ rspec (3.13.0)
147
+ rspec-core (~> 3.13.0)
148
+ rspec-expectations (~> 3.13.0)
149
+ rspec-mocks (~> 3.13.0)
150
+ rspec-core (3.13.0)
151
+ rspec-support (~> 3.13.0)
152
+ rspec-expectations (3.13.1)
153
+ diff-lcs (>= 1.2.0, < 2.0)
154
+ rspec-support (~> 3.13.0)
155
+ rspec-mocks (3.13.1)
156
+ diff-lcs (>= 1.2.0, < 2.0)
157
+ rspec-support (~> 3.13.0)
158
+ rspec-support (3.13.1)
159
+ thor (1.3.1)
160
+ timeout (0.4.1)
161
+ tzinfo (2.0.6)
162
+ concurrent-ruby (~> 1.0)
163
+ websocket-driver (0.7.6)
164
+ websocket-extensions (>= 0.1.0)
165
+ websocket-extensions (0.1.5)
166
+ zeitwerk (2.6.16)
167
+
168
+ PLATFORMS
169
+ arm64-darwin
170
+
171
+ DEPENDENCIES
172
+ appraisal
173
+ bundler
174
+ rails (~> 7.0.0)
175
+ rake (>= 10.0)
176
+ rspec (>= 3.0)
177
+ scan-suppressing-logger!
178
+
179
+ BUNDLED WITH
180
+ 2.5.14
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.1.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,226 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ scan-suppressing-logger (0.1.0.pre.alpha2)
5
+ rails (>= 4.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.1.3.4)
11
+ actionpack (= 7.1.3.4)
12
+ activesupport (= 7.1.3.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (7.1.3.4)
17
+ actionpack (= 7.1.3.4)
18
+ activejob (= 7.1.3.4)
19
+ activerecord (= 7.1.3.4)
20
+ activestorage (= 7.1.3.4)
21
+ activesupport (= 7.1.3.4)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.1.3.4)
27
+ actionpack (= 7.1.3.4)
28
+ actionview (= 7.1.3.4)
29
+ activejob (= 7.1.3.4)
30
+ activesupport (= 7.1.3.4)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
35
+ rails-dom-testing (~> 2.2)
36
+ actionpack (7.1.3.4)
37
+ actionview (= 7.1.3.4)
38
+ activesupport (= 7.1.3.4)
39
+ nokogiri (>= 1.8.5)
40
+ racc
41
+ rack (>= 2.2.4)
42
+ rack-session (>= 1.0.1)
43
+ rack-test (>= 0.6.3)
44
+ rails-dom-testing (~> 2.2)
45
+ rails-html-sanitizer (~> 1.6)
46
+ actiontext (7.1.3.4)
47
+ actionpack (= 7.1.3.4)
48
+ activerecord (= 7.1.3.4)
49
+ activestorage (= 7.1.3.4)
50
+ activesupport (= 7.1.3.4)
51
+ globalid (>= 0.6.0)
52
+ nokogiri (>= 1.8.5)
53
+ actionview (7.1.3.4)
54
+ activesupport (= 7.1.3.4)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.11)
57
+ rails-dom-testing (~> 2.2)
58
+ rails-html-sanitizer (~> 1.6)
59
+ activejob (7.1.3.4)
60
+ activesupport (= 7.1.3.4)
61
+ globalid (>= 0.3.6)
62
+ activemodel (7.1.3.4)
63
+ activesupport (= 7.1.3.4)
64
+ activerecord (7.1.3.4)
65
+ activemodel (= 7.1.3.4)
66
+ activesupport (= 7.1.3.4)
67
+ timeout (>= 0.4.0)
68
+ activestorage (7.1.3.4)
69
+ actionpack (= 7.1.3.4)
70
+ activejob (= 7.1.3.4)
71
+ activerecord (= 7.1.3.4)
72
+ activesupport (= 7.1.3.4)
73
+ marcel (~> 1.0)
74
+ activesupport (7.1.3.4)
75
+ base64
76
+ bigdecimal
77
+ concurrent-ruby (~> 1.0, >= 1.0.2)
78
+ connection_pool (>= 2.2.5)
79
+ drb
80
+ i18n (>= 1.6, < 2)
81
+ minitest (>= 5.1)
82
+ mutex_m
83
+ tzinfo (~> 2.0)
84
+ appraisal (2.5.0)
85
+ bundler
86
+ rake
87
+ thor (>= 0.14.0)
88
+ base64 (0.2.0)
89
+ bigdecimal (3.1.8)
90
+ builder (3.3.0)
91
+ concurrent-ruby (1.3.3)
92
+ connection_pool (2.4.1)
93
+ crass (1.0.6)
94
+ date (3.3.4)
95
+ diff-lcs (1.5.1)
96
+ drb (2.2.1)
97
+ erubi (1.13.0)
98
+ globalid (1.2.1)
99
+ activesupport (>= 6.1)
100
+ i18n (1.14.5)
101
+ concurrent-ruby (~> 1.0)
102
+ io-console (0.7.2)
103
+ irb (1.13.2)
104
+ rdoc (>= 4.0.0)
105
+ reline (>= 0.4.2)
106
+ loofah (2.22.0)
107
+ crass (~> 1.0.2)
108
+ nokogiri (>= 1.12.0)
109
+ mail (2.8.1)
110
+ mini_mime (>= 0.1.1)
111
+ net-imap
112
+ net-pop
113
+ net-smtp
114
+ marcel (1.0.4)
115
+ mini_mime (1.1.5)
116
+ minitest (5.24.0)
117
+ mutex_m (0.2.0)
118
+ net-imap (0.4.14)
119
+ date
120
+ net-protocol
121
+ net-pop (0.1.2)
122
+ net-protocol
123
+ net-protocol (0.2.2)
124
+ timeout
125
+ net-smtp (0.5.0)
126
+ net-protocol
127
+ nio4r (2.7.3)
128
+ nokogiri (1.16.6-aarch64-linux)
129
+ racc (~> 1.4)
130
+ nokogiri (1.16.6-arm-linux)
131
+ racc (~> 1.4)
132
+ nokogiri (1.16.6-arm64-darwin)
133
+ racc (~> 1.4)
134
+ nokogiri (1.16.6-x86-linux)
135
+ racc (~> 1.4)
136
+ nokogiri (1.16.6-x86_64-darwin)
137
+ racc (~> 1.4)
138
+ nokogiri (1.16.6-x86_64-linux)
139
+ racc (~> 1.4)
140
+ psych (5.1.2)
141
+ stringio
142
+ racc (1.8.0)
143
+ rack (3.1.4)
144
+ rack-session (2.0.0)
145
+ rack (>= 3.0.0)
146
+ rack-test (2.1.0)
147
+ rack (>= 1.3)
148
+ rackup (2.1.0)
149
+ rack (>= 3)
150
+ webrick (~> 1.8)
151
+ rails (7.1.3.4)
152
+ actioncable (= 7.1.3.4)
153
+ actionmailbox (= 7.1.3.4)
154
+ actionmailer (= 7.1.3.4)
155
+ actionpack (= 7.1.3.4)
156
+ actiontext (= 7.1.3.4)
157
+ actionview (= 7.1.3.4)
158
+ activejob (= 7.1.3.4)
159
+ activemodel (= 7.1.3.4)
160
+ activerecord (= 7.1.3.4)
161
+ activestorage (= 7.1.3.4)
162
+ activesupport (= 7.1.3.4)
163
+ bundler (>= 1.15.0)
164
+ railties (= 7.1.3.4)
165
+ rails-dom-testing (2.2.0)
166
+ activesupport (>= 5.0.0)
167
+ minitest
168
+ nokogiri (>= 1.6)
169
+ rails-html-sanitizer (1.6.0)
170
+ loofah (~> 2.21)
171
+ nokogiri (~> 1.14)
172
+ railties (7.1.3.4)
173
+ actionpack (= 7.1.3.4)
174
+ activesupport (= 7.1.3.4)
175
+ irb
176
+ rackup (>= 1.0.0)
177
+ rake (>= 12.2)
178
+ thor (~> 1.0, >= 1.2.2)
179
+ zeitwerk (~> 2.6)
180
+ rake (13.2.1)
181
+ rdoc (6.7.0)
182
+ psych (>= 4.0.0)
183
+ reline (0.5.9)
184
+ io-console (~> 0.5)
185
+ rspec (3.13.0)
186
+ rspec-core (~> 3.13.0)
187
+ rspec-expectations (~> 3.13.0)
188
+ rspec-mocks (~> 3.13.0)
189
+ rspec-core (3.13.0)
190
+ rspec-support (~> 3.13.0)
191
+ rspec-expectations (3.13.1)
192
+ diff-lcs (>= 1.2.0, < 2.0)
193
+ rspec-support (~> 3.13.0)
194
+ rspec-mocks (3.13.1)
195
+ diff-lcs (>= 1.2.0, < 2.0)
196
+ rspec-support (~> 3.13.0)
197
+ rspec-support (3.13.1)
198
+ stringio (3.1.1)
199
+ thor (1.3.1)
200
+ timeout (0.4.1)
201
+ tzinfo (2.0.6)
202
+ concurrent-ruby (~> 1.0)
203
+ webrick (1.8.1)
204
+ websocket-driver (0.7.6)
205
+ websocket-extensions (>= 0.1.0)
206
+ websocket-extensions (0.1.5)
207
+ zeitwerk (2.6.16)
208
+
209
+ PLATFORMS
210
+ aarch64-linux
211
+ arm-linux
212
+ arm64-darwin
213
+ x86-linux
214
+ x86_64-darwin
215
+ x86_64-linux
216
+
217
+ DEPENDENCIES
218
+ appraisal
219
+ bundler
220
+ rails (~> 7.1.0)
221
+ rake (>= 10.0)
222
+ rspec (>= 3.0)
223
+ scan-suppressing-logger!
224
+
225
+ BUNDLED WITH
226
+ 2.5.14
@@ -1,3 +1,3 @@
1
1
  module ScanSuppressingLogger
2
- VERSION = "0.1.0-alpha2"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -24,7 +24,8 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.add_dependency "rails", ">= 4.2"
26
26
 
27
- spec.add_development_dependency "bundler", "~> 2.0"
28
- spec.add_development_dependency "rake", "~> 10.0"
29
- spec.add_development_dependency "rspec", "~> 3.0"
27
+ spec.add_development_dependency "bundler"
28
+ spec.add_development_dependency "rake", ">= 10.0"
29
+ spec.add_development_dependency "rspec", ">= 3.0"
30
+ spec.add_development_dependency "appraisal"
30
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scan-suppressing-logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Somers
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-06-19 00:00:00.000000000 Z
11
+ date: 2024-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -28,53 +28,70 @@ dependencies:
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '2.0'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '2.0'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '10.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '3.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
68
  version: '3.0'
69
- description:
69
+ - !ruby/object:Gem::Dependency
70
+ name: appraisal
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description:
70
84
  email:
71
85
  - team@pixielabs.io
72
86
  executables: []
73
87
  extensions: []
74
88
  extra_rdoc_files: []
75
89
  files:
90
+ - ".github/workflows/ci.yml"
76
91
  - ".gitignore"
77
92
  - ".rspec"
93
+ - ".ruby-version"
94
+ - Appraisals
78
95
  - CODE_OF_CONDUCT.md
79
96
  - Gemfile
80
97
  - Gemfile.lock
@@ -82,6 +99,12 @@ files:
82
99
  - README.md
83
100
  - Rakefile
84
101
  - bin/setup
102
+ - gemfiles/rails_6.1.gemfile
103
+ - gemfiles/rails_6.1.gemfile.lock
104
+ - gemfiles/rails_7.0.gemfile
105
+ - gemfiles/rails_7.0.gemfile.lock
106
+ - gemfiles/rails_7.1.gemfile
107
+ - gemfiles/rails_7.1.gemfile.lock
85
108
  - lib/scan-suppressing-logger.rb
86
109
  - lib/scan_suppressing_logger.rb
87
110
  - lib/scan_suppressing_logger/middleware.rb
@@ -93,7 +116,7 @@ homepage: https://github.com/pixielabs/scan-suppressing-logger
93
116
  licenses:
94
117
  - MIT
95
118
  metadata: {}
96
- post_install_message:
119
+ post_install_message:
97
120
  rdoc_options: []
98
121
  require_paths:
99
122
  - lib
@@ -104,13 +127,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
127
  version: '0'
105
128
  required_rubygems_version: !ruby/object:Gem::Requirement
106
129
  requirements:
107
- - - ">"
130
+ - - ">="
108
131
  - !ruby/object:Gem::Version
109
- version: 1.3.1
132
+ version: '0'
110
133
  requirements: []
111
- rubyforge_project:
112
- rubygems_version: 2.7.8
113
- signing_key:
134
+ rubygems_version: 3.3.27
135
+ signing_key:
114
136
  specification_version: 4
115
137
  summary: Suppress Rails logs and exceptions from automated scan requests.
116
138
  test_files: []