normalize_line_endings 0.0.5 → 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: 4fcfe7b5a3c572acadca71e1578704611059558a9b172b59fc3f8241e6e7c057
4
- data.tar.gz: f753427135f171b11399525eee0d5328521b73131bd530081400f909aa728fd5
3
+ metadata.gz: d2f549b41da6aad9c5134d09821924e9f1de511ddc65d47af3fec36bcfc46ad3
4
+ data.tar.gz: 923d6fbef37ef27e874ed258029d926b7713ce2ba96566dfeae247e2880c6c86
5
5
  SHA512:
6
- metadata.gz: b7296ab826b39115ebb7e9b3f1095c12a286d5e2168ceaeab0918716c49b34a4eb3214c17527fda71e7dbfaf02a4a6a9dcd080fb6bb72b0c7ab8c84889f3e6f7
7
- data.tar.gz: 0ea803b71a86cd1b97fe441a7579e6e2bdd36df41d1a3ff5003d4b122e2ca0d601739ecf904e91d1612c0b9b01dbddaac19681cf37f2ed321682936c416937b7
6
+ metadata.gz: cce87c25f164c015ef766c06eb3a560cc1e7b84c290b25377b39db2e86cb8622fd26451e0ce6246a22cb25f6bc7437b1a8ba0beeea2446a99d5047cdf45de39c
7
+ data.tar.gz: 5e39bb84f5f822b63e59cbf6af666cbc29aabfa3c2d8486e58e6a8fab454ad8cd254637b8250412b274789d20b0ce1e33961278e8bfb41c27073310f8bc72105
data/.rubocop.yml CHANGED
@@ -4,7 +4,11 @@ require:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 2.7
7
+ SuggestExtensions: false
8
+ TargetRubyVersion: 3.1
9
+
10
+ Gemspec/DevelopmentDependencies:
11
+ EnforcedStyle: gemspec
8
12
 
9
13
  Layout/EmptyLinesAroundAttributeAccessor:
10
14
  Enabled: true
@@ -12,6 +16,7 @@ Layout/EmptyLinesAroundAttributeAccessor:
12
16
  Layout/SpaceAroundMethodCallOperator:
13
17
  Enabled: false
14
18
 
19
+
15
20
  Lint/DeprecatedOpenSSLConstant:
16
21
  Enabled: true
17
22
 
@@ -66,6 +71,11 @@ Style/ExponentialNotation:
66
71
  Style/HashEachMethods:
67
72
  Enabled: false
68
73
 
74
+ Style/HashSyntax:
75
+ Enabled: true
76
+ EnforcedShorthandSyntax: never
77
+ EnforcedStyle: ruby19
78
+
69
79
  Style/HashTransformKeys:
70
80
  Enabled: false
71
81
 
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.4
1
+ 3.2.4
data/Appraisals CHANGED
@@ -1,7 +1,7 @@
1
- appraise "rails-6" do
2
- gem "rails", "6.0.4"
1
+ appraise "rails-7" do
2
+ gem "rails", "7.0.8.4"
3
3
  end
4
4
 
5
- appraise "rails-6-1" do
6
- gem "rails", "6.1.4"
5
+ appraise "rails-7-1" do
6
+ gem "rails", "7.1.3.4"
7
7
  end
data/CHANGELOG.md CHANGED
@@ -2,11 +2,14 @@
2
2
 
3
3
  ## master (unreleased)
4
4
 
5
- ## 0.0.5 (2021-07-13)
5
+ ## 0.0.7 (2024-08-16)
6
6
 
7
- * Add support Rails 6.1
8
- * Drop support for Rails 5.2
9
- * Bump development dependencies
7
+ * Support Rails 7.1 and Ruby 3.1
8
+ * Drop support for Rails 6.1 and Ruby 3.0
9
+
10
+ ## 0.0.6 (2023-03-14)
11
+
12
+ * Support Rails 7.0
10
13
 
