normalize_line_endings 0.0.7 → 0.0.8

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: d2f549b41da6aad9c5134d09821924e9f1de511ddc65d47af3fec36bcfc46ad3
4
- data.tar.gz: 923d6fbef37ef27e874ed258029d926b7713ce2ba96566dfeae247e2880c6c86
3
+ metadata.gz: 6bbc7924f95c476c01a9f34fca57130553346024588a4b0f02be655746b4fbc7
4
+ data.tar.gz: 15d6bf8ba29744163ce3b6e86ec12264e63a3a378264ae62f9a9b29b13ae3c8f
5
5
  SHA512:
6
- metadata.gz: cce87c25f164c015ef766c06eb3a560cc1e7b84c290b25377b39db2e86cb8622fd26451e0ce6246a22cb25f6bc7437b1a8ba0beeea2446a99d5047cdf45de39c
7
- data.tar.gz: 5e39bb84f5f822b63e59cbf6af666cbc29aabfa3c2d8486e58e6a8fab454ad8cd254637b8250412b274789d20b0ce1e33961278e8bfb41c27073310f8bc72105
6
+ metadata.gz: ad5c8c0a9cc26cb01f2b3020d70e079ef29a0f7c27c060239dd01c1a3746b519084156bc9655196f242a3f1b5aa1d6924786b0688d751354a5552e3b8b4dc410
7
+ data.tar.gz: 92e82806667633d1d42ff8197e3585c9a1070dba6ac48e9ad4f5965ade495c16ff0adf2b5a71e5b987833cac763462234c4b8afe0ac599d04a184956a23adb36
data/.gitignore CHANGED
@@ -6,6 +6,9 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ Gemfile.lock
10
+ gemfiles/*.gemfile.lock
11
+
9
12
 
10
13
  # rspec failure tracking
11
14
  /spec/examples.txt
data/.rubocop.yml CHANGED
@@ -1,11 +1,11 @@
1
- require:
2
- - rubocop-performance
3
- - rubocop-rspec
4
-
5
1
  AllCops:
6
2
  NewCops: enable
7
3
  SuggestExtensions: false
8
- TargetRubyVersion: 3.1
4
+ TargetRubyVersion: 3.3
5
+
6
+ plugins:
7
+ - rubocop-performance
8
+ - rubocop-rspec
9
9
 
10
10
  Gemspec/DevelopmentDependencies:
11
11
  EnforcedStyle: gemspec
@@ -13,10 +13,12 @@ Gemspec/DevelopmentDependencies:
13
13
  Layout/EmptyLinesAroundAttributeAccessor:
14
14
  Enabled: true
15
15
 
16
+ Layout/LineLength:
17
+ Max: 120
18
+
16
19
  Layout/SpaceAroundMethodCallOperator:
17
20
  Enabled: false
18
21
 
19
-
20
22
  Lint/DeprecatedOpenSSLConstant:
21
23
  Enabled: true
22
24
 
@@ -32,9 +34,6 @@ Metrics/AbcSize:
32
34
  Metrics/BlockLength:
33
35
  Enabled: false
34
36
 
35
- Metrics/LineLength:
36
- Max: 120
37
-
38
37
  Metrics/MethodLength:
39
38
  Enabled: false
40
39
 
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.2.4
1
+ 3.3.6
data/Appraisals CHANGED
@@ -1,7 +1,7 @@
1
- appraise "rails-7" do
2
- gem "rails", "7.0.8.4"
1
+ appraise "rails-7-1" do
2
+ gem "rails", "7.1.5.1"
3
3
  end
4
4
 
5
- appraise "rails-7-1" do
6
- gem "rails", "7.1.3.4"
5
+ appraise "rails-7-2" do
6
+ gem "rails", "7.2.2.1"
7
7
  end
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Change log
2
2
 
3
- ## master (unreleased)
3
+ ## main (unreleased)
4
+
5
+ ## 0.0.8 (2025-06-20)
6
+
7
+ * Support Rails 7.2 and Ruby 3.3
8
+ * Drop support for Rails 7.1
9
+ * Drop support for Ruby 3.1 and Ruby 3.2
4
10
 
5
11
  ## 0.0.7 (2024-08-16)
6
12
 
data/Gemfile CHANGED
@@ -4,3 +4,12 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
5
  # Specify your gem's dependencies in normalize_line_endings.gemspec
6
6
  gemspec
7
+
8
+ group :development, :test do
9
+ gem "appraisal", "~> 2.5"
10
+ gem "rake", "~> 13.3"
11
+ gem "rspec", "~> 3.13"
12
+ gem "rubocop", "~> 1.77"
13
+ gem "rubocop-performance", "~> 1.25"
14
+ gem "rubocop-rspec", "~> 3.6"
15
+ end
@@ -2,6 +2,15 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "7.1.3.4"
5
+ gem "rails", "7.1.5.1"
6
+
7
+ group :development, :test do
8
+ gem "appraisal", "~> 2.5"
9
+ gem "rake", "~> 13.3"
10
+ gem "rspec", "~> 3.13"
11
+ gem "rubocop", "~> 1.77"
12
+ gem "rubocop-performance", "~> 1.25"
13
+ gem "rubocop-rspec", "~> 3.6"
14
+ end
6
15
 
7
16
  gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "7.2.2.1"
6
+
7
+ group :development, :test do
8
+ gem "appraisal", "~> 2.5"
9
+ gem "rake", "~> 13.3"
10
+ gem "rspec", "~> 3.13"
11
+ gem "rubocop", "~> 1.77"
12
+ gem "rubocop-performance", "~> 1.25"
13
+ gem "rubocop-rspec", "~> 3.6"
14
+ end
15
+
16
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module NormalizeLineEndings
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -27,15 +27,7 @@ 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 = ">= 3.1"
30
+ spec.required_ruby_version = ">= 3.3"
31
31
 
32
- spec.add_dependency "activesupport", ">= 7.0", "< 7.2"
33
-
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"
32
+ spec.add_dependency "activesupport", ">= 7.1", "< 8.0"
41
33
  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.7
4
+ version: 0.0.8
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: 2024-08-16 00:00:00.000000000 Z
12
+ date: 2025-09-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -17,124 +17,20 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: '7.0'
20
+ version: '7.1'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '7.2'
23
+ version: '8.0'
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: '7.0'
30
+ version: '7.1'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '7.2'
34
- - !ruby/object:Gem::Dependency
35
- name: activemodel
36
- requirement: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '7.0'
41
- - - "<"
42
- - !ruby/object:Gem::Version
43
- version: '7.2'
44
- type: :development
45
- prerelease: false
46
- version_requirements: !ruby/object:Gem::Requirement
47
- requirements:
48
- - - ">="
49
- - !ruby/object:Gem::Version
50
- version: '7.0'
51
- - - "<"
52
- - !ruby/object:Gem::Version
53
- version: '7.2'
54
- - !ruby/object:Gem::Dependency
55
- name: appraisal
56
- requirement: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - "~>"
59
- - !ruby/object:Gem::Version
60
- version: '2.5'
61
- type: :development
62
- prerelease: false
63
- version_requirements: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '2.5'
68
- - !ruby/object:Gem::Dependency
69
- name: rake
70
- requirement: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '13.1'
75
- type: :development
76
- prerelease: false
77
- version_requirements: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - "~>"
80
- - !ruby/object:Gem::Version
81
- version: '13.1'
82
- - !ruby/object:Gem::Dependency
83
- name: rspec
84
- requirement: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: '3.13'
89
- type: :development
90
- prerelease: false
91
- version_requirements: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - "~>"
94
- - !ruby/object:Gem::Version
95
- version: '3.13'
96
- - !ruby/object:Gem::Dependency
97
- name: rubocop
98
- requirement: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '1.65'
103
- type: :development
104
- prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "~>"
108
- - !ruby/object:Gem::Version
109
- version: '1.65'
110
- - !ruby/object:Gem::Dependency
111
- name: rubocop-performance
112
- requirement: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - "~>"
115
- - !ruby/object:Gem::Version
116
- version: '1.21'
117
- type: :development
118
- prerelease: false
119
- version_requirements: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - "~>"
122
- - !ruby/object:Gem::Version
123
- version: '1.21'
124
- - !ruby/object:Gem::Dependency
125
- name: rubocop-rspec
126
- requirement: !ruby/object:Gem::Requirement
127
- requirements:
128
- - - "~>"
129
- - !ruby/object:Gem::Version
130
- version: '3.0'
131
- type: :development
132
- prerelease: false
133
- version_requirements: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - "~>"
136
- - !ruby/object:Gem::Version
137
- version: '3.0'
33
+ version: '8.0'
138
34
  description:
139
35
  email:
140
36
  - alistairm@nulogy.com
@@ -155,10 +51,8 @@ files:
155
51
  - bin/console
156
52
  - bin/setup
157
53
  - gemfiles/.bundle/config
158
- - gemfiles/rails_7.gemfile
159
- - gemfiles/rails_7.gemfile.lock
160
54
  - gemfiles/rails_7_1.gemfile
161
- - gemfiles/rails_7_1.gemfile.lock
55
+ - gemfiles/rails_7_2.gemfile
162
56
  - lib/normalize_line_endings.rb
163
57
  - lib/normalize_line_endings/version.rb
164
58
  - normalize_line_endings.gemspec
@@ -178,14 +72,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
72
  requirements:
179
73
  - - ">="
180
74
  - !ruby/object:Gem::Version
181
- version: '3.1'
75
+ version: '3.3'
182
76
  required_rubygems_version: !ruby/object:Gem::Requirement
183
77
  requirements:
184
78
  - - ">="
185
79
  - !ruby/object:Gem::Version
186
80
  version: '0'
187
81
  requirements: []
188
- rubygems_version: 3.5.17
82
+ rubygems_version: 3.5.22
189
83
  signing_key:
190
84
  specification_version: 4
191
85
  summary: Converts \r\n characters to \n for attributes on ActiveModel-like entities.
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "7.0.8.4"
6
-
7
- gemspec path: "../"
@@ -1,215 +0,0 @@
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
@@ -1,246 +0,0 @@
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