normalize_line_endings 0.0.6 → 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 +4 -4
- data/.gitignore +3 -0
- data/.rubocop.yml +16 -8
- data/.ruby-version +1 -1
- data/Appraisals +4 -4
- data/CHANGELOG.md +12 -1
- data/Gemfile +9 -0
- data/gemfiles/rails_7_1.gemfile +16 -0
- data/gemfiles/rails_7_2.gemfile +16 -0
- data/lib/normalize_line_endings/version.rb +1 -1
- data/lib/normalize_line_endings.rb +1 -1
- data/normalize_line_endings.gemspec +2 -16
- metadata +9 -131
- data/Gemfile.lock +0 -89
- data/gemfiles/rails_6_1.gemfile +0 -7
- data/gemfiles/rails_6_1.gemfile.lock +0 -213
- data/gemfiles/rails_7.gemfile +0 -7
- data/gemfiles/rails_7.gemfile.lock +0 -212
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6bbc7924f95c476c01a9f34fca57130553346024588a4b0f02be655746b4fbc7
|
4
|
+
data.tar.gz: 15d6bf8ba29744163ce3b6e86ec12264e63a3a378264ae62f9a9b29b13ae3c8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad5c8c0a9cc26cb01f2b3020d70e079ef29a0f7c27c060239dd01c1a3746b519084156bc9655196f242a3f1b5aa1d6924786b0688d751354a5552e3b8b4dc410
|
7
|
+
data.tar.gz: 92e82806667633d1d42ff8197e3585c9a1070dba6ac48e9ad4f5965ade495c16ff0adf2b5a71e5b987833cac763462234c4b8afe0ac599d04a184956a23adb36
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,15 +1,21 @@
|
|
1
|
-
require:
|
2
|
-
- rubocop-performance
|
3
|
-
- rubocop-rspec
|
4
|
-
|
5
1
|
AllCops:
|
6
2
|
NewCops: enable
|
7
3
|
SuggestExtensions: false
|
8
|
-
TargetRubyVersion: 3.
|
4
|
+
TargetRubyVersion: 3.3
|
5
|
+
|
6
|
+
plugins:
|
7
|
+
- rubocop-performance
|
8
|
+
- rubocop-rspec
|
9
|
+
|
10
|
+
Gemspec/DevelopmentDependencies:
|
11
|
+
EnforcedStyle: gemspec
|
9
12
|
|
10
13
|
Layout/EmptyLinesAroundAttributeAccessor:
|
11
14
|
Enabled: true
|
12
15
|
|
16
|
+
Layout/LineLength:
|
17
|
+
Max: 120
|
18
|
+
|
13
19
|
Layout/SpaceAroundMethodCallOperator:
|
14
20
|
Enabled: false
|
15
21
|
|
@@ -28,9 +34,6 @@ Metrics/AbcSize:
|
|
28
34
|
Metrics/BlockLength:
|
29
35
|
Enabled: false
|
30
36
|
|
31
|
-
Metrics/LineLength:
|
32
|
-
Max: 120
|
33
|
-
|
34
37
|
Metrics/MethodLength:
|
35
38
|
Enabled: false
|
36
39
|
|
@@ -67,6 +70,11 @@ Style/ExponentialNotation:
|
|
67
70
|
Style/HashEachMethods:
|
68
71
|
Enabled: false
|
69
72
|
|
73
|
+
Style/HashSyntax:
|
74
|
+
Enabled: true
|
75
|
+
EnforcedShorthandSyntax: never
|
76
|
+
EnforcedStyle: ruby19
|
77
|
+
|
70
78
|
Style/HashTransformKeys:
|
71
79
|
Enabled: false
|
72
80
|
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.6
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,17 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
##
|
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
|
10
|
+
|
11
|
+
## 0.0.7 (2024-08-16)
|
12
|
+
|
13
|
+
* Support Rails 7.1 and Ruby 3.1
|
14
|
+
* Drop support for Rails 6.1 and Ruby 3.0
|
4
15
|
|
5
16
|
## 0.0.6 (2023-03-14)
|
6
17
|
|
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
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
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
|
15
|
+
|
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: "../"
|
@@ -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(
|
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,7 @@ 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.
|
30
|
+
spec.required_ruby_version = ">= 3.3"
|
32
31
|
|
33
|
-
spec.
|
34
|
-
|
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"
|
32
|
+
spec.add_dependency "activesupport", ">= 7.1", "< 8.0"
|
47
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.
|
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:
|
12
|
+
date: 2025-09-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -17,138 +17,20 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
20
|
+
version: '7.1'
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
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
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: '6.1'
|
31
|
-
- - "<"
|
32
29
|
- !ruby/object:Gem::Version
|
33
30
|
version: '7.1'
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: activemodel
|
36
|
-
requirement: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '6.1'
|
41
31
|
- - "<"
|
42
32
|
- !ruby/object:Gem::Version
|
43
|
-
version: '
|
44
|
-
type: :development
|
45
|
-
prerelease: false
|
46
|
-
version_requirements: !ruby/object:Gem::Requirement
|
47
|
-
requirements:
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: '6.1'
|
51
|
-
- - "<"
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '7.1'
|
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.4'
|
61
|
-
type: :development
|
62
|
-
prerelease: false
|
63
|
-
version_requirements: !ruby/object:Gem::Requirement
|
64
|
-
requirements:
|
65
|
-
- - "~>"
|
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
|
82
|
-
- !ruby/object:Gem::Dependency
|
83
|
-
name: rake
|
84
|
-
requirement: !ruby/object:Gem::Requirement
|
85
|
-
requirements:
|
86
|
-
- - "~>"
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
version: '13.0'
|
89
|
-
type: :development
|
90
|
-
prerelease: false
|
91
|
-
version_requirements: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - "~>"
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '13.0'
|
96
|
-
- !ruby/object:Gem::Dependency
|
97
|
-
name: rspec
|
98
|
-
requirement: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '3.12'
|
103
|
-
type: :development
|
104
|
-
prerelease: false
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
106
|
-
requirements:
|
107
|
-
- - "~>"
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '3.12'
|
110
|
-
- !ruby/object:Gem::Dependency
|
111
|
-
name: rubocop
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
113
|
-
requirements:
|
114
|
-
- - "~>"
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: '1.48'
|
117
|
-
type: :development
|
118
|
-
prerelease: false
|
119
|
-
version_requirements: !ruby/object:Gem::Requirement
|
120
|
-
requirements:
|
121
|
-
- - "~>"
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: '1.48'
|
124
|
-
- !ruby/object:Gem::Dependency
|
125
|
-
name: rubocop-performance
|
126
|
-
requirement: !ruby/object:Gem::Requirement
|
127
|
-
requirements:
|
128
|
-
- - "~>"
|
129
|
-
- !ruby/object:Gem::Version
|
130
|
-
version: '1.16'
|
131
|
-
type: :development
|
132
|
-
prerelease: false
|
133
|
-
version_requirements: !ruby/object:Gem::Requirement
|
134
|
-
requirements:
|
135
|
-
- - "~>"
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
version: '1.16'
|
138
|
-
- !ruby/object:Gem::Dependency
|
139
|
-
name: rubocop-rspec
|
140
|
-
requirement: !ruby/object:Gem::Requirement
|
141
|
-
requirements:
|
142
|
-
- - "~>"
|
143
|
-
- !ruby/object:Gem::Version
|
144
|
-
version: '2.19'
|
145
|
-
type: :development
|
146
|
-
prerelease: false
|
147
|
-
version_requirements: !ruby/object:Gem::Requirement
|
148
|
-
requirements:
|
149
|
-
- - "~>"
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: '2.19'
|
33
|
+
version: '8.0'
|
152
34
|
description:
|
153
35
|
email:
|
154
36
|
- alistairm@nulogy.com
|
@@ -164,16 +46,13 @@ files:
|
|
164
46
|
- CHANGELOG.md
|
165
47
|
- CODE_OF_CONDUCT.md
|
166
48
|
- Gemfile
|
167
|
-
- Gemfile.lock
|
168
49
|
- README.md
|
169
50
|
- Rakefile
|
170
51
|
- bin/console
|
171
52
|
- bin/setup
|
172
53
|
- gemfiles/.bundle/config
|
173
|
-
- gemfiles/
|
174
|
-
- gemfiles/
|
175
|
-
- gemfiles/rails_7.gemfile
|
176
|
-
- gemfiles/rails_7.gemfile.lock
|
54
|
+
- gemfiles/rails_7_1.gemfile
|
55
|
+
- gemfiles/rails_7_2.gemfile
|
177
56
|
- lib/normalize_line_endings.rb
|
178
57
|
- lib/normalize_line_endings/version.rb
|
179
58
|
- normalize_line_endings.gemspec
|
@@ -183,7 +62,6 @@ licenses:
|
|
183
62
|
metadata:
|
184
63
|
homepage_uri: https://github.com/nulogy/normalize_line_endings
|
185
64
|
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
65
|
bug_tracker_uri: https://github.com/nulogy/normalize_line_endings/issues
|
188
66
|
rubygems_mfa_required: 'true'
|
189
67
|
post_install_message:
|
@@ -194,14 +72,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
194
72
|
requirements:
|
195
73
|
- - ">="
|
196
74
|
- !ruby/object:Gem::Version
|
197
|
-
version: '3.
|
75
|
+
version: '3.3'
|
198
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
199
77
|
requirements:
|
200
78
|
- - ">="
|
201
79
|
- !ruby/object:Gem::Version
|
202
80
|
version: '0'
|
203
81
|
requirements: []
|
204
|
-
rubygems_version: 3.
|
82
|
+
rubygems_version: 3.5.22
|
205
83
|
signing_key:
|
206
84
|
specification_version: 4
|
207
85
|
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
|
data/gemfiles/rails_6_1.gemfile
DELETED
@@ -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
|
data/gemfiles/rails_7.gemfile
DELETED
@@ -1,212 +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 (7.0.4.3)
|
11
|
-
actionpack (= 7.0.4.3)
|
12
|
-
activesupport (= 7.0.4.3)
|
13
|
-
nio4r (~> 2.0)
|
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)
|
21
|
-
mail (>= 2.7.1)
|
22
|
-
net-imap
|
23
|
-
net-pop
|
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)
|
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.4.3)
|
36
|
-
actionview (= 7.0.4.3)
|
37
|
-
activesupport (= 7.0.4.3)
|
38
|
-
rack (~> 2.0, >= 2.2.0)
|
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.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)
|
47
|
-
globalid (>= 0.6.0)
|
48
|
-
nokogiri (>= 1.8.5)
|
49
|
-
actionview (7.0.4.3)
|
50
|
-
activesupport (= 7.0.4.3)
|
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.4.3)
|
56
|
-
activesupport (= 7.0.4.3)
|
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)
|
68
|
-
marcel (~> 1.0)
|
69
|
-
mini_mime (>= 1.1.0)
|
70
|
-
activesupport (7.0.4.3)
|
71
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
72
|
-
i18n (>= 1.6, < 2)
|
73
|
-
minitest (>= 5.1)
|
74
|
-
tzinfo (~> 2.0)
|
75
|
-
appraisal (2.4.1)
|
76
|
-
bundler
|
77
|
-
rake
|
78
|
-
thor (>= 0.14.0)
|
79
|
-
ast (2.4.2)
|
80
|
-
builder (3.2.4)
|
81
|
-
concurrent-ruby (1.2.2)
|
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)
|
89
|
-
concurrent-ruby (~> 1.0)
|
90
|
-
json (2.6.3)
|
91
|
-
loofah (2.19.1)
|
92
|
-
crass (~> 1.0.2)
|
93
|
-
nokogiri (>= 1.5.9)
|
94
|
-
mail (2.8.1)
|
95
|
-
mini_mime (>= 0.1.1)
|
96
|
-
net-imap
|
97
|
-
net-pop
|
98
|
-
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)
|
104
|
-
date
|
105
|
-
net-protocol
|
106
|
-
net-pop (0.1.2)
|
107
|
-
net-protocol
|
108
|
-
net-protocol (0.2.1)
|
109
|
-
timeout
|
110
|
-
net-smtp (0.3.3)
|
111
|
-
net-protocol
|
112
|
-
nio4r (2.5.8)
|
113
|
-
nokogiri (1.14.2-x86_64-darwin)
|
114
|
-
racc (~> 1.4)
|
115
|
-
parallel (1.22.1)
|
116
|
-
parser (3.2.1.1)
|
117
|
-
ast (~> 2.4.1)
|
118
|
-
racc (1.6.2)
|
119
|
-
rack (2.2.6.4)
|
120
|
-
rack-test (2.0.2)
|
121
|
-
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)
|
134
|
-
bundler (>= 1.15.0)
|
135
|
-
railties (= 7.0.4.3)
|
136
|
-
rails-dom-testing (2.0.3)
|
137
|
-
activesupport (>= 4.2.0)
|
138
|
-
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)
|
144
|
-
method_source
|
145
|
-
rake (>= 12.2)
|
146
|
-
thor (~> 1.0)
|
147
|
-
zeitwerk (~> 2.5)
|
148
|
-
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)
|
159
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
160
|
-
rspec-support (~> 3.12.0)
|
161
|
-
rspec-mocks (3.12.4)
|
162
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
163
|
-
rspec-support (~> 3.12.0)
|
164
|
-
rspec-support (3.12.0)
|
165
|
-
rubocop (1.48.1)
|
166
|
-
json (~> 2.3)
|
167
|
-
parallel (~> 1.10)
|
168
|
-
parser (>= 3.2.0.0)
|
169
|
-
rainbow (>= 2.2.2, < 4.0)
|
170
|
-
regexp_parser (>= 1.8, < 3.0)
|
171
|
-
rexml (>= 3.2.5, < 4.0)
|
172
|
-
rubocop-ast (>= 1.26.0, < 2.0)
|
173
|
-
ruby-progressbar (~> 1.7)
|
174
|
-
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)
|
185
|
-
ruby-progressbar (1.13.0)
|
186
|
-
thor (1.2.1)
|
187
|
-
timeout (0.3.2)
|
188
|
-
tzinfo (2.0.6)
|
189
|
-
concurrent-ruby (~> 1.0)
|
190
|
-
unicode-display_width (2.4.2)
|
191
|
-
websocket-driver (0.7.5)
|
192
|
-
websocket-extensions (>= 0.1.0)
|
193
|
-
websocket-extensions (0.1.5)
|
194
|
-
zeitwerk (2.6.7)
|
195
|
-
|
196
|
-
PLATFORMS
|
197
|
-
ruby
|
198
|
-
|
199
|
-
DEPENDENCIES
|
200
|
-
activemodel (>= 6.1, < 7.1)
|
201
|
-
appraisal (~> 2.4)
|
202
|
-
bundler (= 2.2.10)
|
203
|
-
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)
|
210
|
-
|
211
|
-
BUNDLED WITH
|
212
|
-
2.2.10
|