lumberaxe 0.1.3 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4661b1c8b3e4f10b9e6a4ec159f287cd3ac5ebcefd5384cc25e5c470c6faed6f
4
- data.tar.gz: d7ae76f89e8d9b1b9b1ce610186217161e00b8cf98baa724aa21782ab2da7b51
3
+ metadata.gz: 86334b7a5990cec09bc7f6d677f282a5fafc0d00a5bbf59f4a59724c37c7d7dd
4
+ data.tar.gz: b1cc07dead0cfe39a4a8fdd6322c492b29ccc75300e1bacaf2e8182808924184
5
5
  SHA512:
6
- metadata.gz: 5852ad01804c2a425f58761d1a6116b01fcc4449e19a25cdeb8bc10145e320524288a353200d227dca3e1a8b68d781ba2f9a94373bbd52e7ee1d42d6b0d898cd
7
- data.tar.gz: d747ebe692c30fa9147280cd7fbf9fc309ad94a5adf623915640231b236b5c839924114ba1eb3e86c7b9f567dc7d1c46bddee481780d23933deb99d22f3e94ce
6
+ metadata.gz: b1477d3970648ecac890e0a4a51a676e705603da133d0c593732b634063bdf265bbf9631f37eb3165e33d8a6d35b28772d9c54e6e04d0bee9848a826d7cae01b
7
+ data.tar.gz: '073559dd863a6c2ff16c5098bd9987f2812c00952918946d4984c367b716939565c2a01e9a4356489619bbe81d83d6b55ae79700a50234a7143beb293e703431'
data/.rubocop.yml CHANGED
@@ -6,5 +6,13 @@ require:
6
6
  AllCops:
7
7
  TargetRubyVersion: 2.7
8
8
 
9
+ Style/FrozenStringLiteralComment:
10
+ Exclude:
11
+ - 'gemfiles/*'
12
+
13
+ Bundler/OrderedGems:
14
+ Exclude:
15
+ - 'gemfiles/*'
16
+
9
17
  Rails:
10
18
  Enabled: false
data/Appraisals ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise "rails-6-0" do
4
+ gem "rails", "6.0.6.1"
5
+ end
6
+
7
+ appraise "rails-6-1" do
8
+ gem "rails", "6.1.7.4"
9
+ end
10
+
11
+ appraise "rails-7-0" do
12
+ gem "rails", "7.0.6"
13
+ end
14
+
15
+ appraise "rails-7-1" do
16
+ gem "rails", "7.1.3"
17
+ end
data/Gemfile CHANGED
@@ -8,6 +8,5 @@ end
8
8
 
9
9
  gemspec
10
10
 
