monarch_migrate 0.6.0 → 0.7.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/ci.yml +2 -7
- data/.gitignore +1 -0
- data/.ruby-version +1 -1
- data/Appraisals +9 -2
- data/Gemfile.lock +102 -104
- data/README.md +23 -10
- data/lib/generators/monarch_migrate/install/install_generator.rb +12 -12
- data/lib/generators/rails/data_migration/data_migration_generator.rb +10 -2
- data/lib/generators/rspec/data_migration_generator.rb +20 -18
- data/lib/generators/test_unit/data_migration_generator.rb +20 -17
- data/lib/monarch_migrate/migration.rb +11 -1
- data/lib/monarch_migrate/version.rb +1 -1
- data/monarch_migrate.gemspec +3 -3
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f80c87911c7ad7157d9e4a12b913993cf606175dc53e2df5990bb1cf083ca0a
|
4
|
+
data.tar.gz: 9c763a32050006716c48172355cf471a33e3a413b0031d8f7be2a226dc274aa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ad6dd0cd4c17f2cd7dc225de7dfae1269d4b715351eb99173254be7a1dea4b7ac2d1fa6803ae719fc692a116fbe60abfd742cea01dc76237d5bfad6dc19d8f4
|
7
|
+
data.tar.gz: d6d2442b63a91bb02dd9d5f2b1eb05dd443038dc3f614a2a057063fd47cac6e31b3571879c2940e0e1d2583a42a9c751559224d0cde3c2b49c0b200d67e6baf0
|
data/.github/workflows/ci.yml
CHANGED
@@ -16,18 +16,13 @@ jobs:
|
|
16
16
|
fail-fast: false
|
17
17
|
matrix:
|
18
18
|
gemfile:
|
19
|
-
- "
|
19
|
+
- "6.0"
|
20
20
|
- "6.1"
|
21
21
|
- "7.0"
|
22
22
|
ruby:
|
23
|
-
- "2.7.3"
|
24
23
|
- "3.0.0"
|
25
24
|
- "3.1.0"
|
26
|
-
|
27
|
-
- gemfile: "5.2"
|
28
|
-
ruby: "3.0.0"
|
29
|
-
- gemfile: "5.2"
|
30
|
-
ruby: "3.1.0"
|
25
|
+
- "3.2.2"
|
31
26
|
|
32
27
|
env:
|
33
28
|
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.gemfile }}.gemfile
|
data/.gitignore
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
3.2.2
|
data/Appraisals
CHANGED
@@ -1,5 +1,12 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# We test against only supported Rails versions.
|
2
|
+
# https://guides.rubyonrails.org/maintenance_policy.html
|
3
|
+
|
4
|
+
# Rails 6.0.Z is included in the list of supported series until June 1st 2023.
|
5
|
+
appraise "rails_6.0" do
|
6
|
+
gem "rails", "~> 6.0"
|
7
|
+
gem "net-smtp", require: false
|
8
|
+
gem "net-imap", require: false
|
9
|
+
gem "net-pop", require: false
|
3
10
|
end
|
4
11
|
|
5
12
|
appraise "rails_6.1" do
|
data/Gemfile.lock
CHANGED
@@ -1,73 +1,73 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
monarch_migrate (0.
|
5
|
-
rails (>=
|
4
|
+
monarch_migrate (0.7.0)
|
5
|
+
rails (>= 6.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actioncable (7.0.
|
11
|
-
actionpack (= 7.0.
|
12
|
-
activesupport (= 7.0.
|
10
|
+
actioncable (7.0.5)
|
11
|
+
actionpack (= 7.0.5)
|
12
|
+
activesupport (= 7.0.5)
|
13
13
|
nio4r (~> 2.0)
|
14
14
|
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailbox (7.0.
|
16
|
-
actionpack (= 7.0.
|
17
|
-
activejob (= 7.0.
|
18
|
-
activerecord (= 7.0.
|
19
|
-
activestorage (= 7.0.
|
20
|
-
activesupport (= 7.0.
|
15
|
+
actionmailbox (7.0.5)
|
16
|
+
actionpack (= 7.0.5)
|
17
|
+
activejob (= 7.0.5)
|
18
|
+
activerecord (= 7.0.5)
|
19
|
+
activestorage (= 7.0.5)
|
20
|
+
activesupport (= 7.0.5)
|
21
21
|
mail (>= 2.7.1)
|
22
22
|
net-imap
|
23
23
|
net-pop
|
24
24
|
net-smtp
|
25
|
-
actionmailer (7.0.
|
26
|
-
actionpack (= 7.0.
|
27
|
-
actionview (= 7.0.
|
28
|
-
activejob (= 7.0.
|
29
|
-
activesupport (= 7.0.
|
25
|
+
actionmailer (7.0.5)
|
26
|
+
actionpack (= 7.0.5)
|
27
|
+
actionview (= 7.0.5)
|
28
|
+
activejob (= 7.0.5)
|
29
|
+
activesupport (= 7.0.5)
|
30
30
|
mail (~> 2.5, >= 2.5.4)
|
31
31
|
net-imap
|
32
32
|
net-pop
|
33
33
|
net-smtp
|
34
34
|
rails-dom-testing (~> 2.0)
|
35
|
-
actionpack (7.0.
|
36
|
-
actionview (= 7.0.
|
37
|
-
activesupport (= 7.0.
|
38
|
-
rack (~> 2.0, >= 2.2.
|
35
|
+
actionpack (7.0.5)
|
36
|
+
actionview (= 7.0.5)
|
37
|
+
activesupport (= 7.0.5)
|
38
|
+
rack (~> 2.0, >= 2.2.4)
|
39
39
|
rack-test (>= 0.6.3)
|
40
40
|
rails-dom-testing (~> 2.0)
|
41
41
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
42
|
-
actiontext (7.0.
|
43
|
-
actionpack (= 7.0.
|
44
|
-
activerecord (= 7.0.
|
45
|
-
activestorage (= 7.0.
|
46
|
-
activesupport (= 7.0.
|
42
|
+
actiontext (7.0.5)
|
43
|
+
actionpack (= 7.0.5)
|
44
|
+
activerecord (= 7.0.5)
|
45
|
+
activestorage (= 7.0.5)
|
46
|
+
activesupport (= 7.0.5)
|
47
47
|
globalid (>= 0.6.0)
|
48
48
|
nokogiri (>= 1.8.5)
|
49
|
-
actionview (7.0.
|
50
|
-
activesupport (= 7.0.
|
49
|
+
actionview (7.0.5)
|
50
|
+
activesupport (= 7.0.5)
|
51
51
|
builder (~> 3.1)
|
52
52
|
erubi (~> 1.4)
|
53
53
|
rails-dom-testing (~> 2.0)
|
54
54
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
55
|
-
activejob (7.0.
|
56
|
-
activesupport (= 7.0.
|
55
|
+
activejob (7.0.5)
|
56
|
+
activesupport (= 7.0.5)
|
57
57
|
globalid (>= 0.3.6)
|
58
|
-
activemodel (7.0.
|
59
|
-
activesupport (= 7.0.
|
60
|
-
activerecord (7.0.
|
61
|
-
activemodel (= 7.0.
|
62
|
-
activesupport (= 7.0.
|
63
|
-
activestorage (7.0.
|
64
|
-
actionpack (= 7.0.
|
65
|
-
activejob (= 7.0.
|
66
|
-
activerecord (= 7.0.
|
67
|
-
activesupport (= 7.0.
|
58
|
+
activemodel (7.0.5)
|
59
|
+
activesupport (= 7.0.5)
|
60
|
+
activerecord (7.0.5)
|
61
|
+
activemodel (= 7.0.5)
|
62
|
+
activesupport (= 7.0.5)
|
63
|
+
activestorage (7.0.5)
|
64
|
+
actionpack (= 7.0.5)
|
65
|
+
activejob (= 7.0.5)
|
66
|
+
activerecord (= 7.0.5)
|
67
|
+
activesupport (= 7.0.5)
|
68
68
|
marcel (~> 1.0)
|
69
69
|
mini_mime (>= 1.1.0)
|
70
|
-
activesupport (7.0.
|
70
|
+
activesupport (7.0.5)
|
71
71
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
72
72
|
i18n (>= 1.6, < 2)
|
73
73
|
minitest (>= 5.1)
|
@@ -80,42 +80,40 @@ GEM
|
|
80
80
|
break (0.40.0)
|
81
81
|
builder (3.2.4)
|
82
82
|
coderay (1.1.3)
|
83
|
-
concurrent-ruby (1.
|
83
|
+
concurrent-ruby (1.2.2)
|
84
84
|
crass (1.0.6)
|
85
|
+
date (3.3.3)
|
85
86
|
diff-lcs (1.5.0)
|
86
|
-
|
87
|
-
|
88
|
-
globalid (1.0.0)
|
87
|
+
erubi (1.12.0)
|
88
|
+
globalid (1.1.0)
|
89
89
|
activesupport (>= 5.0)
|
90
|
-
i18n (1.
|
90
|
+
i18n (1.14.1)
|
91
91
|
concurrent-ruby (~> 1.0)
|
92
|
-
loofah (2.
|
92
|
+
loofah (2.21.3)
|
93
93
|
crass (~> 1.0.2)
|
94
|
-
nokogiri (>= 1.
|
95
|
-
mail (2.
|
94
|
+
nokogiri (>= 1.12.0)
|
95
|
+
mail (2.8.1)
|
96
96
|
mini_mime (>= 0.1.1)
|
97
|
+
net-imap
|
98
|
+
net-pop
|
99
|
+
net-smtp
|
97
100
|
marcel (1.0.2)
|
98
101
|
method_source (1.0.0)
|
99
102
|
mini_mime (1.1.2)
|
100
|
-
mini_portile2 (2.8.
|
101
|
-
minitest (5.
|
102
|
-
net-imap (0.
|
103
|
-
|
103
|
+
mini_portile2 (2.8.2)
|
104
|
+
minitest (5.18.1)
|
105
|
+
net-imap (0.3.6)
|
106
|
+
date
|
104
107
|
net-protocol
|
105
|
-
|
106
|
-
net-pop (0.1.1)
|
107
|
-
digest
|
108
|
+
net-pop (0.1.2)
|
108
109
|
net-protocol
|
110
|
+
net-protocol (0.2.1)
|
109
111
|
timeout
|
110
|
-
net-
|
111
|
-
timeout
|
112
|
-
net-smtp (0.3.1)
|
113
|
-
digest
|
112
|
+
net-smtp (0.3.3)
|
114
113
|
net-protocol
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
mini_portile2 (~> 2.8.0)
|
114
|
+
nio4r (2.5.9)
|
115
|
+
nokogiri (1.15.2)
|
116
|
+
mini_portile2 (~> 2.8.2)
|
119
117
|
racc (~> 1.4)
|
120
118
|
parallel (1.22.1)
|
121
119
|
parser (3.1.2.0)
|
@@ -123,32 +121,33 @@ GEM
|
|
123
121
|
pry (0.14.1)
|
124
122
|
coderay (~> 1.1)
|
125
123
|
method_source (~> 1.0)
|
126
|
-
racc (1.
|
127
|
-
rack (2.2.
|
128
|
-
rack-test (2.0
|
124
|
+
racc (1.7.1)
|
125
|
+
rack (2.2.7)
|
126
|
+
rack-test (2.1.0)
|
129
127
|
rack (>= 1.3)
|
130
|
-
rails (7.0.
|
131
|
-
actioncable (= 7.0.
|
132
|
-
actionmailbox (= 7.0.
|
133
|
-
actionmailer (= 7.0.
|
134
|
-
actionpack (= 7.0.
|
135
|
-
actiontext (= 7.0.
|
136
|
-
actionview (= 7.0.
|
137
|
-
activejob (= 7.0.
|
138
|
-
activemodel (= 7.0.
|
139
|
-
activerecord (= 7.0.
|
140
|
-
activestorage (= 7.0.
|
141
|
-
activesupport (= 7.0.
|
128
|
+
rails (7.0.5)
|
129
|
+
actioncable (= 7.0.5)
|
130
|
+
actionmailbox (= 7.0.5)
|
131
|
+
actionmailer (= 7.0.5)
|
132
|
+
actionpack (= 7.0.5)
|
133
|
+
actiontext (= 7.0.5)
|
134
|
+
actionview (= 7.0.5)
|
135
|
+
activejob (= 7.0.5)
|
136
|
+
activemodel (= 7.0.5)
|
137
|
+
activerecord (= 7.0.5)
|
138
|
+
activestorage (= 7.0.5)
|
139
|
+
activesupport (= 7.0.5)
|
142
140
|
bundler (>= 1.15.0)
|
143
|
-
railties (= 7.0.
|
141
|
+
railties (= 7.0.5)
|
144
142
|
rails-dom-testing (2.0.3)
|
145
143
|
activesupport (>= 4.2.0)
|
146
144
|
nokogiri (>= 1.6)
|
147
|
-
rails-html-sanitizer (1.
|
148
|
-
loofah (~> 2.
|
149
|
-
|
150
|
-
|
151
|
-
|
145
|
+
rails-html-sanitizer (1.6.0)
|
146
|
+
loofah (~> 2.21)
|
147
|
+
nokogiri (~> 1.14)
|
148
|
+
railties (7.0.5)
|
149
|
+
actionpack (= 7.0.5)
|
150
|
+
activesupport (= 7.0.5)
|
152
151
|
method_source
|
153
152
|
rake (>= 12.2)
|
154
153
|
thor (~> 1.0)
|
@@ -157,23 +156,23 @@ GEM
|
|
157
156
|
rake (13.0.6)
|
158
157
|
regexp_parser (2.5.0)
|
159
158
|
rexml (3.2.5)
|
160
|
-
rspec-core (3.
|
161
|
-
rspec-support (~> 3.
|
162
|
-
rspec-expectations (3.
|
159
|
+
rspec-core (3.12.0)
|
160
|
+
rspec-support (~> 3.12.0)
|
161
|
+
rspec-expectations (3.12.2)
|
163
162
|
diff-lcs (>= 1.2.0, < 2.0)
|
164
|
-
rspec-support (~> 3.
|
165
|
-
rspec-mocks (3.
|
163
|
+
rspec-support (~> 3.12.0)
|
164
|
+
rspec-mocks (3.12.3)
|
166
165
|
diff-lcs (>= 1.2.0, < 2.0)
|
167
|
-
rspec-support (~> 3.
|
168
|
-
rspec-rails (
|
169
|
-
actionpack (>=
|
170
|
-
activesupport (>=
|
171
|
-
railties (>=
|
172
|
-
rspec-core (~> 3.
|
173
|
-
rspec-expectations (~> 3.
|
174
|
-
rspec-mocks (~> 3.
|
175
|
-
rspec-support (~> 3.
|
176
|
-
rspec-support (3.
|
166
|
+
rspec-support (~> 3.12.0)
|
167
|
+
rspec-rails (6.0.1)
|
168
|
+
actionpack (>= 6.1)
|
169
|
+
activesupport (>= 6.1)
|
170
|
+
railties (>= 6.1)
|
171
|
+
rspec-core (~> 3.11)
|
172
|
+
rspec-expectations (~> 3.11)
|
173
|
+
rspec-mocks (~> 3.11)
|
174
|
+
rspec-support (~> 3.11)
|
175
|
+
rspec-support (3.12.0)
|
177
176
|
rubocop (1.29.1)
|
178
177
|
parallel (~> 1.10)
|
179
178
|
parser (>= 3.1.0.0)
|
@@ -193,16 +192,15 @@ GEM
|
|
193
192
|
standard (1.12.1)
|
194
193
|
rubocop (= 1.29.1)
|
195
194
|
rubocop-performance (= 1.13.3)
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
tzinfo (2.0.4)
|
195
|
+
thor (1.2.2)
|
196
|
+
timeout (0.3.2)
|
197
|
+
tzinfo (2.0.6)
|
200
198
|
concurrent-ruby (~> 1.0)
|
201
199
|
unicode-display_width (2.2.0)
|
202
200
|
websocket-driver (0.7.5)
|
203
201
|
websocket-extensions (>= 0.1.0)
|
204
202
|
websocket-extensions (0.1.5)
|
205
|
-
zeitwerk (2.6.
|
203
|
+
zeitwerk (2.6.8)
|
206
204
|
|
207
205
|
PLATFORMS
|
208
206
|
ruby
|
data/README.md
CHANGED
@@ -13,7 +13,7 @@ A library for Rails developers who are not willing to leave data migrations to c
|
|
13
13
|
- [Running Data Migrations](#running-data-migrations)
|
14
14
|
- [Display Status of Data Migrations](#display-status-of-data-migrations)
|
15
15
|
- [Reverting Data Migrations](#reverting-data-migrations)
|
16
|
-
- [
|
16
|
+
- [Tasks in Data Migrations](#tasks-in-data-migrations)
|
17
17
|
- [Testing](#testing)
|
18
18
|
- [RSpec](#rspec)
|
19
19
|
- [TestUnit](#testunit)
|
@@ -144,7 +144,7 @@ rails data:migrate:status
|
|
144
144
|
Rollback functionality is not provided by design. Create another data migration instead.
|
145
145
|
|
146
146
|
|
147
|
-
###
|
147
|
+
### Tasks in Data Migrations
|
148
148
|
|
149
149
|
After the data manipulation is complete, you may want to trigger a long running task.
|
150
150
|
Yet, there are [some pitfalls](#long-running-tasks-in-migrations) to be aware of.
|
@@ -309,10 +309,16 @@ Here a regular Rails migration:
|
|
309
309
|
|
310
310
|
```ruby
|
311
311
|
# db/migrate/20220605083010_backfill_users_name.rb
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
312
|
+
class BackfillUsersName < ActiveRecord::Migration[7.0]
|
313
|
+
def up
|
314
|
+
User.all.each do |user|
|
315
|
+
user.name = "#{user.first_name} #{user.last_name}"
|
316
|
+
user.save
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
def down
|
321
|
+
# ...
|
316
322
|
end
|
317
323
|
end
|
318
324
|
```
|
@@ -328,9 +334,15 @@ To avoid issues 1-3, we can rewrite the migration to:
|
|
328
334
|
|
329
335
|
```ruby
|
330
336
|
# db/migrate/20220605083010_backfill_users_name.rb
|
331
|
-
|
332
|
-
|
333
|
-
|
337
|
+
class BackfillUsersName < ActiveRecord::Migration[7.0]
|
338
|
+
def up
|
339
|
+
User.where(name: nil).find_each do |user|
|
340
|
+
user.update_column(:name, "#{user.first_name} #{user.last_name}")
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
def down
|
345
|
+
# ...
|
334
346
|
end
|
335
347
|
end
|
336
348
|
```
|
@@ -354,7 +366,7 @@ You could run such tasks asynchronously (i.e. in a background job) but the task
|
|
354
366
|
before the transaction commits. This is a [known issue][sync-issue]. In addition,
|
355
367
|
a database under load can suffer from longer commit times.
|
356
368
|
|
357
|
-
See [
|
369
|
+
See [Tasks in Data Migrations](#tasks-in-data-migrations).
|
358
370
|
|
359
371
|
|
360
372
|
|
@@ -385,6 +397,7 @@ Genetically speaking, this is an incredible data migration!
|
|
385
397
|
Articles
|
386
398
|
|
387
399
|
- [Data Migrations in Rails](https://thoughtbot.com/blog/data-migrations-in-rails)
|
400
|
+
- [Decoupling database migrations from server startup: why and how](https://pythonspeed.com/articles/schema-migrations-server-startup/)
|
388
401
|
- [Zero downtime migrations: 500 million rows](https://www.honeybadger.io/blog/zero-downtime-migrations-of-large-databases-using-rails-postgres-and-redis/)
|
389
402
|
- [Three Useful Data Migration Patterns for Rails](https://www.ombulabs.com/blog/rails/data-migrations/three-useful-data-migrations-patterns-in-rails.html)
|
390
403
|
- [Ruby on Rails Model Patterns and Anti-patterns](https://blog.appsignal.com/2020/11/18/rails-model-patterns-and-anti-patterns.html)
|
@@ -1,16 +1,14 @@
|
|
1
1
|
require "rails/generators"
|
2
|
-
require "rails/generators/active_record"
|
2
|
+
require "rails/generators/active_record/migration"
|
3
3
|
|
4
4
|
module MonarchMigrate
|
5
5
|
module Generators
|
6
6
|
class InstallGenerator < Rails::Generators::Base
|
7
|
-
include
|
7
|
+
include ActiveRecord::Generators::Migration
|
8
8
|
|
9
|
-
|
9
|
+
class_option :database, type: :string, aliases: %i[--db], desc: "The database for your migration. By default, the current environment's primary database is used."
|
10
10
|
|
11
|
-
|
12
|
-
ActiveRecord::Generators::Base.next_migration_number(dir)
|
13
|
-
end
|
11
|
+
source_root File.expand_path("templates", __dir__)
|
14
12
|
|
15
13
|
def create_monarch_migrate_migration
|
16
14
|
return if migration_exists?
|
@@ -18,17 +16,19 @@ module MonarchMigrate
|
|
18
16
|
|
19
17
|
migration_template(
|
20
18
|
"create_data_migration_records.rb.erb",
|
21
|
-
"
|
19
|
+
"#{db_migrate_path}/create_data_migration_records.rb",
|
22
20
|
migration_version: migration_version
|
23
21
|
)
|
24
22
|
end
|
25
23
|
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
no_commands do
|
25
|
+
def migration_version
|
26
|
+
"[#{ActiveRecord::Migration.current_version}]"
|
27
|
+
end
|
29
28
|
|
30
|
-
|
31
|
-
|
29
|
+
def migration_table_name
|
30
|
+
MigrationRecord.table_name
|
31
|
+
end
|
32
32
|
end
|
33
33
|
|
34
34
|
private
|
@@ -1,3 +1,5 @@
|
|
1
|
+
require "rails/generators"
|
2
|
+
require "rails/generators/migration"
|
1
3
|
require "rails/generators/active_record"
|
2
4
|
|
3
5
|
module Rails
|
@@ -5,14 +7,20 @@ module Rails
|
|
5
7
|
class DataMigrationGenerator < Rails::Generators::NamedBase
|
6
8
|
include ActiveRecord::Generators::Migration
|
7
9
|
|
8
|
-
source_root File.expand_path("
|
10
|
+
source_root File.expand_path("templates", __dir__)
|
11
|
+
|
12
|
+
def self.next_migration_number(_)
|
13
|
+
ActiveRecord::Generators::Base.next_migration_number(
|
14
|
+
MonarchMigrate.data_migrations_path
|
15
|
+
)
|
16
|
+
end
|
9
17
|
|
10
18
|
def create_data_migration
|
11
19
|
validate_file_name!
|
12
20
|
|
13
21
|
migration_template(
|
14
22
|
"data_migration.rb.erb",
|
15
|
-
File.join(MonarchMigrate.
|
23
|
+
File.join(MonarchMigrate.migrator.path, "#{file_name}.rb")
|
16
24
|
)
|
17
25
|
end
|
18
26
|
|
@@ -1,36 +1,38 @@
|
|
1
|
+
require "rails/generators"
|
2
|
+
require "monarch_migrate/migration"
|
3
|
+
|
1
4
|
module Rspec
|
2
5
|
module Generators
|
3
|
-
class DataMigrationGenerator <
|
6
|
+
class DataMigrationGenerator < Rails::Generators::NamedBase
|
7
|
+
include MonarchMigrate::Migration::Lookup
|
8
|
+
|
4
9
|
source_root File.expand_path("templates", __dir__)
|
5
10
|
|
6
11
|
def create_data_migration_test
|
7
|
-
|
8
|
-
|
9
|
-
return
|
12
|
+
if spec_file_name
|
13
|
+
template("data_migration_spec.rb.erb", File.join(destination_dir, spec_file_name))
|
10
14
|
end
|
11
|
-
|
12
|
-
template(
|
13
|
-
"data_migration_spec.rb.erb",
|
14
|
-
File.join("spec/data_migrations", "#{described_class}_spec.rb")
|
15
|
-
)
|
16
15
|
end
|
17
16
|
|
18
17
|
private
|
19
18
|
|
20
19
|
def described_class
|
21
|
-
File.basename(
|
20
|
+
File.basename(spec_file_name, ".*")
|
22
21
|
end
|
23
22
|
|
24
|
-
def
|
25
|
-
|
23
|
+
def destination_dir
|
24
|
+
File.join(destination_root, "spec/data_migrations")
|
26
25
|
end
|
27
26
|
|
28
|
-
def
|
29
|
-
@
|
30
|
-
|
31
|
-
.
|
32
|
-
.
|
33
|
-
|
27
|
+
def spec_file_name
|
28
|
+
@spec_file_name ||=
|
29
|
+
if behavior == :invoke
|
30
|
+
name = migration_exists?(MonarchMigrate.migrator.path, file_name)
|
31
|
+
File.basename(name, ".*") << "_spec.rb" if name
|
32
|
+
else
|
33
|
+
name = migration_exists?(destination_dir, "#{file_name}_spec")
|
34
|
+
File.basename(name) if name
|
35
|
+
end
|
34
36
|
end
|
35
37
|
end
|
36
38
|
end
|
@@ -1,33 +1,36 @@
|
|
1
|
+
require "rails/generators"
|
2
|
+
require "monarch_migrate/migration"
|
3
|
+
|
1
4
|
module TestUnit
|
2
5
|
module Generators
|
3
|
-
class DataMigrationGenerator <
|
6
|
+
class DataMigrationGenerator < Rails::Generators::NamedBase
|
7
|
+
include MonarchMigrate::Migration::Lookup
|
8
|
+
|
4
9
|
source_root File.expand_path("templates", __dir__)
|
5
10
|
|
6
11
|
check_class_collision suffix: "Test"
|
7
12
|
|
8
|
-
def
|
9
|
-
|
10
|
-
|
11
|
-
return
|
13
|
+
def create_data_migration_test_file
|
14
|
+
if test_file_name
|
15
|
+
template "unit_test.rb.erb", File.join(destination_dir, test_file_name)
|
12
16
|
end
|
13
|
-
|
14
|
-
prefix = File.basename(data_migration.filename, ".rb")
|
15
|
-
|
16
|
-
template "unit_test.rb.erb", File.join("test/data_migrations", "#{prefix}_test.rb")
|
17
17
|
end
|
18
18
|
|
19
19
|
private
|
20
20
|
|
21
|
-
def
|
22
|
-
|
21
|
+
def test_file_name
|
22
|
+
@test_file_name ||=
|
23
|
+
if behavior == :invoke
|
24
|
+
name = migration_exists?(MonarchMigrate.migrator.path, file_name)
|
25
|
+
File.basename(name, ".*") << "_test.rb" if name
|
26
|
+
else
|
27
|
+
name = migration_exists?(destination_dir, "#{file_name}_test")
|
28
|
+
File.basename(name) if name
|
29
|
+
end
|
23
30
|
end
|
24
31
|
|
25
|
-
def
|
26
|
-
|
27
|
-
MonarchMigrate.migrator
|
28
|
-
.migrations
|
29
|
-
.reverse
|
30
|
-
.find { |m| m.filename.ends_with?(data_migration_pattern) }
|
32
|
+
def destination_dir
|
33
|
+
File.join(destination_root, "test/data_migrations")
|
31
34
|
end
|
32
35
|
end
|
33
36
|
end
|
@@ -2,6 +2,16 @@
|
|
2
2
|
|
3
3
|
module MonarchMigrate
|
4
4
|
class Migration
|
5
|
+
module Lookup
|
6
|
+
def migration_lookup_at(dirname)
|
7
|
+
Dir.glob("#{dirname}/[0-9]*_*.rb")
|
8
|
+
end
|
9
|
+
|
10
|
+
def migration_exists?(dirname, file_name)
|
11
|
+
migration_lookup_at(dirname).grep(/\d+_#{file_name}.rb$/).first
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
5
15
|
def initialize(path)
|
6
16
|
@path = path.to_s
|
7
17
|
@after_commit_callback = nil
|
@@ -12,7 +22,7 @@ module MonarchMigrate
|
|
12
22
|
end
|
13
23
|
|
14
24
|
def name
|
15
|
-
File.basename(path, ".rb").
|
25
|
+
File.basename(path, ".rb").delete_prefix("#{version}_").humanize
|
16
26
|
end
|
17
27
|
|
18
28
|
def version
|
data/monarch_migrate.gemspec
CHANGED
@@ -6,10 +6,10 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.authors = ["Yanko Ivanov"]
|
7
7
|
spec.email = ["yanko.ivanov@gmail.com"]
|
8
8
|
|
9
|
-
spec.summary = "
|
9
|
+
spec.summary = "A library for Rails developers who are not willing to leave data migrations to chance."
|
10
10
|
spec.homepage = "https://github.com/lunohodov/monarch"
|
11
11
|
spec.license = "MIT"
|
12
|
-
spec.required_ruby_version = Gem::Requirement.new(">=
|
12
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
|
13
13
|
|
14
14
|
spec.metadata["homepage_uri"] = spec.homepage
|
15
15
|
spec.metadata["source_code_uri"] = "https://github.com/lunohodov/monarch"
|
@@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
|
|
20
20
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|gemfiles|tmp)/}) }
|
21
21
|
end
|
22
22
|
|
23
|
-
spec.add_dependency("rails", ">=
|
23
|
+
spec.add_dependency("rails", ">= 6.0")
|
24
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: monarch_migrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yanko Ivanov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '6.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '6.0'
|
27
27
|
description:
|
28
28
|
email:
|
29
29
|
- yanko.ivanov@gmail.com
|
@@ -79,15 +79,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: '3.0'
|
83
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
84
|
requirements:
|
85
85
|
- - ">="
|
86
86
|
- !ruby/object:Gem::Version
|
87
87
|
version: '0'
|
88
88
|
requirements: []
|
89
|
-
rubygems_version: 3.
|
89
|
+
rubygems_version: 3.4.10
|
90
90
|
signing_key:
|
91
91
|
specification_version: 4
|
92
|
-
summary:
|
92
|
+
summary: A library for Rails developers who are not willing to leave data migrations
|
93
|
+
to chance.
|
93
94
|
test_files: []
|