11
14
  ## 0.0.4 (2020-11-05)
12
15
 
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "6.0.4"
5
+ gem "rails", "7.0.8.4"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,215 @@
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.0.8.4)
11
+ actionpack (= 7.0.8.4)
12
+ activesupport (= 7.0.8.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
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
+ mail (>= 2.7.1)
22
+ net-imap
23
+ net-pop
24
+ net-smtp
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
+ 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.4)
36
+ actionview (= 7.0.8.4)
37
+ activesupport (= 7.0.8.4)
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.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
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (7.0.8.4)
50
+ activesupport (= 7.0.8.4)
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.4)
56
+ activesupport (= 7.0.8.4)
57
+ globalid (>= 0.3.6)
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
+ marcel (~> 1.0)
69
+ mini_mime (>= 1.1.0)
70
+ activesupport (7.0.8.4)
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
+ ast (2.4.2)
80
+ builder (3.3.0)
81
+ concurrent-ruby (1.3.4)
82
+ crass (1.0.6)
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
+ concurrent-ruby (~> 1.0)
90
+ json (2.7.2)
91
+ language_server-protocol (3.17.0.3)
92
+ loofah (2.22.0)
93
+ crass (~> 1.0.2)
94
+ nokogiri (>= 1.12.0)
95
+ mail (2.8.1)
96
+ mini_mime (>= 0.1.1)
97
+ net-imap
98
+ net-pop
99
+ net-smtp
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)
105
+ date
106
+ net-protocol
107
+ net-pop (0.1.2)
108
+ net-protocol
109
+ net-protocol (0.2.2)
110
+ timeout
111
+ net-smtp (0.5.0)
112
+ net-protocol
113
+ nio4r (2.7.3)
114
+ nokogiri (1.16.7-arm64-darwin)
115
+ racc (~> 1.4)
116
+ parallel (1.26.2)
117
+ parser (3.3.4.2)
118
+ ast (~> 2.4.1)
119
+ racc
120
+ racc (1.8.1)
121
+ rack (2.2.9)
122
+ rack-test (2.1.0)
123
+ rack (>= 1.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)
136
+ bundler (>= 1.15.0)
137
+ railties (= 7.0.8.4)
138
+ rails-dom-testing (2.2.0)
139
+ activesupport (>= 5.0.0)
140
+ minitest
141
+ nokogiri (>= 1.6)
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)
148
+ method_source
149
+ rake (>= 12.2)
150
+ thor (~> 1.0)
151
+ zeitwerk (~> 2.5)
152
+ rainbow (3.1.1)
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)
164
+ diff-lcs (>= 1.2.0, < 2.0)
165
+ rspec-support (~> 3.13.0)
166
+ rspec-mocks (3.13.1)
167
+ diff-lcs (>= 1.2.0, < 2.0)
168
+ rspec-support (~> 3.13.0)
169
+ rspec-support (3.13.1)
170
+ rubocop (1.65.1)
171
+ json (~> 2.3)
172
+ language_server-protocol (>= 3.17.0)
173
+ parallel (~> 1.10)
174
+ parser (>= 3.3.0.2)
175
+ rainbow (>= 2.2.2, < 4.0)
176
+ regexp_parser (>= 2.4, < 3.0)
177
+ rexml (>= 3.2.5, < 4.0)
178
+ rubocop-ast (>= 1.31.1, < 2.0)
179
+ ruby-progressbar (~> 1.7)
180
+ unicode-display_width (>= 2.4.0, < 3.0)
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)
188
+ ruby-progressbar (1.13.0)
189
+ strscan (3.1.0)
190
+ thor (1.3.1)
191
+ timeout (0.4.1)
192
+ tzinfo (2.0.6)
193
+ concurrent-ruby (~> 1.0)
194
+ unicode-display_width (2.5.0)
195
+ websocket-driver (0.7.6)
196
+ websocket-extensions (>= 0.1.0)
197
+ websocket-extensions (0.1.5)
198
+ zeitwerk (2.6.17)
199
+
200
+ PLATFORMS
201
+ arm64-darwin
202
+
203
+ DEPENDENCIES
204
+ activemodel (>= 7.0, < 7.2)
205
+ appraisal (~> 2.5)
206
+ normalize_line_endings!
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)
213
+
214
+ BUNDLED WITH
215
+ 2.5.17
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "6.1.4"
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.5"
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,8 +15,8 @@ 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
- "bug_tracker_uri" => "https://github.com/nulogy/normalize_line_endings/issues"
18
+ "bug_tracker_uri" => "https://github.com/nulogy/normalize_line_endings/issues",
19
+ "rubygems_mfa_required" => "true"
20
20
  }
