slonik_migration 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +23 -5
- data/CHANGELOG.md +4 -0
- data/gemfiles/rails50.gemfile +1 -0
- data/gemfiles/rails51.gemfile +1 -0
- data/gemfiles/rails52.gemfile +1 -0
- data/gemfiles/rails71.gemfile +5 -0
- data/lib/generators/slonik_migration/config_generator.rb +2 -0
- data/lib/slonik_migration/command.rb +2 -0
- data/lib/slonik_migration/config.rb +2 -0
- data/lib/slonik_migration/extension.rb +2 -0
- data/lib/slonik_migration/railtie.rb +2 -0
- data/lib/slonik_migration/version.rb +3 -1
- data/lib/slonik_migration.rb +2 -0
- data/lib/tasks/slonik_migration.rake +2 -0
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e91f59938392524c23e33e477734c3faa88b512900ebab204d2f5c49c19f839
|
4
|
+
data.tar.gz: b87cb6f4e6f518b974f43393ed28bf4c97a5abd14c835e39ae211e202865387d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80d8c5a880b0b5f8bd7184a785affd795e9f6c0f255aa22ef305eaa855e3119dfebbcc0f9f41c12912784f504d4fcb2f142c1c9c9b6e1749ba8c1611b65a2653
|
7
|
+
data.tar.gz: 8c88b74567361e765339afe6554512d8f726f1ab555ea262c97c0c77e3daf4f23fa9f37ef2dd3adc6098dc40e624270dd14ad46bd65b4e2017b7b95b2a1014eb
|
data/.github/workflows/ci.yml
CHANGED
@@ -4,10 +4,10 @@ on: [push, pull_request]
|
|
4
4
|
|
5
5
|
jobs:
|
6
6
|
test:
|
7
|
-
runs-on: ubuntu-
|
7
|
+
runs-on: ubuntu-22.04
|
8
8
|
services:
|
9
9
|
postgres:
|
10
|
-
image: postgres:
|
10
|
+
image: postgres:15
|
11
11
|
env:
|
12
12
|
POSTGRES_USER: postgres
|
13
13
|
POSTGRES_PASSWORD: postgres
|
@@ -17,8 +17,8 @@ jobs:
|
|
17
17
|
strategy:
|
18
18
|
fail-fast: false
|
19
19
|
matrix:
|
20
|
-
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1]
|
21
|
-
gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70']
|
20
|
+
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
|
21
|
+
gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70', 'rails71']
|
22
22
|
exclude:
|
23
23
|
- ruby: 2.4
|
24
24
|
gemfile: rails60
|
@@ -26,10 +26,16 @@ jobs:
|
|
26
26
|
gemfile: rails61
|
27
27
|
- ruby: 2.4
|
28
28
|
gemfile: rails70
|
29
|
+
- ruby: 2.4
|
30
|
+
gemfile: rails71
|
29
31
|
- ruby: 2.5
|
30
32
|
gemfile: rails70
|
33
|
+
- ruby: 2.5
|
34
|
+
gemfile: rails71
|
31
35
|
- ruby: 2.6
|
32
36
|
gemfile: rails70
|
37
|
+
- ruby: 2.6
|
38
|
+
gemfile: rails71
|
33
39
|
- ruby: 3.0
|
34
40
|
gemfile: rails50
|
35
41
|
- ruby: 3.0
|
@@ -42,6 +48,18 @@ jobs:
|
|
42
48
|
gemfile: rails51
|
43
49
|
- ruby: 3.1
|
44
50
|
gemfile: rails52
|
51
|
+
- ruby: 3.2
|
52
|
+
gemfile: rails50
|
53
|
+
- ruby: 3.2
|
54
|
+
gemfile: rails51
|
55
|
+
- ruby: 3.2
|
56
|
+
gemfile: rails52
|
57
|
+
- ruby: 3.3
|
58
|
+
gemfile: rails50
|
59
|
+
- ruby: 3.3
|
60
|
+
gemfile: rails51
|
61
|
+
- ruby: 3.3
|
62
|
+
gemfile: rails52
|
45
63
|
|
46
64
|
name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
|
47
65
|
|
@@ -51,7 +69,7 @@ jobs:
|
|
51
69
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
52
70
|
|
53
71
|
steps:
|
54
|
-
- uses: actions/checkout@
|
72
|
+
- uses: actions/checkout@v4
|
55
73
|
- uses: ruby/setup-ruby@v1
|
56
74
|
with:
|
57
75
|
ruby-version: ${{ matrix.ruby }}
|
data/CHANGELOG.md
CHANGED
data/gemfiles/rails50.gemfile
CHANGED
data/gemfiles/rails51.gemfile
CHANGED
data/gemfiles/rails52.gemfile
CHANGED
data/lib/slonik_migration.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slonik_migration
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoshikazu Kaneta
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -115,6 +115,7 @@ files:
|
|
115
115
|
- gemfiles/rails60.gemfile
|
116
116
|
- gemfiles/rails61.gemfile
|
117
117
|
- gemfiles/rails70.gemfile
|
118
|
+
- gemfiles/rails71.gemfile
|
118
119
|
- lib/generators/slonik_migration/config_generator.rb
|
119
120
|
- lib/generators/slonik_migration/templates/slonik.yml
|
120
121
|
- lib/slonik_migration.rb
|
@@ -128,7 +129,7 @@ files:
|
|
128
129
|
homepage: https://github.com/kanety/slonik_migration
|
129
130
|
licenses: []
|
130
131
|
metadata: {}
|
131
|
-
post_install_message:
|
132
|
+
post_install_message:
|
132
133
|
rdoc_options: []
|
133
134
|
require_paths:
|
134
135
|
- lib
|
@@ -143,8 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
144
|
- !ruby/object:Gem::Version
|
144
145
|
version: '0'
|
145
146
|
requirements: []
|
146
|
-
rubygems_version: 3.
|
147
|
-
signing_key:
|
147
|
+
rubygems_version: 3.3.3
|
148
|
+
signing_key:
|
148
149
|
specification_version: 4
|
149
150
|
summary: A rails migration gem for slony
|
150
151
|
test_files: []
|