11
- rails_version = ENV.fetch("RAILS_VERSION", ">= 5.2.8.1")
12
-
13
- gem "rails", rails_version
11
+ gem "nokogiri", "< 1.16"
12
+ gem "rubocop-powerhome", path: "../rubocop-powerhome"
data/Gemfile.lock ADDED
@@ -0,0 +1,333 @@
1
+ PATH
2
+ remote: ../rubocop-powerhome
3
+ specs:
4
+ rubocop-powerhome (0.5.2)
5
+ rubocop (~> 1.52.0)
6
+ rubocop-performance
7
+ rubocop-rails
8
+ rubocop-rake
9
+ rubocop-rspec
10
+
11
+ PATH
12
+ remote: .
13
+ specs:
14
+ lumberaxe (0.1.5)
15
+ activesupport (>= 6.0.6.1, < 7.2)
16
+ lograge (= 0.10.0)
17
+
18
+ GEM
19
+ remote: https://rubygems.org/
20
+ specs:
21
+ actioncable (7.1.3)
22
+ actionpack (= 7.1.3)
23
+ activesupport (= 7.1.3)
24
+ nio4r (~> 2.0)
25
+ websocket-driver (>= 0.6.1)
26
+ zeitwerk (~> 2.6)
27
+ actionmailbox (7.1.3)
28
+ actionpack (= 7.1.3)
29
+ activejob (= 7.1.3)
30
+ activerecord (= 7.1.3)
31
+ activestorage (= 7.1.3)
32
+ activesupport (= 7.1.3)
33
+ mail (>= 2.7.1)
34
+ net-imap
35
+ net-pop
36
+ net-smtp
37
+ actionmailer (7.1.3)
38
+ actionpack (= 7.1.3)
39
+ actionview (= 7.1.3)
40
+ activejob (= 7.1.3)
41
+ activesupport (= 7.1.3)
42
+ mail (~> 2.5, >= 2.5.4)
43
+ net-imap
44
+ net-pop
45
+ net-smtp
46
+ rails-dom-testing (~> 2.2)
47
+ actionpack (7.1.3)
48
+ actionview (= 7.1.3)
49
+ activesupport (= 7.1.3)
50
+ nokogiri (>= 1.8.5)
51
+ racc
52
+ rack (>= 2.2.4)
53
+ rack-session (>= 1.0.1)
54
+ rack-test (>= 0.6.3)
55
+ rails-dom-testing (~> 2.2)
56
+ rails-html-sanitizer (~> 1.6)
57
+ actiontext (7.1.3)
58
+ actionpack (= 7.1.3)
59
+ activerecord (= 7.1.3)
60
+ activestorage (= 7.1.3)
61
+ activesupport (= 7.1.3)
62
+ globalid (>= 0.6.0)
63
+ nokogiri (>= 1.8.5)
64
+ actionview (7.1.3)
65
+ activesupport (= 7.1.3)
66
+ builder (~> 3.1)
67
+ erubi (~> 1.11)
68
+ rails-dom-testing (~> 2.2)
69
+ rails-html-sanitizer (~> 1.6)
70
+ activejob (7.1.3)
71
+ activesupport (= 7.1.3)
72
+ globalid (>= 0.3.6)
73
+ activemodel (7.1.3)
74
+ activesupport (= 7.1.3)
75
+ activerecord (7.1.3)
76
+ activemodel (= 7.1.3)
77
+ activesupport (= 7.1.3)
78
+ timeout (>= 0.4.0)
79
+ activestorage (7.1.3)
80
+ actionpack (= 7.1.3)
81
+ activejob (= 7.1.3)
82
+ activerecord (= 7.1.3)
83
+ activesupport (= 7.1.3)
84
+ marcel (~> 1.0)
85
+ activesupport (7.1.3)
86
+ base64
87
+ bigdecimal
88
+ concurrent-ruby (~> 1.0, >= 1.0.2)
89
+ connection_pool (>= 2.2.5)
90
+ drb
91
+ i18n (>= 1.6, < 2)
92
+ minitest (>= 5.1)
93
+ mutex_m
94
+ tzinfo (~> 2.0)
95
+ appraisal (2.4.1)
96
+ bundler
97
+ rake
98
+ thor (>= 0.14.0)
99
+ ast (2.4.2)
100
+ base64 (0.2.0)
101
+ bigdecimal (3.1.5)
102
+ builder (3.2.4)
103
+ byebug (11.1.3)
104
+ coderay (1.1.3)
105
+ combustion (1.3.7)
106
+ activesupport (>= 3.0.0)
107
+ railties (>= 3.0.0)
108
+ thor (>= 0.14.6)
109
+ concurrent-ruby (1.2.3)
110
+ connection_pool (2.4.1)
111
+ crass (1.0.6)
112
+ date (3.3.4)
113
+ diff-lcs (1.5.0)
114
+ docile (1.1.5)
115
+ drb (2.2.0)
116
+ ruby2_keywords
117
+ erubi (1.12.0)
118
+ globalid (1.2.1)
119
+ activesupport (>= 6.1)
120
+ i18n (1.14.1)
121
+ concurrent-ruby (~> 1.0)
122
+ io-console (0.7.1)
123
+ irb (1.11.1)
124
+ rdoc
125
+ reline (>= 0.4.2)
126
+ json (2.7.1)
127
+ license_finder (7.1.0)
128
+ bundler
129
+ rubyzip (>= 1, < 3)
130
+ thor (~> 1.2)
131
+ tomlrb (>= 1.3, < 2.1)
132
+ with_env (= 1.1.0)
133
+ xml-simple (~> 1.1.9)
134
+ lograge (0.10.0)
135
+ actionpack (>= 4)
136
+ activesupport (>= 4)
137
+ railties (>= 4)
138
+ request_store (~> 1.0)
139
+ loofah (2.22.0)
140
+ crass (~> 1.0.2)
141
+ nokogiri (>= 1.12.0)
142
+ mail (2.8.1)
143
+ mini_mime (>= 0.1.1)
144
+ net-imap
145
+ net-pop
146
+ net-smtp
147
+ marcel (1.0.2)
148
+ method_source (1.0.0)
149
+ mini_mime (1.1.5)
150
+ minitest (5.21.1)
151
+ mutex_m (0.2.0)
152
+ net-imap (0.4.9.1)
153
+ date
154
+ net-protocol
155
+ net-pop (0.1.2)
156
+ net-protocol
157
+ net-protocol (0.2.2)
158
+ timeout
159
+ net-smtp (0.4.0.1)
160
+ net-protocol
161
+ nio4r (2.7.0)
162
+ nokogiri (1.15.5-arm64-darwin)
163
+ racc (~> 1.4)
164
+ nokogiri (1.15.5-x86_64-linux)
165
+ racc (~> 1.4)
166
+ parallel (1.24.0)
167
+ parser (3.3.0.2)
168
+ ast (~> 2.4.1)
169
+ racc
170
+ power_assert (2.0.3)
171
+ pry (0.14.2)
172
+ coderay (~> 1.1)
173
+ method_source (~> 1.0)
174
+ pry-byebug (3.10.1)
175
+ byebug (~> 11.0)
176
+ pry (>= 0.13, < 0.15)
177
+ psych (5.1.2)
178
+ stringio
179
+ racc (1.7.3)
180
+ rack (2.2.8)
181
+ rack-session (1.0.2)
182
+ rack (< 3)
183
+ rack-test (2.1.0)
184
+ rack (>= 1.3)
185
+ rackup (1.0.0)
186
+ rack (< 3)
187
+ webrick
188
+ rails (7.1.3)
189
+ actioncable (= 7.1.3)
190
+ actionmailbox (= 7.1.3)
191
+ actionmailer (= 7.1.3)
192
+ actionpack (= 7.1.3)
193
+ actiontext (= 7.1.3)
194
+ actionview (= 7.1.3)
195
+ activejob (= 7.1.3)
196
+ activemodel (= 7.1.3)
197
+ activerecord (= 7.1.3)
198
+ activestorage (= 7.1.3)
199
+ activesupport (= 7.1.3)
200
+ bundler (>= 1.15.0)
201
+ railties (= 7.1.3)
202
+ rails-dom-testing (2.2.0)
203
+ activesupport (>= 5.0.0)
204
+ minitest
205
+ nokogiri (>= 1.6)
206
+ rails-html-sanitizer (1.6.0)
207
+ loofah (~> 2.21)
208
+ nokogiri (~> 1.14)
209
+ railties (7.1.3)
210
+ actionpack (= 7.1.3)
211
+ activesupport (= 7.1.3)
212
+ irb
213
+ rackup (>= 1.0.0)
214
+ rake (>= 12.2)
215
+ thor (~> 1.0, >= 1.2.2)
216
+ zeitwerk (~> 2.6)
217
+ rainbow (2.2.2)
218
+ rake
219
+ rake (13.1.0)
220
+ rdoc (6.6.2)
221
+ psych (>= 4.0.0)
222
+ regexp_parser (2.9.0)
223
+ reline (0.4.2)
224
+ io-console (~> 0.5)
225
+ request_store (1.5.1)
226
+ rack (>= 1.4)
227
+ rexml (3.2.6)
228
+ rspec (3.12.0)
229
+ rspec-core (~> 3.12.0)
230
+ rspec-expectations (~> 3.12.0)
231
+ rspec-mocks (~> 3.12.0)
232
+ rspec-core (3.12.2)
233
+ rspec-support (~> 3.12.0)
234
+ rspec-expectations (3.12.3)
235
+ diff-lcs (>= 1.2.0, < 2.0)
236
+ rspec-support (~> 3.12.0)
237
+ rspec-mocks (3.12.6)
238
+ diff-lcs (>= 1.2.0, < 2.0)
239
+ rspec-support (~> 3.12.0)
240
+ rspec-rails (5.1.2)
241
+ actionpack (>= 5.2)
242
+ activesupport (>= 5.2)
243
+ railties (>= 5.2)
244
+ rspec-core (~> 3.10)
245
+ rspec-expectations (~> 3.10)
246
+ rspec-mocks (~> 3.10)
247
+ rspec-support (~> 3.10)
248
+ rspec-support (3.12.1)
249
+ rubocop (1.52.1)
250
+ json (~> 2.3)
251
+ parallel (~> 1.10)
252
+ parser (>= 3.2.2.3)
253
+ rainbow (>= 2.2.2, < 4.0)
254
+ regexp_parser (>= 1.8, < 3.0)
255
+ rexml (>= 3.2.5, < 4.0)
256
+ rubocop-ast (>= 1.28.0, < 2.0)
257
+ ruby-progressbar (~> 1.7)
258
+ unicode-display_width (>= 2.4.0, < 3.0)
259
+ rubocop-ast (1.30.0)
260
+ parser (>= 3.2.1.0)
261
+ rubocop-capybara (2.20.0)
262
+ rubocop (~> 1.41)
263
+ rubocop-factory_bot (2.25.0)
264
+ rubocop (~> 1.33)
265
+ rubocop-performance (1.20.1)
266
+ rubocop (>= 1.48.1, < 2.0)
267
+ rubocop-ast (>= 1.30.0, < 2.0)
268
+ rubocop-rails (2.23.1)
269
+ activesupport (>= 4.2.0)
270
+ rack (>= 1.1)
271
+ rubocop (>= 1.33.0, < 2.0)
272
+ rubocop-ast (>= 1.30.0, < 2.0)
273
+ rubocop-rake (0.6.0)
274
+ rubocop (~> 1.0)
275
+ rubocop-rspec (2.26.1)
276
+ rubocop (~> 1.40)
277
+ rubocop-capybara (~> 2.17)
278
+ rubocop-factory_bot (~> 2.22)
279
+ ruby-progressbar (1.13.0)
280
+ ruby2_keywords (0.0.5)
281
+ rubyzip (2.3.2)
282
+ simplecov (0.15.1)
283
+ docile (~> 1.1.0)
284
+ json (>= 1.8, < 3)
285
+ simplecov-html (~> 0.10.0)
286
+ simplecov-html (0.10.2)
287
+ sqlite3 (1.4.4)
288
+ stringio (3.1.0)
289
+ test-unit (3.1.5)
290
+ power_assert
291
+ thor (1.3.0)
292
+ timeout (0.4.1)
293
+ tomlrb (2.0.3)
294
+ tzinfo (2.0.6)
295
+ concurrent-ruby (~> 1.0)
296
+ unicode-display_width (2.5.0)
297
+ webrick (1.8.1)
298
+ websocket-driver (0.7.6)
299
+ websocket-extensions (>= 0.1.0)
300
+ websocket-extensions (0.1.5)
301
+ with_env (1.1.0)
302
+ xml-simple (1.1.9)
303
+ rexml
304
+ yard (0.9.21)
305
+ zeitwerk (2.6.12)
306
+
307
+ PLATFORMS
308
+ arm64-darwin-22
309
+ x86_64-linux
310
+
311
+ DEPENDENCIES
312
+ appraisal (~> 2.4.1)
313
+ bundler (~> 2.1)
314
+ combustion (~> 1.3)
315
+ license_finder (>= 7.0)
316
+ lumberaxe!
317
+ nokogiri (< 1.16)
318
+ parser (>= 2.5, != 2.5.1.1)
319
+ pry (>= 0.14.2)
320
+ pry-byebug (= 3.10.1)
321
+ rails (>= 6.0.6.1, < 7.2)
322
+ rainbow (= 2.2.2)
323
+ rake (~> 13.0)
324
+ rspec (~> 3.0)
325
+ rspec-rails (~> 5.1.2)
326
+ rubocop-powerhome!
327
+ simplecov (= 0.15.1)
328
+ sqlite3 (~> 1.4.2)
329
+ test-unit (= 3.1.5)
330
+ yard (= 0.9.21)
331
+
332
+ BUNDLED WITH
333
+ 2.4.10
@@ -1,3 +1,9 @@
1
1
  ---
2
2
  - - :inherit_from
3
3
  - https://raw.githubusercontent.com/powerhome/oss-guide/master/license_rules.yml
4
+ - - :permit
5
+ - MIT AND (BSD-2-Clause OR GPL-2.0-or-later)
6
+ - :who:
7
+ :why:
8
+ :versions: []
9
+ :when: 2024-01-03 17:19:19.136064000 Z
data/docs/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.5] - 2024-1-17
4
+
5
+ - Add support to rails 7.1
6
+
7
+ ## [0.1.4] - 2023-1-1
8
+
9
+ - Add LoggerSilence module to fix sprockets-rails compatibility
10
+
3
11
  ## [0.1.3] - 2022-10-18
4
12
 
5
13
  - Fix tag keys on log formatter
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "nokogiri", "< 1.16"
6
+ gem "rubocop-powerhome", path: "../../rubocop-powerhome"
7
+ gem "rails", "6.0.6.1"
8
+
9
+ gemspec path: "../"