departure 6.6.0 → 6.8.0
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/.github/workflows/test.yml +8 -52
- data/.gitignore +1 -1
- data/.rubocop.yml +6 -9
- data/.rubocop_todo.yml +168 -41
- data/Appraisals +15 -0
- data/CHANGELOG.md +15 -0
- data/Gemfile +6 -1
- data/Gemfile.lock +205 -0
- data/README.md +10 -2
- data/Rakefile +8 -0
- data/bin/rails +24 -0
- data/departure.gemspec +5 -8
- data/gemfiles/rails_6_1.gemfile +10 -0
- data/gemfiles/rails_6_1.gemfile.lock +243 -0
- data/gemfiles/rails_7_0.gemfile +10 -0
- data/gemfiles/rails_7_0.gemfile.lock +242 -0
- data/gemfiles/rails_7_1.gemfile +10 -0
- data/gemfiles/rails_7_1.gemfile.lock +274 -0
- data/gemfiles/rails_7_2.gemfile +10 -0
- data/gemfiles/rails_7_2.gemfile.lock +276 -0
- data/lib/active_record/connection_adapters/patch_connection_handling.rb +18 -0
- data/lib/active_record/connection_adapters/percona_adapter.rb +1 -35
- data/lib/active_record/connection_adapters/rails_7_2_departure_adapter.rb +215 -0
- data/lib/departure/command.rb +6 -2
- data/lib/departure/configuration.rb +2 -1
- data/lib/departure/rails_adapter.rb +106 -0
- data/lib/departure/rails_patches/active_record_migrator_with_advisory_lock_patch.rb +25 -0
- data/lib/departure/runner.rb +16 -4
- data/lib/departure/version.rb +1 -1
- data/lib/departure.rb +2 -5
- data/lib/lhm/column_with_sql.rb +1 -8
- data/test_database.rb +2 -6
- metadata +45 -16
data/README.md
CHANGED
@@ -147,13 +147,21 @@ end
|
|
147
147
|
It's strongly recommended to name it after this gems name, such as
|
148
148
|
`config/initializers/departure.rb`
|
149
149
|
|
150
|
+
### Configuration Options
|
151
|
+
|
152
|
+
All configuration options are configurable from the `Departure.configure` block example below
|
153
|
+
|
154
|
+
|Option|Default|What it Controls|
|
155
|
+
|---|---|---|
|
156
|
+
|disable_rails_advisory_lock_patch|false|When truthy, disables a patch in at least rails 7.1 and 7.2 where rails throws ConcurrentMigrationErrors due to the inability to release the advisory lock in migrations|
|
157
|
+
|
150
158
|
### Disable on per-migration basis
|
151
159
|
|
152
160
|
Departure gem is enabled by default.
|
153
161
|
In order to disable it on a particular migration the method `disable_departure!` should be used.
|
154
162
|
|
155
163
|
```ruby
|
156
|
-
class UseDepartureMigration < ActiveRecord::Migration[
|
164
|
+
class UseDepartureMigration < ActiveRecord::Migration[7.1]
|
157
165
|
disable_departure!
|
158
166
|
|
159
167
|
def up
|
@@ -170,7 +178,7 @@ If you wish to only have Departure enabled per-migration, set `config.enabled_by
|
|
170
178
|
Then, add a `uses_departure!` statement in migrations where Departure should be used:
|
171
179
|
|
172
180
|
```ruby
|
173
|
-
class UseDepartureMigration < ActiveRecord::Migration[
|
181
|
+
class UseDepartureMigration < ActiveRecord::Migration[7.1]
|
174
182
|
uses_departure!
|
175
183
|
|
176
184
|
def up
|
data/Rakefile
CHANGED
@@ -12,6 +12,14 @@ namespace :db do
|
|
12
12
|
desc 'Create the test database'
|
13
13
|
task :create do
|
14
14
|
config = Configuration.new
|
15
|
+
|
16
|
+
ActiveRecord::Base.establish_connection(
|
17
|
+
adapter: 'mysql2',
|
18
|
+
host: config['hostname'],
|
19
|
+
username: config['username'],
|
20
|
+
password: config['password']
|
21
|
+
)
|
22
|
+
|
15
23
|
TestDatabase.new(config).setup_test_database
|
16
24
|
end
|
17
25
|
end
|
data/bin/rails
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
ENV['RAILS_ENV'] ||= 'development'
|
4
|
+
|
5
|
+
APP_PATH = File.expand_path('../spec/dummy/config/application', __dir__)
|
6
|
+
require_relative '../spec/dummy/config/boot'
|
7
|
+
require 'rake'
|
8
|
+
require 'departure'
|
9
|
+
|
10
|
+
# Load the rails application
|
11
|
+
require APP_PATH
|
12
|
+
|
13
|
+
begin
|
14
|
+
Rails.application.load_tasks
|
15
|
+
Rake::Task['db:create'].invoke
|
16
|
+
|
17
|
+
ENV['SCHEMA'] = File.expand_path('../spec/dummy/db/base_schema.rb', __dir__)
|
18
|
+
Rake::Task['db:schema:load'].invoke
|
19
|
+
rescue StandardError => e
|
20
|
+
puts "there was an error creating your database #{e}"
|
21
|
+
exit 1
|
22
|
+
end
|
23
|
+
|
24
|
+
require 'rails/commands'
|
data/departure.gemspec
CHANGED
@@ -5,10 +5,6 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
require 'departure/version'
|
7
7
|
|
8
|
-
# This environment variable is set on CI to facilitate testing with multiple
|
9
|
-
# versions of Rails.
|
10
|
-
RAILS_DEPENDENCY_VERSION = ENV.fetch('RAILS_VERSION', ['>= 5.2.0', '!= 7.0.0', '< 7.2.0'])
|
11
|
-
|
12
8
|
Gem::Specification.new do |spec|
|
13
9
|
spec.name = 'departure'
|
14
10
|
spec.version = Departure::VERSION
|
@@ -23,12 +19,13 @@ Gem::Specification.new do |spec|
|
|
23
19
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
24
20
|
spec.require_paths = ['lib']
|
25
21
|
|
26
|
-
spec.required_ruby_version = '>= 2.
|
22
|
+
spec.required_ruby_version = '>= 2.7.0'
|
27
23
|
|
28
|
-
spec.add_runtime_dependency 'railties',
|
29
|
-
spec.add_runtime_dependency 'activerecord',
|
30
|
-
spec.add_runtime_dependency 'mysql2', '>= 0.4.0', '
|
24
|
+
spec.add_runtime_dependency 'railties', '>= 6.0.0', '!= 7.0.0', '< 7.3.0'
|
25
|
+
spec.add_runtime_dependency 'activerecord', '>= 6.0.0', '!= 7.0.0', '< 7.3.0'
|
26
|
+
spec.add_runtime_dependency 'mysql2', '>= 0.4.0', '< 0.6.0'
|
31
27
|
|
28
|
+
spec.add_development_dependency 'appraisal', '~> 2.4.1'
|
32
29
|
spec.add_development_dependency 'rake', '>= 10.0'
|
33
30
|
spec.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0'
|
34
31
|
spec.add_development_dependency 'rspec-its', '~> 1.2'
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gem 'codeclimate-test-reporter', '~> 1.0.3', group: :test, require: nil
|
6
|
+
gem 'rails', '6.1.7.6'
|
7
|
+
gem 'rubocop', '~> 1.60.2', require: false
|
8
|
+
gem 'rubocop-performance', '~> 1.20.2', require: false
|
9
|
+
|
10
|
+
gemspec path: '../'
|
@@ -0,0 +1,243 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
departure (6.7.0)
|
5
|
+
activerecord (>= 6.0.0, < 7.3.0, != 7.0.0)
|
6
|
+
mysql2 (>= 0.4.0, < 0.6.0)
|
7
|
+
railties (>= 6.0.0, < 7.3.0, != 7.0.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (6.1.7.6)
|
13
|
+
actionpack (= 6.1.7.6)
|
14
|
+
activesupport (= 6.1.7.6)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (6.1.7.6)
|
18
|
+
actionpack (= 6.1.7.6)
|
19
|
+
activejob (= 6.1.7.6)
|
20
|
+
activerecord (= 6.1.7.6)
|
21
|
+
activestorage (= 6.1.7.6)
|
22
|
+
activesupport (= 6.1.7.6)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
actionmailer (6.1.7.6)
|
25
|
+
actionpack (= 6.1.7.6)
|
26
|
+
actionview (= 6.1.7.6)
|
27
|
+
activejob (= 6.1.7.6)
|
28
|
+
activesupport (= 6.1.7.6)
|
29
|
+
mail (~> 2.5, >= 2.5.4)
|
30
|
+
rails-dom-testing (~> 2.0)
|
31
|
+
actionpack (6.1.7.6)
|
32
|
+
actionview (= 6.1.7.6)
|
33
|
+
activesupport (= 6.1.7.6)
|
34
|
+
rack (~> 2.0, >= 2.0.9)
|
35
|
+
rack-test (>= 0.6.3)
|
36
|
+
rails-dom-testing (~> 2.0)
|
37
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
38
|
+
actiontext (6.1.7.6)
|
39
|
+
actionpack (= 6.1.7.6)
|
40
|
+
activerecord (= 6.1.7.6)
|
41
|
+
activestorage (= 6.1.7.6)
|
42
|
+
activesupport (= 6.1.7.6)
|
43
|
+
nokogiri (>= 1.8.5)
|
44
|
+
actionview (6.1.7.6)
|
45
|
+
activesupport (= 6.1.7.6)
|
46
|
+
builder (~> 3.1)
|
47
|
+
erubi (~> 1.4)
|
48
|
+
rails-dom-testing (~> 2.0)
|
49
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
50
|
+
activejob (6.1.7.6)
|
51
|
+
activesupport (= 6.1.7.6)
|
52
|
+
globalid (>= 0.3.6)
|
53
|
+
activemodel (6.1.7.6)
|
54
|
+
activesupport (= 6.1.7.6)
|
55
|
+
activerecord (6.1.7.6)
|
56
|
+
activemodel (= 6.1.7.6)
|
57
|
+
activesupport (= 6.1.7.6)
|
58
|
+
activestorage (6.1.7.6)
|
59
|
+
actionpack (= 6.1.7.6)
|
60
|
+
activejob (= 6.1.7.6)
|
61
|
+
activerecord (= 6.1.7.6)
|
62
|
+
activesupport (= 6.1.7.6)
|
63
|
+
marcel (~> 1.0)
|
64
|
+
mini_mime (>= 1.1.0)
|
65
|
+
activesupport (6.1.7.6)
|
66
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
67
|
+
i18n (>= 1.6, < 2)
|
68
|
+
minitest (>= 5.1)
|
69
|
+
tzinfo (~> 2.0)
|
70
|
+
zeitwerk (~> 2.3)
|
71
|
+
appraisal (2.4.1)
|
72
|
+
bundler
|
73
|
+
rake
|
74
|
+
thor (>= 0.14.0)
|
75
|
+
ast (2.4.2)
|
76
|
+
builder (3.3.0)
|
77
|
+
byebug (11.1.3)
|
78
|
+
climate_control (0.0.4)
|
79
|
+
activesupport (>= 3.0)
|
80
|
+
codeclimate-test-reporter (1.0.9)
|
81
|
+
simplecov (<= 0.13)
|
82
|
+
coderay (1.1.3)
|
83
|
+
concurrent-ruby (1.3.3)
|
84
|
+
crass (1.0.6)
|
85
|
+
date (3.3.4)
|
86
|
+
diff-lcs (1.5.1)
|
87
|
+
docile (1.1.5)
|
88
|
+
erubi (1.13.0)
|
89
|
+
globalid (1.2.1)
|
90
|
+
activesupport (>= 6.1)
|
91
|
+
i18n (1.14.5)
|
92
|
+
concurrent-ruby (~> 1.0)
|
93
|
+
json (2.7.2)
|
94
|
+
language_server-protocol (3.17.0.3)
|
95
|
+
loofah (2.22.0)
|
96
|
+
crass (~> 1.0.2)
|
97
|
+
nokogiri (>= 1.12.0)
|
98
|
+
mail (2.8.1)
|
99
|
+
mini_mime (>= 0.1.1)
|
100
|
+
net-imap
|
101
|
+
net-pop
|
102
|
+
net-smtp
|
103
|
+
marcel (1.0.4)
|
104
|
+
method_source (1.1.0)
|
105
|
+
mini_mime (1.1.5)
|
106
|
+
minitest (5.24.1)
|
107
|
+
mysql2 (0.5.6)
|
108
|
+
net-imap (0.4.12)
|
109
|
+
date
|
110
|
+
net-protocol
|
111
|
+
net-pop (0.1.2)
|
112
|
+
net-protocol
|
113
|
+
net-protocol (0.2.2)
|
114
|
+
timeout
|
115
|
+
net-smtp (0.5.0)
|
116
|
+
net-protocol
|
117
|
+
nio4r (2.7.3)
|
118
|
+
nokogiri (1.18.3-arm64-darwin)
|
119
|
+
racc (~> 1.4)
|
120
|
+
nokogiri (1.18.3-x86_64-linux-gnu)
|
121
|
+
racc (~> 1.4)
|
122
|
+
parallel (1.25.1)
|
123
|
+
parser (3.3.3.0)
|
124
|
+
ast (~> 2.4.1)
|
125
|
+
racc
|
126
|
+
pry (0.14.2)
|
127
|
+
coderay (~> 1.1)
|
128
|
+
method_source (~> 1.0)
|
129
|
+
pry-byebug (3.10.1)
|
130
|
+
byebug (~> 11.0)
|
131
|
+
pry (>= 0.13, < 0.15)
|
132
|
+
racc (1.8.0)
|
133
|
+
rack (2.2.9)
|
134
|
+
rack-test (2.1.0)
|
135
|
+
rack (>= 1.3)
|
136
|
+
rails (6.1.7.6)
|
137
|
+
actioncable (= 6.1.7.6)
|
138
|
+
actionmailbox (= 6.1.7.6)
|
139
|
+
actionmailer (= 6.1.7.6)
|
140
|
+
actionpack (= 6.1.7.6)
|
141
|
+
actiontext (= 6.1.7.6)
|
142
|
+
actionview (= 6.1.7.6)
|
143
|
+
activejob (= 6.1.7.6)
|
144
|
+
activemodel (= 6.1.7.6)
|
145
|
+
activerecord (= 6.1.7.6)
|
146
|
+
activestorage (= 6.1.7.6)
|
147
|
+
activesupport (= 6.1.7.6)
|
148
|
+
bundler (>= 1.15.0)
|
149
|
+
railties (= 6.1.7.6)
|
150
|
+
sprockets-rails (>= 2.0.0)
|
151
|
+
rails-dom-testing (2.2.0)
|
152
|
+
activesupport (>= 5.0.0)
|
153
|
+
minitest
|
154
|
+
nokogiri (>= 1.6)
|
155
|
+
rails-html-sanitizer (1.6.0)
|
156
|
+
loofah (~> 2.21)
|
157
|
+
nokogiri (~> 1.14)
|
158
|
+
railties (6.1.7.6)
|
159
|
+
actionpack (= 6.1.7.6)
|
160
|
+
activesupport (= 6.1.7.6)
|
161
|
+
method_source
|
162
|
+
rake (>= 12.2)
|
163
|
+
thor (~> 1.0)
|
164
|
+
rainbow (3.1.1)
|
165
|
+
rake (13.2.1)
|
166
|
+
regexp_parser (2.9.2)
|
167
|
+
rexml (3.3.0)
|
168
|
+
strscan
|
169
|
+
rspec (3.13.0)
|
170
|
+
rspec-core (~> 3.13.0)
|
171
|
+
rspec-expectations (~> 3.13.0)
|
172
|
+
rspec-mocks (~> 3.13.0)
|
173
|
+
rspec-core (3.13.0)
|
174
|
+
rspec-support (~> 3.13.0)
|
175
|
+
rspec-expectations (3.13.1)
|
176
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
177
|
+
rspec-support (~> 3.13.0)
|
178
|
+
rspec-its (1.3.0)
|
179
|
+
rspec-core (>= 3.0.0)
|
180
|
+
rspec-expectations (>= 3.0.0)
|
181
|
+
rspec-mocks (3.13.1)
|
182
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
+
rspec-support (~> 3.13.0)
|
184
|
+
rspec-support (3.13.1)
|
185
|
+
rubocop (1.60.2)
|
186
|
+
json (~> 2.3)
|
187
|
+
language_server-protocol (>= 3.17.0)
|
188
|
+
parallel (~> 1.10)
|
189
|
+
parser (>= 3.3.0.2)
|
190
|
+
rainbow (>= 2.2.2, < 4.0)
|
191
|
+
regexp_parser (>= 1.8, < 3.0)
|
192
|
+
rexml (>= 3.2.5, < 4.0)
|
193
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
194
|
+
ruby-progressbar (~> 1.7)
|
195
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
196
|
+
rubocop-ast (1.31.3)
|
197
|
+
parser (>= 3.3.1.0)
|
198
|
+
rubocop-performance (1.20.2)
|
199
|
+
rubocop (>= 1.48.1, < 2.0)
|
200
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
201
|
+
ruby-progressbar (1.13.0)
|
202
|
+
simplecov (0.13.0)
|
203
|
+
docile (~> 1.1.0)
|
204
|
+
json (>= 1.8, < 3)
|
205
|
+
simplecov-html (~> 0.10.0)
|
206
|
+
simplecov-html (0.10.2)
|
207
|
+
sprockets (4.2.1)
|
208
|
+
concurrent-ruby (~> 1.0)
|
209
|
+
rack (>= 2.2.4, < 4)
|
210
|
+
sprockets-rails (3.4.2)
|
211
|
+
actionpack (>= 5.2)
|
212
|
+
activesupport (>= 5.2)
|
213
|
+
sprockets (>= 3.0.0)
|
214
|
+
strscan (3.1.0)
|
215
|
+
thor (1.3.1)
|
216
|
+
timeout (0.4.1)
|
217
|
+
tzinfo (2.0.6)
|
218
|
+
concurrent-ruby (~> 1.0)
|
219
|
+
unicode-display_width (2.5.0)
|
220
|
+
websocket-driver (0.7.6)
|
221
|
+
websocket-extensions (>= 0.1.0)
|
222
|
+
websocket-extensions (0.1.5)
|
223
|
+
zeitwerk (2.6.16)
|
224
|
+
|
225
|
+
PLATFORMS
|
226
|
+
arm64-darwin-23
|
227
|
+
x86_64-linux
|
228
|
+
|
229
|
+
DEPENDENCIES
|
230
|
+
appraisal (~> 2.4.1)
|
231
|
+
climate_control (~> 0.0.3)
|
232
|
+
codeclimate-test-reporter (~> 1.0.3)
|
233
|
+
departure!
|
234
|
+
pry-byebug
|
235
|
+
rails (= 6.1.7.6)
|
236
|
+
rake (>= 10.0)
|
237
|
+
rspec (~> 3.4, >= 3.4.0)
|
238
|
+
rspec-its (~> 1.2)
|
239
|
+
rubocop (~> 1.60.2)
|
240
|
+
rubocop-performance (~> 1.20.2)
|
241
|
+
|
242
|
+
BUNDLED WITH
|
243
|
+
2.4.22
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gem 'codeclimate-test-reporter', '~> 1.0.3', group: :test, require: nil
|
6
|
+
gem 'rails', '7.0.8'
|
7
|
+
gem 'rubocop', '~> 1.60.2', require: false
|
8
|
+
gem 'rubocop-performance', '~> 1.20.2', require: false
|
9
|
+
|
10
|
+
gemspec path: '../'
|
@@ -0,0 +1,242 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
departure (6.7.0)
|
5
|
+
activerecord (>= 6.0.0, < 7.3.0, != 7.0.0)
|
6
|
+
mysql2 (>= 0.4.0, < 0.6.0)
|
7
|
+
railties (>= 6.0.0, < 7.3.0, != 7.0.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (7.0.8)
|
13
|
+
actionpack (= 7.0.8)
|
14
|
+
activesupport (= 7.0.8)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (7.0.8)
|
18
|
+
actionpack (= 7.0.8)
|
19
|
+
activejob (= 7.0.8)
|
20
|
+
activerecord (= 7.0.8)
|
21
|
+
activestorage (= 7.0.8)
|
22
|
+
activesupport (= 7.0.8)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
net-imap
|
25
|
+
net-pop
|
26
|
+
net-smtp
|
27
|
+
actionmailer (7.0.8)
|
28
|
+
actionpack (= 7.0.8)
|
29
|
+
actionview (= 7.0.8)
|
30
|
+
activejob (= 7.0.8)
|
31
|
+
activesupport (= 7.0.8)
|
32
|
+
mail (~> 2.5, >= 2.5.4)
|
33
|
+
net-imap
|
34
|
+
net-pop
|
35
|
+
net-smtp
|
36
|
+
rails-dom-testing (~> 2.0)
|
37
|
+
actionpack (7.0.8)
|
38
|
+
actionview (= 7.0.8)
|
39
|
+
activesupport (= 7.0.8)
|
40
|
+
rack (~> 2.0, >= 2.2.4)
|
41
|
+
rack-test (>= 0.6.3)
|
42
|
+
rails-dom-testing (~> 2.0)
|
43
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
44
|
+
actiontext (7.0.8)
|
45
|
+
actionpack (= 7.0.8)
|
46
|
+
activerecord (= 7.0.8)
|
47
|
+
activestorage (= 7.0.8)
|
48
|
+
activesupport (= 7.0.8)
|
49
|
+
globalid (>= 0.6.0)
|
50
|
+
nokogiri (>= 1.8.5)
|
51
|
+
actionview (7.0.8)
|
52
|
+
activesupport (= 7.0.8)
|
53
|
+
builder (~> 3.1)
|
54
|
+
erubi (~> 1.4)
|
55
|
+
rails-dom-testing (~> 2.0)
|
56
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
57
|
+
activejob (7.0.8)
|
58
|
+
activesupport (= 7.0.8)
|
59
|
+
globalid (>= 0.3.6)
|
60
|
+
activemodel (7.0.8)
|
61
|
+
activesupport (= 7.0.8)
|
62
|
+
activerecord (7.0.8)
|
63
|
+
activemodel (= 7.0.8)
|
64
|
+
activesupport (= 7.0.8)
|
65
|
+
activestorage (7.0.8)
|
66
|
+
actionpack (= 7.0.8)
|
67
|
+
activejob (= 7.0.8)
|
68
|
+
activerecord (= 7.0.8)
|
69
|
+
activesupport (= 7.0.8)
|
70
|
+
marcel (~> 1.0)
|
71
|
+
mini_mime (>= 1.1.0)
|
72
|
+
activesupport (7.0.8)
|
73
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
74
|
+
i18n (>= 1.6, < 2)
|
75
|
+
minitest (>= 5.1)
|
76
|
+
tzinfo (~> 2.0)
|
77
|
+
appraisal (2.4.1)
|
78
|
+
bundler
|
79
|
+
rake
|
80
|
+
thor (>= 0.14.0)
|
81
|
+
ast (2.4.2)
|
82
|
+
builder (3.3.0)
|
83
|
+
byebug (11.1.3)
|
84
|
+
climate_control (0.0.4)
|
85
|
+
activesupport (>= 3.0)
|
86
|
+
codeclimate-test-reporter (1.0.9)
|
87
|
+
simplecov (<= 0.13)
|
88
|
+
coderay (1.1.3)
|
89
|
+
concurrent-ruby (1.3.3)
|
90
|
+
crass (1.0.6)
|
91
|
+
date (3.3.4)
|
92
|
+
diff-lcs (1.5.1)
|
93
|
+
docile (1.1.5)
|
94
|
+
erubi (1.13.0)
|
95
|
+
globalid (1.2.1)
|
96
|
+
activesupport (>= 6.1)
|
97
|
+
i18n (1.14.5)
|
98
|
+
concurrent-ruby (~> 1.0)
|
99
|
+
json (2.7.2)
|
100
|
+
language_server-protocol (3.17.0.3)
|
101
|
+
loofah (2.22.0)
|
102
|
+
crass (~> 1.0.2)
|
103
|
+
nokogiri (>= 1.12.0)
|
104
|
+
mail (2.8.1)
|
105
|
+
mini_mime (>= 0.1.1)
|
106
|
+
net-imap
|
107
|
+
net-pop
|
108
|
+
net-smtp
|
109
|
+
marcel (1.0.4)
|
110
|
+
method_source (1.1.0)
|
111
|
+
mini_mime (1.1.5)
|
112
|
+
minitest (5.24.1)
|
113
|
+
mysql2 (0.5.6)
|
114
|
+
net-imap (0.4.12)
|
115
|
+
date
|
116
|
+
net-protocol
|
117
|
+
net-pop (0.1.2)
|
118
|
+
net-protocol
|
119
|
+
net-protocol (0.2.2)
|
120
|
+
timeout
|
121
|
+
net-smtp (0.5.0)
|
122
|
+
net-protocol
|
123
|
+
nio4r (2.7.3)
|
124
|
+
nokogiri (1.18.3-arm64-darwin)
|
125
|
+
racc (~> 1.4)
|
126
|
+
nokogiri (1.18.3-x86_64-linux-gnu)
|
127
|
+
racc (~> 1.4)
|
128
|
+
parallel (1.25.1)
|
129
|
+
parser (3.3.3.0)
|
130
|
+
ast (~> 2.4.1)
|
131
|
+
racc
|
132
|
+
pry (0.14.2)
|
133
|
+
coderay (~> 1.1)
|
134
|
+
method_source (~> 1.0)
|
135
|
+
pry-byebug (3.10.1)
|
136
|
+
byebug (~> 11.0)
|
137
|
+
pry (>= 0.13, < 0.15)
|
138
|
+
racc (1.8.0)
|
139
|
+
rack (2.2.9)
|
140
|
+
rack-test (2.1.0)
|
141
|
+
rack (>= 1.3)
|
142
|
+
rails (7.0.8)
|
143
|
+
actioncable (= 7.0.8)
|
144
|
+
actionmailbox (= 7.0.8)
|
145
|
+
actionmailer (= 7.0.8)
|
146
|
+
actionpack (= 7.0.8)
|
147
|
+
actiontext (= 7.0.8)
|
148
|
+
actionview (= 7.0.8)
|
149
|
+
activejob (= 7.0.8)
|
150
|
+
activemodel (= 7.0.8)
|
151
|
+
activerecord (= 7.0.8)
|
152
|
+
activestorage (= 7.0.8)
|
153
|
+
activesupport (= 7.0.8)
|
154
|
+
bundler (>= 1.15.0)
|
155
|
+
railties (= 7.0.8)
|
156
|
+
rails-dom-testing (2.2.0)
|
157
|
+
activesupport (>= 5.0.0)
|
158
|
+
minitest
|
159
|
+
nokogiri (>= 1.6)
|
160
|
+
rails-html-sanitizer (1.6.0)
|
161
|
+
loofah (~> 2.21)
|
162
|
+
nokogiri (~> 1.14)
|
163
|
+
railties (7.0.8)
|
164
|
+
actionpack (= 7.0.8)
|
165
|
+
activesupport (= 7.0.8)
|
166
|
+
method_source
|
167
|
+
rake (>= 12.2)
|
168
|
+
thor (~> 1.0)
|
169
|
+
zeitwerk (~> 2.5)
|
170
|
+
rainbow (3.1.1)
|
171
|
+
rake (13.2.1)
|
172
|
+
regexp_parser (2.9.2)
|
173
|
+
rexml (3.3.0)
|
174
|
+
strscan
|
175
|
+
rspec (3.13.0)
|
176
|
+
rspec-core (~> 3.13.0)
|
177
|
+
rspec-expectations (~> 3.13.0)
|
178
|
+
rspec-mocks (~> 3.13.0)
|
179
|
+
rspec-core (3.13.0)
|
180
|
+
rspec-support (~> 3.13.0)
|
181
|
+
rspec-expectations (3.13.1)
|
182
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
+
rspec-support (~> 3.13.0)
|
184
|
+
rspec-its (1.3.0)
|
185
|
+
rspec-core (>= 3.0.0)
|
186
|
+
rspec-expectations (>= 3.0.0)
|
187
|
+
rspec-mocks (3.13.1)
|
188
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
189
|
+
rspec-support (~> 3.13.0)
|
190
|
+
rspec-support (3.13.1)
|
191
|
+
rubocop (1.60.2)
|
192
|
+
json (~> 2.3)
|
193
|
+
language_server-protocol (>= 3.17.0)
|
194
|
+
parallel (~> 1.10)
|
195
|
+
parser (>= 3.3.0.2)
|
196
|
+
rainbow (>= 2.2.2, < 4.0)
|
197
|
+
regexp_parser (>= 1.8, < 3.0)
|
198
|
+
rexml (>= 3.2.5, < 4.0)
|
199
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
200
|
+
ruby-progressbar (~> 1.7)
|
201
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
202
|
+
rubocop-ast (1.31.3)
|
203
|
+
parser (>= 3.3.1.0)
|
204
|
+
rubocop-performance (1.20.2)
|
205
|
+
rubocop (>= 1.48.1, < 2.0)
|
206
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
207
|
+
ruby-progressbar (1.13.0)
|
208
|
+
simplecov (0.13.0)
|
209
|
+
docile (~> 1.1.0)
|
210
|
+
json (>= 1.8, < 3)
|
211
|
+
simplecov-html (~> 0.10.0)
|
212
|
+
simplecov-html (0.10.2)
|
213
|
+
strscan (3.1.0)
|
214
|
+
thor (1.3.1)
|
215
|
+
timeout (0.4.1)
|
216
|
+
tzinfo (2.0.6)
|
217
|
+
concurrent-ruby (~> 1.0)
|
218
|
+
unicode-display_width (2.5.0)
|
219
|
+
websocket-driver (0.7.6)
|
220
|
+
websocket-extensions (>= 0.1.0)
|
221
|
+
websocket-extensions (0.1.5)
|
222
|
+
zeitwerk (2.6.16)
|
223
|
+
|
224
|
+
PLATFORMS
|
225
|
+
arm64-darwin-23
|
226
|
+
x86_64-linux
|
227
|
+
|
228
|
+
DEPENDENCIES
|
229
|
+
appraisal (~> 2.4.1)
|
230
|
+
climate_control (~> 0.0.3)
|
231
|
+
codeclimate-test-reporter (~> 1.0.3)
|
232
|
+
departure!
|
233
|
+
pry-byebug
|
234
|
+
rails (= 7.0.8)
|
235
|
+
rake (>= 10.0)
|
236
|
+
rspec (~> 3.4, >= 3.4.0)
|
237
|
+
rspec-its (~> 1.2)
|
238
|
+
rubocop (~> 1.60.2)
|
239
|
+
rubocop-performance (~> 1.20.2)
|
240
|
+
|
241
|
+
BUNDLED WITH
|
242
|
+
2.4.22
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gem 'codeclimate-test-reporter', '~> 1.0.3', group: :test, require: nil
|
6
|
+
gem 'rails', '7.1.3'
|
7
|
+
gem 'rubocop', '~> 1.74.0', require: false
|
8
|
+
gem 'rubocop-performance', '~> 1.20.2', require: false
|
9
|
+
|
10
|
+
gemspec path: '../'
|