xmigra 1.7.1 → 1.7.2
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/lib/xmigra/vcs_support/git.rb +6 -6
- data/lib/xmigra/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16f83be4f63c7d9cddec772164eb318447e4703b
|
|
4
|
+
data.tar.gz: 9a3c0dc01f24880947285d935112471ca8b81e88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc6dbad80b535f5428f37cbfcf842e6aa7a819c233bca333796e3fd3a29de8f6016265319ecd7842a9668da6343bb85bb136c1d66a105f38f542896d1ba687ee
|
|
7
|
+
data.tar.gz: 9b83b2aac9231ab1b67f5ec181393b16bdf3157d2dddc375b5d58f9e1b29d4986038acf4d5b800bbabc0b934c36be9987354344d23c20cc331b42adfd15bd720
|
|
@@ -197,19 +197,19 @@ module XMigra
|
|
|
197
197
|
|
|
198
198
|
git_fetch_master_branch
|
|
199
199
|
migrations.each do |m|
|
|
200
|
-
# Check that the migration
|
|
200
|
+
# Check that the migration in the working tree is the same as in head of the central master branch
|
|
201
201
|
fpath = m.file_path
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
raise VersionControlError, "'#{fpath}' has been modified in the current branch of the repository since its introduction"
|
|
202
|
+
unless git(:diff, '--exit-code', self.git_master_local_branch, '--', fpath, check_exit: true)
|
|
203
|
+
master_url, remote_branch = self.git_master_head.split('#', 2)
|
|
204
|
+
raise VersionControlError, "'#{fpath}' is different locally than on '#{remote_branch}' in #{master_url}"
|
|
206
205
|
end
|
|
207
206
|
end
|
|
208
207
|
|
|
209
208
|
# Since a production script was requested, warn if we are not generating
|
|
210
209
|
# from a production branch
|
|
211
210
|
if branch_use != :production
|
|
212
|
-
|
|
211
|
+
master_url, remote_branch = self.git_master_head.split('#', 2)
|
|
212
|
+
raise VersionControlError, "The working tree is not a commit in the history of '#{remote_branch}' in #{master_url}"
|
|
213
213
|
end
|
|
214
214
|
end
|
|
215
215
|
|
data/lib/xmigra/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xmigra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Next IT Corporation
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2019-07-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
121
|
rubyforge_project:
|
|
122
|
-
rubygems_version: 2.
|
|
122
|
+
rubygems_version: 2.4.8
|
|
123
123
|
signing_key:
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: Toolkit for managing database schema evolution with version control.
|