normalize_line_endings 0.0.6 → 0.0.7

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: f83aa9f6a6db5548c7519f2a0c487baba5d25d01780f7cb3613e1d2cc8cc98c0
4
- data.tar.gz: 21e9f62e9e33ac816abe3af924aa6a800a09b17c0a91d3007318fc097a5b6bc6
3
+ metadata.gz: d2f549b41da6aad9c5134d09821924e9f1de511ddc65d47af3fec36bcfc46ad3
4
+ data.tar.gz: 923d6fbef37ef27e874ed258029d926b7713ce2ba96566dfeae247e2880c6c86
5
5
  SHA512:
6
- metadata.gz: 63e2568d2f848575518937953dca2d5cf001d0dfb65810c1ef9233957ec61c2b4f5b984c62edd1f22b7b22345ccdac5ae09088723fc70e5d2bac107e04a879c6
7
- data.tar.gz: 528815bd00cb99956e1d6743b62eb7ea8c5c91ebcd980b78bab90087e10060611247bc8af4bf77dc1f30b1f092bc49b1c780efa428e36b697909cd697517a5a4
6
+ metadata.gz: cce87c25f164c015ef766c06eb3a560cc1e7b84c290b25377b39db2e86cb8622fd26451e0ce6246a22cb25f6bc7437b1a8ba0beeea2446a99d5047cdf45de39c
7
+ data.tar.gz: 5e39bb84f5f822b63e59cbf6af666cbc29aabfa3c2d8486e58e6a8fab454ad8cd254637b8250412b274789d20b0ce1e33961278e8bfb41c27073310f8bc72105
data/.rubocop.yml CHANGED
@@ -5,7 +5,10 @@ require:
5
5
  AllCops:
6
6
  NewCops: enable
7
7
  SuggestExtensions: false
8
- TargetRubyVersion: 3.0
8
+ TargetRubyVersion: 3.1
9
+
10
+ Gemspec/DevelopmentDependencies:
11
+ EnforcedStyle: gemspec
9
12
 
10
13
  Layout/EmptyLinesAroundAttributeAccessor:
11
14
  Enabled: true
@@ -13,6 +16,7 @@ Layout/EmptyLinesAroundAttributeAccessor:
13
16
  Layout/SpaceAroundMethodCallOperator:
14
17
  Enabled: false
15
18
 
19
+
16
20
  Lint/DeprecatedOpenSSLConstant:
17
21
  Enabled: true
18
22
 
@@ -67,6 +71,11 @@ Style/ExponentialNotation:
67
71
  Style/HashEachMethods:
68
72
  Enabled: false
69
73
 
74
+ Style/HashSyntax:
75
+ Enabled: true
76
+ EnforcedShorthandSyntax: never
77
+ EnforcedStyle: ruby19
78
+
70
79
  Style/HashTransformKeys:
71
80
  Enabled: false
72
81
 
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.5
1
+ 3.2.4
data/Appraisals CHANGED
@@ -1,7 +1,7 @@
1
- appraise "rails-6-1" do
2
- gem "rails", "6.1.7.3"
1
+ appraise "rails-7" do
2
+ gem "rails", "7.0.8.4"
3
3
  end
4
4
 
5
- appraise "rails-7" do
6
- gem "rails", "7.0.4.3"
5
+ appraise "rails-7-1" do
6
+ gem "rails", "7.1.3.4"
7
7
  end
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## master (unreleased)
4
4
 
5
+ ## 0.0.7 (2024-08-16)
6
+
7
+ * Support Rails 7.1 and Ruby 3.1
8
+ * Drop support for Rails 6.1 and Ruby 3.0
9
+
5
10
  ## 0.0.6 (2023-03-14)
6
11
 
7
12
  * Support Rails 7.0
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "7.0.4.3"
5
+ gem "rails", "7.0.8.4"
6
6
 
7
7
  gemspec path: "../"