21
21
 
22
22
  # Specify which files should be added to the gem when it is released.
@@ -27,15 +27,15 @@ Gem::Specification.new do |spec|
27
27
  spec.bindir = "exe"
28
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
29
  spec.require_paths = ["lib"]
30
- spec.required_ruby_version = ">= 2.7"
30
+ spec.required_ruby_version = ">= 3.1"
31
31
 
32
- spec.add_runtime_dependency "activesupport", ">= 6.0", "< 7.0"
32
+ spec.add_dependency "activesupport", ">= 7.0", "< 7.2"
33
33
 
34
- spec.add_development_dependency "activemodel", ">= 6.0", "< 7.0"
35
- spec.add_development_dependency "appraisal", "~> 2.4"
36
- spec.add_development_dependency "rake", "~> 13.0"
37
- spec.add_development_dependency "rspec", "~> 3.10"
38
- spec.add_development_dependency "rubocop", "~> 1.18"
39
- spec.add_development_dependency "rubocop-performance", "~> 1.11"
40
- spec.add_development_dependency "rubocop-rspec", "~> 2.4"
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"
41
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.5
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: 2021-07-13 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,124 +17,124 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: '6.0'
20
+ version: '7.0'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '7.0'
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.0'
30
+ version: '7.0'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '7.0'
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.0'
40
+ version: '7.0'
41
41
  - - "<"
42
42
  - !ruby/object:Gem::Version
43
- version: '7.0'
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.0'
50
+ version: '7.0'
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: '7.0'
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'
67
+ version: '2.5'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: rake
70
70
  requirement: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '13.0'
74
+ version: '13.1'
75
75
  type: :development
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '13.0'
81
+ version: '13.1'
82
82
  - !ruby/object:Gem::Dependency
83
83
  name: rspec
84
84
  requirement: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '3.10'
88
+ version: '3.13'
89
89
  type: :development
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: '3.10'
95
+ version: '3.13'
96
96
  - !ruby/object:Gem::Dependency
97
97
  name: rubocop
98
98
  requirement: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '1.18'
102
+ version: '1.65'
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '1.18'
109
+ version: '1.65'
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: rubocop-performance
112
112
  requirement: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - "~>"
115
115
  - !ruby/object:Gem::Version
116
- version: '1.11'
116
+ version: '1.21'
117
117
  type: :development
118
118
  prerelease: false
119
119
  version_requirements: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: '1.11'
123
+ version: '1.21'
124
124
  - !ruby/object:Gem::Dependency
125
125
  name: rubocop-rspec
126
126
  requirement: !ruby/object:Gem::Requirement
127
127
  requirements:
128
128
  - - "~>"
129
129
  - !ruby/object:Gem::Version
130
- version: '2.4'
130
+ version: '3.0'
131
131
  type: :development
132
132
  prerelease: false
133
133
  version_requirements: !ruby/object:Gem::Requirement
134
134
  requirements:
135
135
  - - "~>"
136
136
  - !ruby/object:Gem::Version
137
- version: '2.4'
137
+ version: '3.0'
138
138
  description:
139
139
  email:
140
140
  - alistairm@nulogy.com
@@ -150,15 +150,15 @@ files:
150
150
  - CHANGELOG.md
