Skip to content

Commit 846415f

Browse files
committed
Add active support require
1 parent 11a65b6 commit 846415f

File tree

4 files changed

+85
-80
lines changed

4 files changed

+85
-80
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.2 Feb 26, 2024
2+
3+
* For some reason, now need to explicitly require active_support/subscriber
4+
15
## 0.7.1 Jan 26, 2024
26

37
* Unneeded reference to awesome_print removed

Gemfile.lock

+79-79
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
11
PATH
22
remote: .
33
specs:
4-
warning_signs (0.7.0)
4+
warning_signs (0.7.2)
55
rails
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
actioncable (7.1.3)
11-
actionpack (= 7.1.3)
12-
activesupport (= 7.1.3)
10+
actioncable (7.1.3.2)
11+
actionpack (= 7.1.3.2)
12+
activesupport (= 7.1.3.2)
1313
nio4r (~> 2.0)
1414
websocket-driver (>= 0.6.1)
1515
zeitwerk (~> 2.6)
16-
actionmailbox (7.1.3)
17-
actionpack (= 7.1.3)
18-
activejob (= 7.1.3)
19-
activerecord (= 7.1.3)
20-
activestorage (= 7.1.3)
21-
activesupport (= 7.1.3)
16+
actionmailbox (7.1.3.2)
17+
actionpack (= 7.1.3.2)
18+
activejob (= 7.1.3.2)
19+
activerecord (= 7.1.3.2)
20+
activestorage (= 7.1.3.2)
21+
activesupport (= 7.1.3.2)
2222
mail (>= 2.7.1)
2323
net-imap
2424
net-pop
2525
net-smtp
26-
actionmailer (7.1.3)
27-
actionpack (= 7.1.3)
28-
actionview (= 7.1.3)
29-
activejob (= 7.1.3)
30-
activesupport (= 7.1.3)
26+
actionmailer (7.1.3.2)
27+
actionpack (= 7.1.3.2)
28+
actionview (= 7.1.3.2)
29+
activejob (= 7.1.3.2)
30+
activesupport (= 7.1.3.2)
3131
mail (~> 2.5, >= 2.5.4)
3232
net-imap
3333
net-pop
3434
net-smtp
3535
rails-dom-testing (~> 2.2)
36-
actionpack (7.1.3)
37-
actionview (= 7.1.3)
38-
activesupport (= 7.1.3)
36+
actionpack (7.1.3.2)
37+
actionview (= 7.1.3.2)
38+
activesupport (= 7.1.3.2)
3939
nokogiri (>= 1.8.5)
4040
racc
4141
rack (>= 2.2.4)
4242
rack-session (>= 1.0.1)
4343
rack-test (>= 0.6.3)
4444
rails-dom-testing (~> 2.2)
4545
rails-html-sanitizer (~> 1.6)
46-
actiontext (7.1.3)
47-
actionpack (= 7.1.3)
48-
activerecord (= 7.1.3)
49-
activestorage (= 7.1.3)
50-
activesupport (= 7.1.3)
46+
actiontext (7.1.3.2)
47+
actionpack (= 7.1.3.2)
48+
activerecord (= 7.1.3.2)
49+
activestorage (= 7.1.3.2)
50+
activesupport (= 7.1.3.2)
5151
globalid (>= 0.6.0)
5252
nokogiri (>= 1.8.5)
53-
actionview (7.1.3)
54-
activesupport (= 7.1.3)
53+
actionview (7.1.3.2)
54+
activesupport (= 7.1.3.2)
5555
builder (~> 3.1)
5656
erubi (~> 1.11)
5757
rails-dom-testing (~> 2.2)
5858
rails-html-sanitizer (~> 1.6)
59-
activejob (7.1.3)
60-
activesupport (= 7.1.3)
59+
activejob (7.1.3.2)
60+
activesupport (= 7.1.3.2)
6161
globalid (>= 0.3.6)
62-
activemodel (7.1.3)
63-
activesupport (= 7.1.3)
64-
activerecord (7.1.3)
65-
activemodel (= 7.1.3)
66-
activesupport (= 7.1.3)
62+
activemodel (7.1.3.2)
63+
activesupport (= 7.1.3.2)
64+
activerecord (7.1.3.2)
65+
activemodel (= 7.1.3.2)
66+
activesupport (= 7.1.3.2)
6767
timeout (>= 0.4.0)
68-
activestorage (7.1.3)
69-
actionpack (= 7.1.3)
70-
activejob (= 7.1.3)
71-
activerecord (= 7.1.3)
72-
activesupport (= 7.1.3)
68+
activestorage (7.1.3.2)
69+
actionpack (= 7.1.3.2)
70+
activejob (= 7.1.3.2)
71+
activerecord (= 7.1.3.2)
72+
activesupport (= 7.1.3.2)
7373
marcel (~> 1.0)
74-
activesupport (7.1.3)
74+
activesupport (7.1.3.2)
7575
base64
7676
bigdecimal
7777
concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -95,7 +95,7 @@ GEM
9595
debug (1.9.1)
9696
irb (~> 1.10)
9797
reline (>= 0.3.8)
98-
diff-lcs (1.5.0)
98+
diff-lcs (1.5.1)
9999
docile (1.4.0)
100100
drb (2.2.0)
101101
ruby2_keywords
@@ -105,7 +105,7 @@ GEM
105105
i18n (1.14.1)
106106
concurrent-ruby (~> 1.0)
107107
io-console (0.7.2)
108-
irb (1.11.1)
108+
irb (1.11.2)
109109
rdoc
110110
reline (>= 0.4.2)
111111
json (2.7.1)
@@ -122,9 +122,9 @@ GEM
122122
marcel (1.0.2)
123123
method_source (1.0.0)
124124
mini_mime (1.1.5)
125-
minitest (5.21.2)
125+
minitest (5.22.2)
126126
mutex_m (0.2.0)
127-
net-imap (0.4.9.1)
127+
net-imap (0.4.10)
128128
date
129129
net-protocol
130130
net-pop (0.1.2)
@@ -134,11 +134,11 @@ GEM
134134
net-smtp (0.4.0.1)
135135
net-protocol
136136
nio4r (2.7.0)
137-
nokogiri (1.16.0-arm64-darwin)
137+
nokogiri (1.16.2-arm64-darwin)
138138
racc (~> 1.4)
139-
nokogiri (1.16.0-x86_64-darwin)
139+
nokogiri (1.16.2-x86_64-darwin)
140140
racc (~> 1.4)
141-
nokogiri (1.16.0-x86_64-linux)
141+
nokogiri (1.16.2-x86_64-linux)
142142
racc (~> 1.4)
143143
parallel (1.24.0)
144144
parser (3.3.0.5)
@@ -153,38 +153,38 @@ GEM
153153
psych (5.1.2)
154154
stringio
155155
racc (1.7.3)
156-
rack (3.0.8)
156+
rack (3.0.9.1)
157157
rack-session (2.0.0)
158158
rack (>= 3.0.0)
159159
rack-test (2.1.0)
160160
rack (>= 1.3)
161161
rackup (2.1.0)
162162
rack (>= 3)
163163
webrick (~> 1.8)
164-
rails (7.1.3)
165-
actioncable (= 7.1.3)
166-
actionmailbox (= 7.1.3)
167-
actionmailer (= 7.1.3)
168-
actionpack (= 7.1.3)
169-
actiontext (= 7.1.3)
170-
actionview (= 7.1.3)
171-
activejob (= 7.1.3)
172-
activemodel (= 7.1.3)
173-
activerecord (= 7.1.3)
174-
activestorage (= 7.1.3)
175-
activesupport (= 7.1.3)
164+
rails (7.1.3.2)
165+
actioncable (= 7.1.3.2)
166+
actionmailbox (= 7.1.3.2)
167+
actionmailer (= 7.1.3.2)
168+
actionpack (= 7.1.3.2)
169+
actiontext (= 7.1.3.2)
170+
actionview (= 7.1.3.2)
171+
activejob (= 7.1.3.2)
172+
activemodel (= 7.1.3.2)
173+
activerecord (= 7.1.3.2)
174+
activestorage (= 7.1.3.2)
175+
activesupport (= 7.1.3.2)
176176
bundler (>= 1.15.0)
177-
railties (= 7.1.3)
177+
railties (= 7.1.3.2)
178178
rails-dom-testing (2.2.0)
179179
activesupport (>= 5.0.0)
180180
minitest
181181
nokogiri (>= 1.6)
182182
rails-html-sanitizer (1.6.0)
183183
loofah (~> 2.21)
184184
nokogiri (~> 1.14)
185-
railties (7.1.3)
186-
actionpack (= 7.1.3)
187-
activesupport (= 7.1.3)
185+
railties (7.1.3.2)
186+
actionpack (= 7.1.3.2)
187+
activesupport (= 7.1.3.2)
188188
irb
189189
rackup (>= 1.0.0)
190190
rake (>= 12.2)
@@ -195,31 +195,31 @@ GEM
195195
rdoc (6.6.2)
196196
psych (>= 4.0.0)
197197
regexp_parser (2.9.0)
198-
reline (0.4.2)
198+
reline (0.4.3)
199199
io-console (~> 0.5)
200200
rexml (3.2.6)
201-
rspec (3.12.0)
202-
rspec-core (~> 3.12.0)
203-
rspec-expectations (~> 3.12.0)
204-
rspec-mocks (~> 3.12.0)
201+
rspec (3.13.0)
202+
rspec-core (~> 3.13.0)
203+
rspec-expectations (~> 3.13.0)
204+
rspec-mocks (~> 3.13.0)
205205
rspec-collection_matchers (1.2.1)
206206
rspec-expectations (>= 2.99.0.beta1)
207-
rspec-core (3.12.2)
208-
rspec-support (~> 3.12.0)
209-
rspec-expectations (3.12.3)
207+
rspec-core (3.13.0)
208+
rspec-support (~> 3.13.0)
209+
rspec-expectations (3.13.0)
210210
diff-lcs (>= 1.2.0, < 2.0)
211-
rspec-support (~> 3.12.0)
212-
rspec-mocks (3.12.6)
211+
rspec-support (~> 3.13.0)
212+
rspec-mocks (3.13.0)
213213
diff-lcs (>= 1.2.0, < 2.0)
214-
rspec-support (~> 3.12.0)
215-
rspec-support (3.12.1)
214+
rspec-support (~> 3.13.0)
215+
rspec-support (3.13.1)
216216
rspec_junit_formatter (0.6.0)
217217
rspec-core (>= 2, < 4, != 2.12.0)
218-
rubocop (1.59.0)
218+
rubocop (1.60.2)
219219
json (~> 2.3)
220220
language_server-protocol (>= 3.17.0)
221221
parallel (~> 1.10)
222-
parser (>= 3.2.2.4)
222+
parser (>= 3.3.0.2)
223223
rainbow (>= 2.2.2, < 4.0)
224224
regexp_parser (>= 1.8, < 3.0)
225225
rexml (>= 3.2.5, < 4.0)
@@ -238,10 +238,10 @@ GEM
238238
json (>= 1.8, < 3)
239239
simplecov-html (~> 0.10.0)
240240
simplecov-html (0.10.2)
241-
standard (1.33.0)
241+
standard (1.34.0)
242242
language_server-protocol (~> 3.17.0.2)
243243
lint_roller (~> 1.0)
244-
rubocop (~> 1.59.0)
244+
rubocop (~> 1.60)
245245
standard-custom (~> 1.0.0)
246246
standard-performance (~> 1.3)
247247
standard-custom (1.0.2)
@@ -261,7 +261,7 @@ GEM
261261
websocket-extensions (>= 0.1.0)
262262
websocket-extensions (0.1.5)
263263
yard (0.9.34)
264-
zeitwerk (2.6.12)
264+
zeitwerk (2.6.13)
265265

266266
PLATFORMS
267267
arm64-darwin-22

lib/warning_signs.rb

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
require "English"
44
require "yaml"
55
require "rails/railtie"
6+
require "active_support/subscriber"
67
require "active_support/all"
78

89
require "zeitwerk"

lib/warning_signs/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module WarningSigns
2-
VERSION = "0.7.1"
2+
VERSION = "0.7.2"
33
end

0 commit comments

Comments
 (0)