@@ -1,212 +1,215 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- normalize_line_endings (0.0.6)
5
- activesupport (>= 6.1, < 7.1)
4
+ normalize_line_endings (0.0.7)
5
+ activesupport (>= 7.0, < 7.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (7.0.4.3)
11
- actionpack (= 7.0.4.3)
12
- activesupport (= 7.0.4.3)
10
+ actioncable (7.0.8.4)
11
+ actionpack (= 7.0.8.4)
12
+ activesupport (= 7.0.8.4)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (>= 0.6.1)
15
- actionmailbox (7.0.4.3)
16
- actionpack (= 7.0.4.3)
17
- activejob (= 7.0.4.3)
18
- activerecord (= 7.0.4.3)
19
- activestorage (= 7.0.4.3)
20
- activesupport (= 7.0.4.3)
15
+ actionmailbox (7.0.8.4)
16
+ actionpack (= 7.0.8.4)
17
+ activejob (= 7.0.8.4)
18
+ activerecord (= 7.0.8.4)
19
+ activestorage (= 7.0.8.4)
20
+ activesupport (= 7.0.8.4)
21
21
  mail (>= 2.7.1)
22
22
  net-imap
23
23
  net-pop
24
24
  net-smtp
25
- actionmailer (7.0.4.3)
26
- actionpack (= 7.0.4.3)
27
- actionview (= 7.0.4.3)
28
- activejob (= 7.0.4.3)
29
- activesupport (= 7.0.4.3)
25
+ actionmailer (7.0.8.4)
26
+ actionpack (= 7.0.8.4)
27
+ actionview (= 7.0.8.4)
28
+ activejob (= 7.0.8.4)
29
+ activesupport (= 7.0.8.4)
30
30
  mail (~> 2.5, >= 2.5.4)
31
31
  net-imap
32
32
  net-pop
33
33
  net-smtp
34
34
  rails-dom-testing (~> 2.0)
35
- actionpack (7.0.4.3)
36
- actionview (= 7.0.4.3)
37
- activesupport (= 7.0.4.3)
38
- rack (~> 2.0, >= 2.2.0)
35
+ actionpack (7.0.8.4)
36
+ actionview (= 7.0.8.4)
37
+ activesupport (= 7.0.8.4)
38
+ rack (~> 2.0, >= 2.2.4)
39
39
  rack-test (>= 0.6.3)
40
40
  rails-dom-testing (~> 2.0)
41
41
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
- actiontext (7.0.4.3)
43
- actionpack (= 7.0.4.3)
44
- activerecord (= 7.0.4.3)
45
- activestorage (= 7.0.4.3)
46
- activesupport (= 7.0.4.3)
42
+ actiontext (7.0.8.4)
43
+ actionpack (= 7.0.8.4)
44
+ activerecord (= 7.0.8.4)
45
+ activestorage (= 7.0.8.4)
46
+ activesupport (= 7.0.8.4)
47
47
  globalid (>= 0.6.0)
48
48
  nokogiri (>= 1.8.5)
49
- actionview (7.0.4.3)
50
- activesupport (= 7.0.4.3)
49
+ actionview (7.0.8.4)
50
+ activesupport (= 7.0.8.4)
51
51
  builder (~> 3.1)
52
52
  erubi (~> 1.4)
53
53
  rails-dom-testing (~> 2.0)
54
54
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
55
- activejob (7.0.4.3)
56
- activesupport (= 7.0.4.3)
55
+ activejob (7.0.8.4)
56
+ activesupport (= 7.0.8.4)
57
57
  globalid (>= 0.3.6)
58
- activemodel (7.0.4.3)
59
- activesupport (= 7.0.4.3)
60
- activerecord (7.0.4.3)
61
- activemodel (= 7.0.4.3)
62
- activesupport (= 7.0.4.3)
63
- activestorage (7.0.4.3)
64
- actionpack (= 7.0.4.3)
65
- activejob (= 7.0.4.3)
66
- activerecord (= 7.0.4.3)
67
- activesupport (= 7.0.4.3)
58
+ activemodel (7.0.8.4)
59
+ activesupport (= 7.0.8.4)
60
+ activerecord (7.0.8.4)
61
+ activemodel (= 7.0.8.4)
62
+ activesupport (= 7.0.8.4)
63
+ activestorage (7.0.8.4)
64
+ actionpack (= 7.0.8.4)
65
+ activejob (= 7.0.8.4)
66
+ activerecord (= 7.0.8.4)
67
+ activesupport (= 7.0.8.4)
68
68
  marcel (~> 1.0)
69
69
  mini_mime (>= 1.1.0)
70
- activesupport (7.0.4.3)
70
+ activesupport (7.0.8.4)
71
71
  concurrent-ruby (~> 1.0, >= 1.0.2)
72
72
  i18n (>= 1.6, < 2)
73
73
  minitest (>= 5.1)
74
74
  tzinfo (~> 2.0)
75
- appraisal (2.4.1)
75
+ appraisal (2.5.0)
76
76
  bundler
77
77
  rake
78
78
  thor (>= 0.14.0)
79
79
  ast (2.4.2)
80
- builder (3.2.4)
81
- concurrent-ruby (1.2.2)
80
+ builder (3.3.0)
81
+ concurrent-ruby (1.3.4)
82
82
  crass (1.0.6)
83
- date (3.3.3)
84
- diff-lcs (1.5.0)
85
- erubi (1.12.0)
86
- globalid (1.1.0)
87
- activesupport (>= 5.0)
88
- i18n (1.12.0)
83
+ date (3.3.4)
84
+ diff-lcs (1.5.1)
85
+ erubi (1.13.0)
86
+ globalid (1.2.1)
87
+ activesupport (>= 6.1)
88
+ i18n (1.14.5)
89
89
  concurrent-ruby (~> 1.0)
90
- json (2.6.3)
91
- loofah (2.19.1)
90
+ json (2.7.2)
91
+ language_server-protocol (3.17.0.3)
92
+ loofah (2.22.0)
92
93
  crass (~> 1.0.2)
93
- nokogiri (>= 1.5.9)
94
+ nokogiri (>= 1.12.0)
94
95
  mail (2.8.1)
95
96
  mini_mime (>= 0.1.1)
96
97
  net-imap
97
98
  net-pop
98
99
  net-smtp
99
- marcel (1.0.2)
100
- method_source (1.0.0)
101
- mini_mime (1.1.2)
102
- minitest (5.18.0)
103
- net-imap (0.3.4)
100
+ marcel (1.0.4)
101
+ method_source (1.1.0)
102
+ mini_mime (1.1.5)
103
+ minitest (5.25.0)
104
+ net-imap (0.4.14)
104
105
  date
105
106
  net-protocol
106
107
  net-pop (0.1.2)
107
108
  net-protocol
108
- net-protocol (0.2.1)
109
+ net-protocol (0.2.2)
109
110
  timeout
110
- net-smtp (0.3.3)
111
+ net-smtp (0.5.0)
111
112
  net-protocol
112
- nio4r (2.5.8)
113
- nokogiri (1.14.2-x86_64-darwin)
113
+ nio4r (2.7.3)
114
+ nokogiri (1.16.7-arm64-darwin)
114
115
  racc (~> 1.4)
115
- parallel (1.22.1)
116
- parser (3.2.1.1)
116
+ parallel (1.26.2)
117
+ parser (3.3.4.2)
117
118
  ast (~> 2.4.1)
118
- racc (1.6.2)
119
- rack (2.2.6.4)
120
- rack-test (2.0.2)
119
+ racc
120
+ racc (1.8.1)
121
+ rack (2.2.9)
122
+ rack-test (2.1.0)
121
123
  rack (>= 1.3)
122
- rails (7.0.4.3)
123
- actioncable (= 7.0.4.3)
124
- actionmailbox (= 7.0.4.3)
125
- actionmailer (= 7.0.4.3)
126
- actionpack (= 7.0.4.3)
127
- actiontext (= 7.0.4.3)
128
- actionview (= 7.0.4.3)
129
- activejob (= 7.0.4.3)
130
- activemodel (= 7.0.4.3)
131
- activerecord (= 7.0.4.3)
132
- activestorage (= 7.0.4.3)
133
- activesupport (= 7.0.4.3)
124
+ rails (7.0.8.4)
125
+ actioncable (= 7.0.8.4)
126
+ actionmailbox (= 7.0.8.4)
127
+ actionmailer (= 7.0.8.4)
128
+ actionpack (= 7.0.8.4)
129
+ actiontext (= 7.0.8.4)
130
+ actionview (= 7.0.8.4)
131
+ activejob (= 7.0.8.4)
132
+ activemodel (= 7.0.8.4)
133
+ activerecord (= 7.0.8.4)
134
+ activestorage (= 7.0.8.4)
135
+ activesupport (= 7.0.8.4)
134
136
  bundler (>= 1.15.0)
135
- railties (= 7.0.4.3)
136
- rails-dom-testing (2.0.3)
137
- activesupport (>= 4.2.0)
137
+ railties (= 7.0.8.4)
138
+ rails-dom-testing (2.2.0)
139
+ activesupport (>= 5.0.0)
140
+ minitest
138
141
  nokogiri (>= 1.6)
139
- rails-html-sanitizer (1.5.0)
140
- loofah (~> 2.19, >= 2.19.1)
141
- railties (7.0.4.3)
142
- actionpack (= 7.0.4.3)
143
- activesupport (= 7.0.4.3)
142
+ rails-html-sanitizer (1.6.0)
143
+ loofah (~> 2.21)
144
+ nokogiri (~> 1.14)
145
+ railties (7.0.8.4)
146
+ actionpack (= 7.0.8.4)
147
+ activesupport (= 7.0.8.4)
144
148
  method_source
145
149
  rake (>= 12.2)
146
150
  thor (~> 1.0)
147
151
  zeitwerk (~> 2.5)
148
152
  rainbow (3.1.1)
149
- rake (13.0.1)
150
- regexp_parser (2.7.0)
151
- rexml (3.2.5)
152
- rspec (3.12.0)
153
- rspec-core (~> 3.12.0)
154
- rspec-expectations (~> 3.12.0)
155
- rspec-mocks (~> 3.12.0)
156
- rspec-core (3.12.1)
157
- rspec-support (~> 3.12.0)
158
- rspec-expectations (3.12.2)
153
+ rake (13.2.1)
154
+ regexp_parser (2.9.2)
155
+ rexml (3.3.5)
156
+ strscan
157
+ rspec (3.13.0)
158
+ rspec-core (~> 3.13.0)
159
+ rspec-expectations (~> 3.13.0)
160
+ rspec-mocks (~> 3.13.0)
161
+ rspec-core (3.13.0)
162
+ rspec-support (~> 3.13.0)
163
+ rspec-expectations (3.13.1)
159
164
  diff-lcs (>= 1.2.0, < 2.0)
160
- rspec-support (~> 3.12.0)
161
- rspec-mocks (3.12.4)
165
+ rspec-support (~> 3.13.0)
166
+ rspec-mocks (3.13.1)
162
167
  diff-lcs (>= 1.2.0, < 2.0)
163
- rspec-support (~> 3.12.0)
164
- rspec-support (3.12.0)
165
- rubocop (1.48.1)
168
+ rspec-support (~> 3.13.0)
169
+ rspec-support (3.13.1)
170
+ rubocop (1.65.1)
166
171
  json (~> 2.3)
172
+ language_server-protocol (>= 3.17.0)
167
173
  parallel (~> 1.10)
168
- parser (>= 3.2.0.0)
174
+ parser (>= 3.3.0.2)
169
175
  rainbow (>= 2.2.2, < 4.0)
170
- regexp_parser (>= 1.8, < 3.0)
176
+ regexp_parser (>= 2.4, < 3.0)
171
177
  rexml (>= 3.2.5, < 4.0)
172
- rubocop-ast (>= 1.26.0, < 2.0)
178
+ rubocop-ast (>= 1.31.1, < 2.0)
173
179
  ruby-progressbar (~> 1.7)
174
180
  unicode-display_width (>= 2.4.0, < 3.0)
175
- rubocop-ast (1.27.0)
176
- parser (>= 3.2.1.0)
177
- rubocop-capybara (2.17.1)
178
- rubocop (~> 1.41)
179
- rubocop-performance (1.16.0)
180
- rubocop (>= 1.7.0, < 2.0)
181
- rubocop-ast (>= 0.4.0)
182
- rubocop-rspec (2.19.0)
183
- rubocop (~> 1.33)
184
- rubocop-capybara (~> 2.17)
181
+ rubocop-ast (1.32.0)
182
+ parser (>= 3.3.1.0)
183
+ rubocop-performance (1.21.1)
184
+ rubocop (>= 1.48.1, < 2.0)
185
+ rubocop-ast (>= 1.31.1, < 2.0)
186
+ rubocop-rspec (3.0.4)
187
+ rubocop (~> 1.61)
185
188
  ruby-progressbar (1.13.0)
186
- thor (1.2.1)
187
- timeout (0.3.2)
189
+ strscan (3.1.0)
190
+ thor (1.3.1)
191
+ timeout (0.4.1)
188
192
  tzinfo (2.0.6)
189
193
  concurrent-ruby (~> 1.0)
190
- unicode-display_width (2.4.2)
191
- websocket-driver (0.7.5)
194
+ unicode-display_width (2.5.0)
195
+ websocket-driver (0.7.6)
192
196
  websocket-extensions (>= 0.1.0)
193
197
  websocket-extensions (0.1.5)
194
- zeitwerk (2.6.7)
198
+ zeitwerk (2.6.17)
195
199
 
196
200
  PLATFORMS
197
- ruby
201
+ arm64-darwin
198
202
 
199
203
  DEPENDENCIES
200
- activemodel (>= 6.1, < 7.1)
201
- appraisal (~> 2.4)
202
- bundler (= 2.2.10)
204
+ activemodel (>= 7.0, < 7.2)
205
+ appraisal (~> 2.5)
203
206
  normalize_line_endings!
204
- rails (= 7.0.4.3)
205
- rake (~> 13.0)
206
- rspec (~> 3.12)
207
- rubocop (~> 1.48)
208
- rubocop-performance (~> 1.16)
209
- rubocop-rspec (~> 2.19)
207
+ rails (= 7.0.8.4)
208
+ rake (~> 13.1)
209
+ rspec (~> 3.13)
210
+ rubocop (~> 1.65)
211
+ rubocop-performance (~> 1.21)
212
+ rubocop-rspec (~> 3.0)
210
213
 
211
214
  BUNDLED WITH
212
- 2.2.10
215
+ 2.5.17
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "6.1.7.3"
5
+ gem "rails", "7.1.3.4"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,246 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ normalize_line_endings (0.0.7)
5
+ activesupport (>= 7.0, < 7.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
+ ast (2.4.2)
89
+ base64 (0.2.0)
90
+ bigdecimal (3.1.8)
91
+ builder (3.3.0)
92
+ concurrent-ruby (1.3.4)
93
+ connection_pool (2.4.1)
94
+ crass (1.0.6)
95
+ date (3.3.4)
96
+ diff-lcs (1.5.1)
97
+ drb (2.2.1)
98
+ erubi (1.13.0)
99
+ globalid (1.2.1)
100
+ activesupport (>= 6.1)
101
+ i18n (1.14.5)
102
+ concurrent-ruby (~> 1.0)
103
+ io-console (0.7.2)
104
+ irb (1.14.0)
105
+ rdoc (>= 4.0.0)
106
+ reline (>= 0.4.2)
107
+ json (2.7.2)
108
+ language_server-protocol (3.17.0.3)
109
+ loofah (2.22.0)
110
+ crass (~> 1.0.2)
111
+ nokogiri (>= 1.12.0)
112
+ mail (2.8.1)
113
+ mini_mime (>= 0.1.1)
114
+ net-imap
115
+ net-pop
116
+ net-smtp
117
+ marcel (1.0.4)
118
+ mini_mime (1.1.5)
119
+ minitest (5.25.0)
120
+ mutex_m (0.2.0)
121
+ net-imap (0.4.14)
122
+ date
123
+ net-protocol
124
+ net-pop (0.1.2)
125
+ net-protocol
126
+ net-protocol (0.2.2)
127
+ timeout
128
+ net-smtp (0.5.0)
129
+ net-protocol
130
+ nio4r (2.7.3)
131
+ nokogiri (1.16.7-arm64-darwin)
132
+ racc (~> 1.4)
133
+ parallel (1.26.2)
134
+ parser (3.3.4.2)
135
+ ast (~> 2.4.1)
136
+ racc
137
+ psych (5.1.2)
138
+ stringio
139
+ racc (1.8.1)
140
+ rack (3.1.7)
141
+ rack-session (2.0.0)
142
+ rack (>= 3.0.0)
143
+ rack-test (2.1.0)
144
+ rack (>= 1.3)
145
+ rackup (2.1.0)
146
+ rack (>= 3)
147
+ webrick (~> 1.8)
148
+ rails (7.1.3.4)
149
+ actioncable (= 7.1.3.4)
150
+ actionmailbox (= 7.1.3.4)
151
+ actionmailer (= 7.1.3.4)
152
+ actionpack (= 7.1.3.4)
153
+ actiontext (= 7.1.3.4)
154
+ actionview (= 7.1.3.4)
155
+ activejob (= 7.1.3.4)
156
+ activemodel (= 7.1.3.4)
157
+ activerecord (= 7.1.3.4)
158
+ activestorage (= 7.1.3.4)
159
+ activesupport (= 7.1.3.4)
160
+ bundler (>= 1.15.0)
161
+ railties (= 7.1.3.4)
162
+ rails-dom-testing (2.2.0)
163
+ activesupport (>= 5.0.0)
164
+ minitest
165
+ nokogiri (>= 1.6)
166
+ rails-html-sanitizer (1.6.0)
167
+ loofah (~> 2.21)
168
+ nokogiri (~> 1.14)
169
+ railties (7.1.3.4)
170
+ actionpack (= 7.1.3.4)
171
+ activesupport (= 7.1.3.4)
172
+ irb
173
+ rackup (>= 1.0.0)
174
+ rake (>= 12.2)
175
+ thor (~> 1.0, >= 1.2.2)
176
+ zeitwerk (~> 2.6)
177
+ rainbow (3.1.1)
178
+ rake (13.2.1)
179
+ rdoc (6.7.0)
180
+ psych (>= 4.0.0)
181
+ regexp_parser (2.9.2)
182
+ reline (0.5.9)
183
+ io-console (~> 0.5)
184
+ rexml (3.3.5)
185
+ strscan
186
+ rspec (3.13.0)
187
+ rspec-core (~> 3.13.0)
188
+ rspec-expectations (~> 3.13.0)
189
+ rspec-mocks (~> 3.13.0)
190
+ rspec-core (3.13.0)
191
+ rspec-support (~> 3.13.0)
192
+ rspec-expectations (3.13.1)
193
+ diff-lcs (>= 1.2.0, < 2.0)
194
+ rspec-support (~> 3.13.0)
195
+ rspec-mocks (3.13.1)
196
+ diff-lcs (>= 1.2.0, < 2.0)
197
+ rspec-support (~> 3.13.0)
198
+ rspec-support (3.13.1)
199
+ rubocop (1.65.1)
200
+ json (~> 2.3)
201
+ language_server-protocol (>= 3.17.0)
202
+ parallel (~> 1.10)
203
+ parser (>= 3.3.0.2)
204
+ rainbow (>= 2.2.2, < 4.0)
205
+ regexp_parser (>= 2.4, < 3.0)
206
+ rexml (>= 3.2.5, < 4.0)
207
+ rubocop-ast (>= 1.31.1, < 2.0)
208
+ ruby-progressbar (~> 1.7)
209
+ unicode-display_width (>= 2.4.0, < 3.0)
210
+ rubocop-ast (1.32.0)
211
+ parser (>= 3.3.1.0)
212
+ rubocop-performance (1.21.1)
213
+ rubocop (>= 1.48.1, < 2.0)
214
+ rubocop-ast (>= 1.31.1, < 2.0)
215
+ rubocop-rspec (3.0.4)
216
+ rubocop (~> 1.61)
217
+ ruby-progressbar (1.13.0)
218
+ stringio (3.1.1)
219
+ strscan (3.1.0)
220
+ thor (1.3.1)
221
+ timeout (0.4.1)
222
+ tzinfo (2.0.6)
223
+ concurrent-ruby (~> 1.0)
224
+ unicode-display_width (2.5.0)
225
+ webrick (1.8.1)
226
+ websocket-driver (0.7.6)
227
+ websocket-extensions (>= 0.1.0)
228
+ websocket-extensions (0.1.5)
229
+ zeitwerk (2.6.17)
230
+
231
+ PLATFORMS
232
+ arm64-darwin
233
+
234
+ DEPENDENCIES
235
+ activemodel (>= 7.0, < 7.2)
236
+ appraisal (~> 2.5)
237
+ normalize_line_endings!
238
+ rails (= 7.1.3.4)
239
+ rake (~> 13.1)
240
+ rspec (~> 3.13)
241
+ rubocop (~> 1.65)
242
+ rubocop-performance (~> 1.21)
243
+ rubocop-rspec (~> 3.0)
244
+
245
+ BUNDLED WITH
246
+ 2.5.17
@@ -1,3 +1,3 @@
1
1
  module NormalizeLineEndings
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -19,7 +19,7 @@ module NormalizeLineEndings
19
19
 
20
20
  def normalize_line_endings
21
21
  attrs_for_normalized_line_endings.each do |attr, value|
22
- send("#{attr}=", value.gsub(/\r\n/, "\n")) if value.respond_to?(:gsub)
22
+ send(:"#{attr}=", value.gsub("\r\n", "\n")) if value.respond_to?(:gsub)
23
23
  end
24
24
  end
25
25
 
@@ -15,7 +15,6 @@ Gem::Specification.new do |spec|
15
15
  spec.metadata = {
16
16
  "homepage_uri" => "https://github.com/nulogy/normalize_line_endings",
17
17
  "changelog_uri" => "https://github.com/nulogy/normalize_line_endings/blob/master/CHANGELOG.md",
18
- "source_code_uri" => "https://github.com/nulogy/normalize_line_endings",
19
18
  "bug_tracker_uri" => "https://github.com/nulogy/normalize_line_endings/issues",
20
19
  "rubygems_mfa_required" => "true"
21
20
  }
@@ -28,20 +27,15 @@ Gem::Specification.new do |spec|
28
27
  spec.bindir = "exe"
29
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
29
  spec.require_paths = ["lib"]
31
- spec.required_ruby_version = ">= 3.0"
30
+ spec.required_ruby_version = ">= 3.1"
32
31
 
33
- spec.add_runtime_dependency "activesupport", ">= 6.1", "< 7.1"
32
+ spec.add_dependency "activesupport", ">= 7.0", "< 7.2"
34
33
 
35
- spec.add_development_dependency "activemodel", ">= 6.1", "< 7.1"
36
- spec.add_development_dependency "appraisal", "~> 2.4"
37
-
38
- # Explicitly version bundler to avoid breaking the appraisal gem.
39
- # Remove when a new version of the appraisal gem is released.
40
- spec.add_development_dependency "bundler", "2.2.10"
41
-
42
- spec.add_development_dependency "rake", "~> 13.0"
43
- spec.add_development_dependency "rspec", "~> 3.12"
44
- spec.add_development_dependency "rubocop", "~> 1.48"
45
- spec.add_development_dependency "rubocop-performance", "~> 1.16"
46
- spec.add_development_dependency "rubocop-rspec", "~> 2.19"
34
+ spec.add_development_dependency "activemodel", ">= 7.0", "< 7.2"
35
+ spec.add_development_dependency "appraisal", "~> 2.5"
36
+ spec.add_development_dependency "rake", "~> 13.1"
37
+ spec.add_development_dependency "rspec", "~> 3.13"
38
+ spec.add_development_dependency "rubocop", "~> 1.65"
39
+ spec.add_development_dependency "rubocop-performance", "~> 1.21"
40
+ spec.add_development_dependency "rubocop-rspec", "~> 3.0"
47
41
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: normalize_line_endings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Briggs
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-14 00:00:00.000000000 Z
12
+ date: 2024-08-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -17,138 +17,124 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: '6.1'
20
+ version: '7.0'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '7.1'
23
+ version: '7.2'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
28
  - - ">="
29
29
  - !ruby/object:Gem::Version
30
- version: '6.1'
30
+ version: '7.0'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '7.1'
33
+ version: '7.2'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: activemodel
36
36
  requirement: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '6.1'
40
+ version: '7.0'
41
41
  - - "<"
42
42
  - !ruby/object:Gem::Version
43
- version: '7.1'
43
+ version: '7.2'
44
44
  type: :development
45
45
  prerelease: false
46
46
  version_requirements: !ruby/object:Gem::Requirement
47
47
  requirements:
48
48
  - - ">="
49
49
  - !ruby/object:Gem::Version
50
- version: '6.1'
50
+ version: '7.0'
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: '7.1'
53
+ version: '7.2'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: appraisal
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '2.4'
60
+ version: '2.5'
61
61
  type: :development
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '2.4'
68
- - !ruby/object:Gem::Dependency
69
- name: bundler
70
- requirement: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - '='
73
- - !ruby/object:Gem::Version
74
- version: 2.2.10
75
- type: :development
76
- prerelease: false
77
- version_requirements: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - '='
80
- - !ruby/object:Gem::Version
81
- version: 2.2.10
67
+ version: '2.5'
82
68
  - !ruby/object:Gem::Dependency
83
69
  name: rake
84
70
  requirement: !ruby/object:Gem::Requirement
85
71
  requirements:
86
72
  - - "~>"
87
73
  - !ruby/object:Gem::Version
88
- version: '13.0'
74
+ version: '13.1'
89
75
  type: :development
90
76
  prerelease: false
91
77
  version_requirements: !ruby/object:Gem::Requirement
92
78
  requirements:
93
79
  - - "~>"
94
80
  - !ruby/object:Gem::Version
95
- version: '13.0'
81
+ version: '13.1'
96
82
  - !ruby/object:Gem::Dependency
97
83
  name: rspec
98
84
  requirement: !ruby/object:Gem::Requirement
99
85
  requirements:
100
86
  - - "~>"
101
87
  - !ruby/object:Gem::Version
102
- version: '3.12'
88
+ version: '3.13'
103
89
  type: :development
104
90
  prerelease: false
105
91
  version_requirements: !ruby/object:Gem::Requirement
106
92
  requirements:
107
93
  - - "~>"
108
94
  - !ruby/object:Gem::Version
109
- version: '3.12'
95
+ version: '3.13'
110
96
  - !ruby/object:Gem::Dependency
111
97
  name: rubocop
112
98
  requirement: !ruby/object:Gem::Requirement
113
99
  requirements:
114
100
  - - "~>"
115
101
  - !ruby/object:Gem::Version
116
- version: '1.48'
102
+ version: '1.65'
117
103
  type: :development
118
104
  prerelease: false
119
105
  version_requirements: !ruby/object:Gem::Requirement
120
106
  requirements:
121
107
  - - "~>"
122
108
  - !ruby/object:Gem::Version
123
- version: '1.48'
109
+ version: '1.65'
124
110
  - !ruby/object:Gem::Dependency
125
111
  name: rubocop-performance
126
112
  requirement: !ruby/object:Gem::Requirement
127
113
  requirements:
128
114
  - - "~>"
129
115
  - !ruby/object:Gem::Version
130
- version: '1.16'
116
+ version: '1.21'
131
117
  type: :development
132
118
  prerelease: false
133
119
  version_requirements: !ruby/object:Gem::Requirement
134
120
  requirements:
135
121
  - - "~>"
136
122
  - !ruby/object:Gem::Version
137
- version: '1.16'
123
+ version: '1.21'
138
124
  - !ruby/object:Gem::Dependency
139
125
  name: rubocop-rspec
140
126
  requirement: !ruby/object:Gem::Requirement
141
127
  requirements:
142
128
  - - "~>"
143
129
  - !ruby/object:Gem::Version
144
- version: '2.19'
130
+ version: '3.0'
145
131
  type: :development
146
132
  prerelease: false
147
133
  version_requirements: !ruby/object:Gem::Requirement
148
134
  requirements:
149
135
  - - "~>"
150
136
  - !ruby/object:Gem::Version
151
- version: '2.19'
137
+ version: '3.0'
152
138
  description:
153
139
  email:
154
140
  - alistairm@nulogy.com
@@ -164,16 +150,15 @@ files:
164
150
  - CHANGELOG.md
165
151
  - CODE_OF_CONDUCT.md
166
152
  - Gemfile
167
- - Gemfile.lock
168
153
  - README.md
169
154
  - Rakefile
170
155
  - bin/console
171
156
  - bin/setup
172
157
  - gemfiles/.bundle/config
173
- - gemfiles/rails_6_1.gemfile
174
- - gemfiles/rails_6_1.gemfile.lock
175
158
  - gemfiles/rails_7.gemfile
176
159
  - gemfiles/rails_7.gemfile.lock
160
+ - gemfiles/rails_7_1.gemfile
161
+ - gemfiles/rails_7_1.gemfile.lock
177
162
  - lib/normalize_line_endings.rb
178
163
  - lib/normalize_line_endings/version.rb
179
164
  - normalize_line_endings.gemspec
@@ -183,7 +168,6 @@ licenses:
183
168
  metadata:
184
169
  homepage_uri: https://github.com/nulogy/normalize_line_endings
185
170
  changelog_uri: https://github.com/nulogy/normalize_line_endings/blob/master/CHANGELOG.md
186
- source_code_uri: https://github.com/nulogy/normalize_line_endings
187
171
  bug_tracker_uri: https://github.com/nulogy/normalize_line_endings/issues
188
172
  rubygems_mfa_required: 'true'
189
173
  post_install_message:
@@ -194,14 +178,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
194
178
  requirements:
195
179
  - - ">="
196
180
  - !ruby/object:Gem::Version
197
- version: '3.0'
181
+ version: '3.1'
198
182
  required_rubygems_version: !ruby/object:Gem::Requirement
199
183
  requirements:
200
184
  - - ">="
201
185
  - !ruby/object:Gem::Version
202
186
  version: '0'
203
187
  requirements: []
204
- rubygems_version: 3.4.8
188
+ rubygems_version: 3.5.17
205
189
  signing_key:
206
190
  specification_version: 4
207
191
  summary: Converts \r\n characters to \n for attributes on ActiveModel-like entities.
data/Gemfile.lock DELETED
@@ -1,89 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- normalize_line_endings (0.0.6)
5
- activesupport (>= 6.1, < 7.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (7.0.4.3)
11
- activesupport (= 7.0.4.3)
12
- activesupport (7.0.4.3)
13
- concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (>= 1.6, < 2)
15
- minitest (>= 5.1)
16
- tzinfo (~> 2.0)
17
- appraisal (2.4.1)
18
- bundler
19
- rake
20
- thor (>= 0.14.0)
21
- ast (2.4.2)
22
- concurrent-ruby (1.2.2)
23
- diff-lcs (1.5.0)
24
- i18n (1.12.0)
25
- concurrent-ruby (~> 1.0)
26
- json (2.6.3)
27
- minitest (5.18.0)
28
- parallel (1.22.1)
29
- parser (3.2.1.1)
30
- ast (~> 2.4.1)
31
- rainbow (3.1.1)
32
- rake (13.0.1)
33
- regexp_parser (2.7.0)
34
- rexml (3.2.5)
35
- rspec (3.12.0)
36
- rspec-core (~> 3.12.0)
37
- rspec-expectations (~> 3.12.0)
38
- rspec-mocks (~> 3.12.0)
39
- rspec-core (3.12.1)
40
- rspec-support (~> 3.12.0)
41
- rspec-expectations (3.12.2)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.12.0)
44
- rspec-mocks (3.12.4)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.12.0)
47
- rspec-support (3.12.0)
48
- rubocop (1.48.1)
49
- json (~> 2.3)
50
- parallel (~> 1.10)
51
- parser (>= 3.2.0.0)
52
- rainbow (>= 2.2.2, < 4.0)
53
- regexp_parser (>= 1.8, < 3.0)
54
- rexml (>= 3.2.5, < 4.0)
55
- rubocop-ast (>= 1.26.0, < 2.0)
56
- ruby-progressbar (~> 1.7)
57
- unicode-display_width (>= 2.4.0, < 3.0)
58
- rubocop-ast (1.27.0)
59
- parser (>= 3.2.1.0)
60
- rubocop-capybara (2.17.1)
61
- rubocop (~> 1.41)
62
- rubocop-performance (1.16.0)
63
- rubocop (>= 1.7.0, < 2.0)
64
- rubocop-ast (>= 0.4.0)
65
- rubocop-rspec (2.19.0)
66
- rubocop (~> 1.33)
67
- rubocop-capybara (~> 2.17)
68
- ruby-progressbar (1.13.0)
69
- thor (1.2.1)
70
- tzinfo (2.0.6)
71
- concurrent-ruby (~> 1.0)
72
- unicode-display_width (2.4.2)
73
-
74
- PLATFORMS
75
- ruby
76
-
77
- DEPENDENCIES
78
- activemodel (>= 6.1, < 7.1)
79
- appraisal (~> 2.4)
80
- bundler (= 2.2.10)
81
- normalize_line_endings!
82
- rake (~> 13.0)
83
- rspec (~> 3.12)
84
- rubocop (~> 1.48)
85
- rubocop-performance (~> 1.16)
86
- rubocop-rspec (~> 2.19)
87
-
88
- BUNDLED WITH
89
- 2.2.10
@@ -1,213 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- normalize_line_endings (0.0.6)
5
- activesupport (>= 6.1, < 7.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (6.1.7.3)
11
- actionpack (= 6.1.7.3)
12
- activesupport (= 6.1.7.3)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailbox (6.1.7.3)
16
- actionpack (= 6.1.7.3)
17
- activejob (= 6.1.7.3)
18
- activerecord (= 6.1.7.3)
19
- activestorage (= 6.1.7.3)
20
- activesupport (= 6.1.7.3)
21
- mail (>= 2.7.1)
22
- actionmailer (6.1.7.3)
23
- actionpack (= 6.1.7.3)
24
- actionview (= 6.1.7.3)
25
- activejob (= 6.1.7.3)
26
- activesupport (= 6.1.7.3)
27
- mail (~> 2.5, >= 2.5.4)
28
- rails-dom-testing (~> 2.0)
29
- actionpack (6.1.7.3)
30
- actionview (= 6.1.7.3)
31
- activesupport (= 6.1.7.3)
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.7.3)
37
- actionpack (= 6.1.7.3)
38
- activerecord (= 6.1.7.3)
39
- activestorage (= 6.1.7.3)
40
- activesupport (= 6.1.7.3)
41
- nokogiri (>= 1.8.5)
42
- actionview (6.1.7.3)
43
- activesupport (= 6.1.7.3)
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.7.3)
49
- activesupport (= 6.1.7.3)
50
- globalid (>= 0.3.6)
51
- activemodel (6.1.7.3)
52
- activesupport (= 6.1.7.3)
53
- activerecord (6.1.7.3)
54
- activemodel (= 6.1.7.3)
55
- activesupport (= 6.1.7.3)
56
- activestorage (6.1.7.3)
57
- actionpack (= 6.1.7.3)
58
- activejob (= 6.1.7.3)
59
- activerecord (= 6.1.7.3)
60
- activesupport (= 6.1.7.3)
61
- marcel (~> 1.0)
62
- mini_mime (>= 1.1.0)
63
- activesupport (6.1.7.3)
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.4.1)
70
- bundler
71
- rake
72
- thor (>= 0.14.0)
73
- ast (2.4.2)
74
- builder (3.2.4)
75
- concurrent-ruby (1.2.2)
76
- crass (1.0.6)
77
- date (3.3.3)
78
- diff-lcs (1.5.0)
79
- erubi (1.12.0)
80
- globalid (1.1.0)
81
- activesupport (>= 5.0)
82
- i18n (1.12.0)
83
- concurrent-ruby (~> 1.0)
84
- json (2.6.3)
85
- loofah (2.19.1)
86
- crass (~> 1.0.2)
87
- nokogiri (>= 1.5.9)
88
- mail (2.8.1)
89
- mini_mime (>= 0.1.1)
90
- net-imap
91
- net-pop
92
- net-smtp
93
- marcel (1.0.2)
94
- method_source (1.0.0)
95
- mini_mime (1.1.2)
96
- minitest (5.18.0)
97
- net-imap (0.3.4)
98
- date
99
- net-protocol
100
- net-pop (0.1.2)
101
- net-protocol
102
- net-protocol (0.2.1)
103
- timeout
104
- net-smtp (0.3.3)
105
- net-protocol
106
- nio4r (2.5.8)
107
- nokogiri (1.14.2-x86_64-darwin)
108
- racc (~> 1.4)
109
- parallel (1.22.1)
110
- parser (3.2.1.1)
111
- ast (~> 2.4.1)
112
- racc (1.6.2)
113
- rack (2.2.6.4)
114
- rack-test (2.0.2)
115
- rack (>= 1.3)
116
- rails (6.1.7.3)
117
- actioncable (= 6.1.7.3)
118
- actionmailbox (= 6.1.7.3)
119
- actionmailer (= 6.1.7.3)
120
- actionpack (= 6.1.7.3)
121
- actiontext (= 6.1.7.3)
122
- actionview (= 6.1.7.3)
123
- activejob (= 6.1.7.3)
124
- activemodel (= 6.1.7.3)
125
- activerecord (= 6.1.7.3)
126
- activestorage (= 6.1.7.3)
127
- activesupport (= 6.1.7.3)
128
- bundler (>= 1.15.0)
129
- railties (= 6.1.7.3)
130
- sprockets-rails (>= 2.0.0)
131
- rails-dom-testing (2.0.3)
132
- activesupport (>= 4.2.0)
133
- nokogiri (>= 1.6)
134
- rails-html-sanitizer (1.5.0)
135
- loofah (~> 2.19, >= 2.19.1)
136
- railties (6.1.7.3)
137
- actionpack (= 6.1.7.3)
138
- activesupport (= 6.1.7.3)
139
- method_source
140
- rake (>= 12.2)
141
- thor (~> 1.0)
142
- rainbow (3.1.1)
143
- rake (13.0.6)
144
- regexp_parser (2.7.0)
145
- rexml (3.2.5)
146
- rspec (3.12.0)
147
- rspec-core (~> 3.12.0)
148
- rspec-expectations (~> 3.12.0)
149
- rspec-mocks (~> 3.12.0)
150
- rspec-core (3.12.1)
151
- rspec-support (~> 3.12.0)
152
- rspec-expectations (3.12.2)
153
- diff-lcs (>= 1.2.0, < 2.0)
154
- rspec-support (~> 3.12.0)
155
- rspec-mocks (3.12.4)
156
- diff-lcs (>= 1.2.0, < 2.0)
157
- rspec-support (~> 3.12.0)
158
- rspec-support (3.12.0)
159
- rubocop (1.48.1)
160
- json (~> 2.3)
161
- parallel (~> 1.10)
162
- parser (>= 3.2.0.0)
163
- rainbow (>= 2.2.2, < 4.0)
164
- regexp_parser (>= 1.8, < 3.0)
165
- rexml (>= 3.2.5, < 4.0)
166
- rubocop-ast (>= 1.26.0, < 2.0)
167
- ruby-progressbar (~> 1.7)
168
- unicode-display_width (>= 2.4.0, < 3.0)
169
- rubocop-ast (1.27.0)
170
- parser (>= 3.2.1.0)
171
- rubocop-capybara (2.17.1)
172
- rubocop (~> 1.41)
173
- rubocop-performance (1.16.0)
174
- rubocop (>= 1.7.0, < 2.0)
175
- rubocop-ast (>= 0.4.0)
176
- rubocop-rspec (2.19.0)
177
- rubocop (~> 1.33)
178
- rubocop-capybara (~> 2.17)
179
- ruby-progressbar (1.13.0)
180
- sprockets (4.2.0)
181
- concurrent-ruby (~> 1.0)
182
- rack (>= 2.2.4, < 4)
183
- sprockets-rails (3.4.2)
184
- actionpack (>= 5.2)
185
- activesupport (>= 5.2)
186
- sprockets (>= 3.0.0)
187
- thor (1.2.1)
188
- timeout (0.3.2)
189
- tzinfo (2.0.6)
190
- concurrent-ruby (~> 1.0)
191
- unicode-display_width (2.4.2)
192
- websocket-driver (0.7.5)
193
- websocket-extensions (>= 0.1.0)
194
- websocket-extensions (0.1.5)
195
- zeitwerk (2.6.7)
196
-
197
- PLATFORMS
198
- x86_64-darwin-22
199
-
200
- DEPENDENCIES
201
- activemodel (>= 6.1, < 7.1)
202
- appraisal (~> 2.4)
203
- bundler (= 2.2.10)
204
- normalize_line_endings!
205
- rails (= 6.1.7.3)
206
- rake (~> 13.0)
207
- rspec (~> 3.12)
208
- rubocop (~> 1.48)
209
- rubocop-performance (~> 1.16)
210
- rubocop-rspec (~> 2.19)
211
-
212
- BUNDLED WITH
213
- 2.2.10