slonik_migration 1.2.2 → 1.3.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 +7 -47
- data/.gitignore +0 -0
- data/.rspec +0 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +1 -1
- data/LICENSE +0 -0
- data/README.md +2 -2
- data/Rakefile +0 -0
- data/gemfiles/rails70.gemfile +9 -0
- data/gemfiles/rails71.gemfile +0 -0
- data/gemfiles/rails72.gemfile +0 -0
- data/gemfiles/{rails61.gemfile → rails80.gemfile} +1 -1
- data/gemfiles/{rails60.gemfile → rails81.gemfile} +1 -3
- data/lib/generators/slonik_migration/config_generator.rb +0 -0
- data/lib/generators/slonik_migration/templates/slonik.yml +0 -0
- data/lib/slonik_migration/command.rb +0 -0
- data/lib/slonik_migration/config.rb +0 -0
- data/lib/slonik_migration/extension.rb +0 -0
- data/lib/slonik_migration/railtie.rb +0 -0
- data/lib/slonik_migration/version.rb +1 -1
- data/lib/slonik_migration.rb +0 -0
- data/lib/tasks/slonik_migration.rake +0 -0
- data/slonik_migration.gemspec +3 -1
- metadata +8 -14
- data/gemfiles/rails50.gemfile +0 -8
- data/gemfiles/rails51.gemfile +0 -8
- data/gemfiles/rails52.gemfile +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12b9063d103812df67a202c92469e7f73ae669d14ba45d518e8db2eff0508ffc
|
|
4
|
+
data.tar.gz: d67c922417b5039182aefbae955db7a8ca61dceb443ab79ece6e57ecc040efee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 585cecacf3a4eb90558bc5ab9cde54ba43624f664919d85d6ee72b04716d7e8160cbc97c556abae02fd1b15c0b93395243a93086d4ec4a2889bfc5ac27f59313
|
|
7
|
+
data.tar.gz: e12a313f57e191db593b6c8dce0610e62eda255ae8676c19bde207f962a83ce6576c40ce650c5c19e590cbe367fb0654945d8b3314578cfc4080fe0f02d1166f
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -17,59 +17,19 @@ jobs:
|
|
|
17
17
|
strategy:
|
|
18
18
|
fail-fast: false
|
|
19
19
|
matrix:
|
|
20
|
-
ruby: [
|
|
21
|
-
gemfile: ['
|
|
20
|
+
ruby: ['3.0', 3.1, 3.2, 3.3, 3.4, '4.0']
|
|
21
|
+
gemfile: ['rails70', 'rails71', 'rails72', 'rails80', 'rails81']
|
|
22
22
|
exclude:
|
|
23
|
-
- ruby: 2.4
|
|
24
|
-
gemfile: rails60
|
|
25
|
-
- ruby: 2.4
|
|
26
|
-
gemfile: rails61
|
|
27
|
-
- ruby: 2.4
|
|
28
|
-
gemfile: rails70
|
|
29
|
-
- ruby: 2.4
|
|
30
|
-
gemfile: rails71
|
|
31
|
-
- ruby: 2.4
|
|
32
|
-
gemfile: rails72
|
|
33
|
-
- ruby: 2.5
|
|
34
|
-
gemfile: rails70
|
|
35
|
-
- ruby: 2.5
|
|
36
|
-
gemfile: rails71
|
|
37
|
-
- ruby: 2.5
|
|
38
|
-
gemfile: rails72
|
|
39
|
-
- ruby: 2.6
|
|
40
|
-
gemfile: rails70
|
|
41
|
-
- ruby: 2.6
|
|
42
|
-
gemfile: rails71
|
|
43
|
-
- ruby: 2.6
|
|
44
|
-
gemfile: rails72
|
|
45
|
-
- ruby: 2.7
|
|
46
|
-
gemfile: rails72
|
|
47
23
|
- ruby: 3.0
|
|
48
|
-
gemfile:
|
|
49
|
-
- ruby: 3.0
|
|
50
|
-
gemfile: rails51
|
|
24
|
+
gemfile: rails72
|
|
51
25
|
- ruby: 3.0
|
|
52
|
-
gemfile:
|
|
26
|
+
gemfile: rails80
|
|
53
27
|
- ruby: 3.0
|
|
54
|
-
gemfile:
|
|
55
|
-
- ruby: 3.1
|
|
56
|
-
gemfile: rails50
|
|
28
|
+
gemfile: rails81
|
|
57
29
|
- ruby: 3.1
|
|
58
|
-
gemfile:
|
|
30
|
+
gemfile: rails80
|
|
59
31
|
- ruby: 3.1
|
|
60
|
-
gemfile:
|
|
61
|
-
- ruby: 3.2
|
|
62
|
-
gemfile: rails50
|
|
63
|
-
- ruby: 3.2
|
|
64
|
-
gemfile: rails51
|
|
65
|
-
- ruby: 3.2
|
|
66
|
-
gemfile: rails52
|
|
67
|
-
- ruby: 3.3
|
|
68
|
-
gemfile: rails50
|
|
69
|
-
- ruby: 3.3
|
|
70
|
-
gemfile: rails51
|
|
71
|
-
- ruby: 3.3
|
|
72
|
-
gemfile: rails52
|
|
32
|
+
gemfile: rails81
|
|
73
33
|
|
|
74
34
|
name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
|
|
75
35
|
|
data/.gitignore
CHANGED
|
File without changes
|
data/.rspec
CHANGED
|
File without changes
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/LICENSE
CHANGED
|
File without changes
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
File without changes
|
data/gemfiles/rails70.gemfile
CHANGED
data/gemfiles/rails71.gemfile
CHANGED
|
File without changes
|
data/gemfiles/rails72.gemfile
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/slonik_migration.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/slonik_migration.gemspec
CHANGED
|
@@ -17,7 +17,9 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
18
18
|
spec.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
spec.
|
|
20
|
+
spec.required_ruby_version = ">= 3.0"
|
|
21
|
+
|
|
22
|
+
spec.add_dependency "activerecord", ">= 7.0"
|
|
21
23
|
|
|
22
24
|
spec.add_development_dependency "rspec"
|
|
23
25
|
spec.add_development_dependency "rspec-rails"
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slonik_migration
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yoshikazu Kaneta
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activerecord
|
|
@@ -16,14 +15,14 @@ dependencies:
|
|
|
16
15
|
requirements:
|
|
17
16
|
- - ">="
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
18
|
+
version: '7.0'
|
|
20
19
|
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
23
|
- - ">="
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
25
|
+
version: '7.0'
|
|
27
26
|
- !ruby/object:Gem::Dependency
|
|
28
27
|
name: rspec
|
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -81,14 +80,11 @@ files:
|
|
|
81
80
|
- LICENSE
|
|
82
81
|
- README.md
|
|
83
82
|
- Rakefile
|
|
84
|
-
- gemfiles/rails50.gemfile
|
|
85
|
-
- gemfiles/rails51.gemfile
|
|
86
|
-
- gemfiles/rails52.gemfile
|
|
87
|
-
- gemfiles/rails60.gemfile
|
|
88
|
-
- gemfiles/rails61.gemfile
|
|
89
83
|
- gemfiles/rails70.gemfile
|
|
90
84
|
- gemfiles/rails71.gemfile
|
|
91
85
|
- gemfiles/rails72.gemfile
|
|
86
|
+
- gemfiles/rails80.gemfile
|
|
87
|
+
- gemfiles/rails81.gemfile
|
|
92
88
|
- lib/generators/slonik_migration/config_generator.rb
|
|
93
89
|
- lib/generators/slonik_migration/templates/slonik.yml
|
|
94
90
|
- lib/slonik_migration.rb
|
|
@@ -102,7 +98,6 @@ files:
|
|
|
102
98
|
homepage: https://github.com/kanety/slonik_migration
|
|
103
99
|
licenses: []
|
|
104
100
|
metadata: {}
|
|
105
|
-
post_install_message:
|
|
106
101
|
rdoc_options: []
|
|
107
102
|
require_paths:
|
|
108
103
|
- lib
|
|
@@ -110,15 +105,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
110
105
|
requirements:
|
|
111
106
|
- - ">="
|
|
112
107
|
- !ruby/object:Gem::Version
|
|
113
|
-
version: '0'
|
|
108
|
+
version: '3.0'
|
|
114
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
110
|
requirements:
|
|
116
111
|
- - ">="
|
|
117
112
|
- !ruby/object:Gem::Version
|
|
118
113
|
version: '0'
|
|
119
114
|
requirements: []
|
|
120
|
-
rubygems_version: 3.
|
|
121
|
-
signing_key:
|
|
115
|
+
rubygems_version: 3.6.9
|
|
122
116
|
specification_version: 4
|
|
123
117
|
summary: A rails migration gem for slony
|
|
124
118
|
test_files: []
|
data/gemfiles/rails50.gemfile
DELETED
data/gemfiles/rails51.gemfile
DELETED