151
151
  - CODE_OF_CONDUCT.md
152
152
  - Gemfile
153
- - Gemfile.lock
154
153
  - README.md
155
154
  - Rakefile
156
155
  - bin/console
157
156
  - bin/setup
158
- - gemfiles/rails_6.gemfile
159
- - gemfiles/rails_6.gemfile.lock
160
- - gemfiles/rails_6_1.gemfile
161
- - gemfiles/rails_6_1.gemfile.lock
157
+ - gemfiles/.bundle/config
158
+ - gemfiles/rails_7.gemfile
159
+ - gemfiles/rails_7.gemfile.lock
160
+ - gemfiles/rails_7_1.gemfile
161
+ - gemfiles/rails_7_1.gemfile.lock
162
162
  - lib/normalize_line_endings.rb
163
163
  - lib/normalize_line_endings/version.rb
164
164
  - normalize_line_endings.gemspec
@@ -168,8 +168,8 @@ licenses:
168
168
  metadata:
169
169
  homepage_uri: https://github.com/nulogy/normalize_line_endings
170
170
  changelog_uri: https://github.com/nulogy/normalize_line_endings/blob/master/CHANGELOG.md
171
- source_code_uri: https://github.com/nulogy/normalize_line_endings
172
171
  bug_tracker_uri: https://github.com/nulogy/normalize_line_endings/issues
172
+ rubygems_mfa_required: 'true'
173
173
  post_install_message:
174
174
  rdoc_options: []
175
175
  require_paths:
@@ -178,14 +178,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
178
  requirements:
179
179
  - - ">="
180
180
  - !ruby/object:Gem::Version
181
- version: '2.7'
181
+ version: '3.1'
182
182
  required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  requirements:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
186
  version: '0'
187
187
  requirements: []
188
- rubygems_version: 3.1.6
188
+ rubygems_version: 3.5.17
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: Converts \r\n characters to \n for attributes on ActiveModel-like entities.
data/Gemfile.lock DELETED
@@ -1,86 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- normalize_line_endings (0.0.5)
5
- activesupport (>= 6.0, < 7.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (6.1.4)
11
- activesupport (= 6.1.4)
12
- activesupport (6.1.4)
13
- concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (>= 1.6, < 2)
15
- minitest (>= 5.1)
16
- tzinfo (~> 2.0)
17
- zeitwerk (~> 2.3)
18
- appraisal (2.4.0)
19
- bundler
20
- rake
21
- thor (>= 0.14.0)
22
- ast (2.4.2)
23
- concurrent-ruby (1.1.9)
24
- diff-lcs (1.4.4)
25
- i18n (1.8.10)
26
- concurrent-ruby (~> 1.0)
27
- minitest (5.14.4)
28
- parallel (1.20.1)
29
- parser (3.0.2.0)
30
- ast (~> 2.4.1)
31
- rainbow (3.0.0)
32
- rake (13.0.1)
33
- regexp_parser (2.1.1)
34
- rexml (3.2.5)
35
- rspec (3.10.0)
36
- rspec-core (~> 3.10.0)
37
- rspec-expectations (~> 3.10.0)
38
- rspec-mocks (~> 3.10.0)
39
- rspec-core (3.10.0)
40
- rspec-support (~> 3.10.0)
41
- rspec-expectations (3.10.0)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.10.0)
44
- rspec-mocks (3.10.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.10.0)
47
- rspec-support (3.10.0)
48
- rubocop (1.18.3)
49
- parallel (~> 1.10)
50
- parser (>= 3.0.0.0)
51
- rainbow (>= 2.2.2, < 4.0)
52
- regexp_parser (>= 1.8, < 3.0)
53
- rexml
54
- rubocop-ast (>= 1.7.0, < 2.0)
55
- ruby-progressbar (~> 1.7)
56
- unicode-display_width (>= 1.4.0, < 3.0)
57
- rubocop-ast (1.7.0)
58
- parser (>= 3.0.1.1)
59
- rubocop-performance (1.11.4)
60
- rubocop (>= 1.7.0, < 2.0)
61
- rubocop-ast (>= 0.4.0)
62
- rubocop-rspec (2.4.0)
63
- rubocop (~> 1.0)
64
- rubocop-ast (>= 1.1.0)
65
- ruby-progressbar (1.11.0)
66
- thor (1.1.0)
67
- tzinfo (2.0.4)
68
- concurrent-ruby (~> 1.0)
69
- unicode-display_width (2.0.0)
70
- zeitwerk (2.4.2)
71
-
72
- PLATFORMS
73
- ruby
74
-
75
- DEPENDENCIES
76
- activemodel (>= 6.0, < 7.0)
77
- appraisal (~> 2.4)
78
- normalize_line_endings!
79
- rake (~> 13.0)
80
- rspec (~> 3.10)
81
- rubocop (~> 1.18)
82
- rubocop-performance (~> 1.11)
83
- rubocop-rspec (~> 2.4)
84
-
85
- BUNDLED WITH
86
- 2.1.4
@@ -1,191 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- normalize_line_endings (0.0.5)
5
- activesupport (>= 6.0, < 7.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (6.0.4)
11
- actionpack (= 6.0.4)
12
- nio4r (~> 2.0)
13
- websocket-driver (>= 0.6.1)
14
- actionmailbox (6.0.4)
15
- actionpack (= 6.0.4)
16
- activejob (= 6.0.4)
17
- activerecord (= 6.0.4)
18
- activestorage (= 6.0.4)
19
- activesupport (= 6.0.4)
20
- mail (>= 2.7.1)
21
- actionmailer (6.0.4)
22
- actionpack (= 6.0.4)
23
- actionview (= 6.0.4)
24
- activejob (= 6.0.4)
25
- mail (~> 2.5, >= 2.5.4)
26
- rails-dom-testing (~> 2.0)
27
- actionpack (6.0.4)
28
- actionview (= 6.0.4)
29
- activesupport (= 6.0.4)
30
- rack (~> 2.0, >= 2.0.8)
31
- rack-test (>= 0.6.3)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
- actiontext (6.0.4)
35
- actionpack (= 6.0.4)
36
- activerecord (= 6.0.4)
37
- activestorage (= 6.0.4)
38
- activesupport (= 6.0.4)
39
- nokogiri (>= 1.8.5)
40
- actionview (6.0.4)
41
- activesupport (= 6.0.4)
42
- builder (~> 3.1)
43
- erubi (~> 1.4)
44
- rails-dom-testing (~> 2.0)
45
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
- activejob (6.0.4)
47
- activesupport (= 6.0.4)
48
- globalid (>= 0.3.6)
49
- activemodel (6.0.4)
50
- activesupport (= 6.0.4)
51
- activerecord (6.0.4)
52
- activemodel (= 6.0.4)
53
- activesupport (= 6.0.4)
54
- activestorage (6.0.4)
55
- actionpack (= 6.0.4)
56
- activejob (= 6.0.4)
57
- activerecord (= 6.0.4)
58
- marcel (~> 1.0.0)
59
- activesupport (6.0.4)
60
- concurrent-ruby (~> 1.0, >= 1.0.2)
61
- i18n (>= 0.7, < 2)
62
- minitest (~> 5.1)
63
- tzinfo (~> 1.1)
64
- zeitwerk (~> 2.2, >= 2.2.2)
65
- appraisal (2.4.0)
66
- bundler
67
- rake
68
- thor (>= 0.14.0)
69
- ast (2.4.2)
70
- builder (3.2.4)
71
- concurrent-ruby (1.1.9)
72
- crass (1.0.6)
73
- diff-lcs (1.4.4)
74
- erubi (1.10.0)
75
- globalid (0.4.2)
76
- activesupport (>= 4.2.0)
77
- i18n (1.8.10)
78
- concurrent-ruby (~> 1.0)
79
- loofah (2.10.0)
80
- crass (~> 1.0.2)
81
- nokogiri (>= 1.5.9)
82
- mail (2.7.1)
83
- mini_mime (>= 0.1.1)
84
- marcel (1.0.1)
85
- method_source (1.0.0)
86
- mini_mime (1.1.0)
87
- minitest (5.14.4)
88
- nio4r (2.5.7)
89
- nokogiri (1.11.7-x86_64-darwin)
90
- racc (~> 1.4)
91
- parallel (1.20.1)
92
- parser (3.0.2.0)
93
- ast (~> 2.4.1)
94
- racc (1.5.2)
95
- rack (2.2.3)
96
- rack-test (1.1.0)
97
- rack (>= 1.0, < 3)
98
- rails (6.0.4)
99
- actioncable (= 6.0.4)
100
- actionmailbox (= 6.0.4)
101
- actionmailer (= 6.0.4)
102
- actionpack (= 6.0.4)
103
- actiontext (= 6.0.4)
104
- actionview (= 6.0.4)
105
- activejob (= 6.0.4)
106
- activemodel (= 6.0.4)
107
- activerecord (= 6.0.4)
108
- activestorage (= 6.0.4)
109
- activesupport (= 6.0.4)
110
- bundler (>= 1.3.0)
111
- railties (= 6.0.4)
112
- sprockets-rails (>= 2.0.0)
113
- rails-dom-testing (2.0.3)
114
- activesupport (>= 4.2.0)
115
- nokogiri (>= 1.6)
116
- rails-html-sanitizer (1.3.0)
117
- loofah (~> 2.3)
118
- railties (6.0.4)
119
- actionpack (= 6.0.4)
120
- activesupport (= 6.0.4)
121
- method_source
122
- rake (>= 0.8.7)
123
- thor (>= 0.20.3, < 2.0)
124
- rainbow (3.0.0)
125
- rake (13.0.6)
126
- regexp_parser (2.1.1)
127
- rexml (3.2.5)
128
- rspec (3.10.0)
129
- rspec-core (~> 3.10.0)
130
- rspec-expectations (~> 3.10.0)
131
- rspec-mocks (~> 3.10.0)
132
- rspec-core (3.10.1)
133
- rspec-support (~> 3.10.0)
134
- rspec-expectations (3.10.1)
135
- diff-lcs (>= 1.2.0, < 2.0)
136
- rspec-support (~> 3.10.0)
137
- rspec-mocks (3.10.2)
138
- diff-lcs (>= 1.2.0, < 2.0)
139
- rspec-support (~> 3.10.0)
140
- rspec-support (3.10.2)
141
- rubocop (1.18.3)
142
- parallel (~> 1.10)
143
- parser (>= 3.0.0.0)
144
- rainbow (>= 2.2.2, < 4.0)
145
- regexp_parser (>= 1.8, < 3.0)
146
- rexml
147
- rubocop-ast (>= 1.7.0, < 2.0)
148
- ruby-progressbar (~> 1.7)
149
- unicode-display_width (>= 1.4.0, < 3.0)
150
- rubocop-ast (1.7.0)
151
- parser (>= 3.0.1.1)
152
- rubocop-performance (1.11.4)
153
- rubocop (>= 1.7.0, < 2.0)
154
- rubocop-ast (>= 0.4.0)
155
- rubocop-rspec (2.4.0)
156
- rubocop (~> 1.0)
157
- rubocop-ast (>= 1.1.0)
158
- ruby-progressbar (1.11.0)
159
- sprockets (4.0.2)
160
- concurrent-ruby (~> 1.0)
161
- rack (> 1, < 3)
162
- sprockets-rails (3.2.2)
163
- actionpack (>= 4.0)
164
- activesupport (>= 4.0)
165
- sprockets (>= 3.0.0)
166
- thor (1.1.0)
167
- thread_safe (0.3.6)
168
- tzinfo (1.2.9)
169
- thread_safe (~> 0.1)
170
- unicode-display_width (2.0.0)
171
- websocket-driver (0.7.5)
172
- websocket-extensions (>= 0.1.0)
173
- websocket-extensions (0.1.5)
174
- zeitwerk (2.4.2)
175
-
176
- PLATFORMS
177
- ruby
178
-
179
- DEPENDENCIES
180
- activemodel (>= 6.0, < 7.0)
181
- appraisal (~> 2.4)
182
- normalize_line_endings!
183
- rails (= 6.0.4)
184
- rake (~> 13.0)
185
- rspec (~> 3.10)
186
- rubocop (~> 1.18)
187
- rubocop-performance (~> 1.11)
188
- rubocop-rspec (~> 2.4)
189
-
190
- BUNDLED WITH
191
- 2.1.4
@@ -1,194 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- normalize_line_endings (0.0.5)
5
- activesupport (>= 6.0, < 7.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (6.1.4)
11
- actionpack (= 6.1.4)
12
- activesupport (= 6.1.4)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailbox (6.1.4)
16
- actionpack (= 6.1.4)
17
- activejob (= 6.1.4)
18
- activerecord (= 6.1.4)
19
- activestorage (= 6.1.4)
20
- activesupport (= 6.1.4)
21
- mail (>= 2.7.1)
22
- actionmailer (6.1.4)
23
- actionpack (= 6.1.4)
24
- actionview (= 6.1.4)
25
- activejob (= 6.1.4)
26
- activesupport (= 6.1.4)
27
- mail (~> 2.5, >= 2.5.4)
28
- rails-dom-testing (~> 2.0)
29
- actionpack (6.1.4)
30
- actionview (= 6.1.4)
31
- activesupport (= 6.1.4)
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)
37
- actionpack (= 6.1.4)
38
- activerecord (= 6.1.4)
39
- activestorage (= 6.1.4)
40
- activesupport (= 6.1.4)
41
- nokogiri (>= 1.8.5)
42
- actionview (6.1.4)
43
- activesupport (= 6.1.4)
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)
49
- activesupport (= 6.1.4)
50
- globalid (>= 0.3.6)
51
- activemodel (6.1.4)
52
- activesupport (= 6.1.4)
53
- activerecord (6.1.4)
54
- activemodel (= 6.1.4)
55
- activesupport (= 6.1.4)
56
- activestorage (6.1.4)
57
- actionpack (= 6.1.4)
58
- activejob (= 6.1.4)
59
- activerecord (= 6.1.4)
60
- activesupport (= 6.1.4)
61
- marcel (~> 1.0.0)
62
- mini_mime (>= 1.1.0)
63
- activesupport (6.1.4)
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.0)
70
- bundler
71
- rake
72
- thor (>= 0.14.0)
73
- ast (2.4.2)
74
- builder (3.2.4)
75
- concurrent-ruby (1.1.9)
76
- crass (1.0.6)
77
- diff-lcs (1.4.4)
78
- erubi (1.10.0)
79
- globalid (0.4.2)
80
- activesupport (>= 4.2.0)
81
- i18n (1.8.10)
82
- concurrent-ruby (~> 1.0)
83
- loofah (2.10.0)
84
- crass (~> 1.0.2)
85
- nokogiri (>= 1.5.9)
86
- mail (2.7.1)
87
- mini_mime (>= 0.1.1)
88
- marcel (1.0.1)
89
- method_source (1.0.0)
90
- mini_mime (1.1.0)
91
- minitest (5.14.4)
92
- nio4r (2.5.7)
93
- nokogiri (1.11.7-x86_64-darwin)
94
- racc (~> 1.4)
95
- parallel (1.20.1)
96
- parser (3.0.2.0)
97
- ast (~> 2.4.1)
98
- racc (1.5.2)
99
- rack (2.2.3)
100
- rack-test (1.1.0)
101
- rack (>= 1.0, < 3)
102
- rails (6.1.4)
103
- actioncable (= 6.1.4)
104
- actionmailbox (= 6.1.4)
105
- actionmailer (= 6.1.4)
106
- actionpack (= 6.1.4)
107
- actiontext (= 6.1.4)
108
- actionview (= 6.1.4)
109
- activejob (= 6.1.4)
110
- activemodel (= 6.1.4)
111
- activerecord (= 6.1.4)
112
- activestorage (= 6.1.4)
113
- activesupport (= 6.1.4)
114
- bundler (>= 1.15.0)
115
- railties (= 6.1.4)
116
- sprockets-rails (>= 2.0.0)
117
- rails-dom-testing (2.0.3)
118
- activesupport (>= 4.2.0)
119
- nokogiri (>= 1.6)
120
- rails-html-sanitizer (1.3.0)
121
- loofah (~> 2.3)
122
- railties (6.1.4)
123
- actionpack (= 6.1.4)
124
- activesupport (= 6.1.4)
125
- method_source
126
- rake (>= 0.13)
127
- thor (~> 1.0)
128
- rainbow (3.0.0)
129
- rake (13.0.6)
130
- regexp_parser (2.1.1)
131
- rexml (3.2.5)
132
- rspec (3.10.0)
133
- rspec-core (~> 3.10.0)
134
- rspec-expectations (~> 3.10.0)
135
- rspec-mocks (~> 3.10.0)
136
- rspec-core (3.10.1)
137
- rspec-support (~> 3.10.0)
138
- rspec-expectations (3.10.1)
139
- diff-lcs (>= 1.2.0, < 2.0)
140
- rspec-support (~> 3.10.0)
141
- rspec-mocks (3.10.2)
142
- diff-lcs (>= 1.2.0, < 2.0)
143
- rspec-support (~> 3.10.0)
144
- rspec-support (3.10.2)
145
- rubocop (1.18.3)
146
- parallel (~> 1.10)
147
- parser (>= 3.0.0.0)
148
- rainbow (>= 2.2.2, < 4.0)
149
- regexp_parser (>= 1.8, < 3.0)
150
- rexml
151
- rubocop-ast (>= 1.7.0, < 2.0)
152
- ruby-progressbar (~> 1.7)
153
- unicode-display_width (>= 1.4.0, < 3.0)
154
- rubocop-ast (1.7.0)
155
- parser (>= 3.0.1.1)
156
- rubocop-performance (1.11.4)
157
- rubocop (>= 1.7.0, < 2.0)
158
- rubocop-ast (>= 0.4.0)
159
- rubocop-rspec (2.4.0)
160
- rubocop (~> 1.0)
161
- rubocop-ast (>= 1.1.0)
162
- ruby-progressbar (1.11.0)
163
- sprockets (4.0.2)
164
- concurrent-ruby (~> 1.0)
165
- rack (> 1, < 3)
166
- sprockets-rails (3.2.2)
167
- actionpack (>= 4.0)
168
- activesupport (>= 4.0)
169
- sprockets (>= 3.0.0)
170
- thor (1.1.0)
171
- tzinfo (2.0.4)
172
- concurrent-ruby (~> 1.0)
173
- unicode-display_width (2.0.0)
174
- websocket-driver (0.7.5)
175
- websocket-extensions (>= 0.1.0)
176
- websocket-extensions (0.1.5)
177
- zeitwerk (2.4.2)
178
-
179
- PLATFORMS
180
- ruby
181
-
182
- DEPENDENCIES
183
- activemodel (>= 6.0, < 7.0)
184
- appraisal (~> 2.4)
185
- normalize_line_endings!
186
- rails (= 6.1.4)
187
- rake (~> 13.0)
188
- rspec (~> 3.10)
189
- rubocop (~> 1.18)
190
- rubocop-performance (~> 1.11)
191
- rubocop-rspec (~> 2.4)
192
-
193
- BUNDLED WITH
194
- 2.1.4