docker-sync 0.3.2 → 0.3.3
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/VERSION +1 -1
- data/lib/docker-sync/preconditions/preconditions_osx.rb +1 -1
- data/lib/docker-sync/upgrade_check.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b5e45136c3888699f29bb490e626b4bc6aceb93
|
|
4
|
+
data.tar.gz: 7e977a5f3c119704cd99b06a5993f480b3423864
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4385bd705fb9fe8275de5f96ecd8db326869592301e9dc061b8133c5b20e0a9745ec9c8899c8d8366c4797352c3c1c0c3e8afce689d6e6660322def6393d10dd
|
|
7
|
+
data.tar.gz: e534c2ad6971bfc4699b208055c154f3b22fc98887ae5a12f8d1f209ff3fab7c3912b39acce525e39f8be9a4b9c3f9268247682890634a9c825da5125a414fce
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
|
@@ -102,7 +102,7 @@ module DockerSync
|
|
|
102
102
|
if Thor::Shell::Basic.new.yes?('I will install unox through brew for you? (y/N)')
|
|
103
103
|
system cmd1
|
|
104
104
|
else
|
|
105
|
-
raise(
|
|
105
|
+
raise("Please install it yourself using: #{cmd1}")
|
|
106
106
|
end
|
|
107
107
|
end
|
|
108
108
|
end
|
|
@@ -65,9 +65,9 @@ class UpgradeChecker
|
|
|
65
65
|
end
|
|
66
66
|
|
|
67
67
|
if Gem::Version.new(last_upgraded_version) < Gem::Version.new('0.3.0')
|
|
68
|
-
Thor::Shell::Basic.new.say_status 'warning', "The installation progress of docker-sync 0.3.0 has changed, brew is now mandatory - you need to uninstall
|
|
68
|
+
Thor::Shell::Basic.new.say_status 'warning', "The installation progress of docker-sync 0.3.0 has changed, brew is now mandatory - you need to uninstall unox ! : \n\n_Please_ read :): https://github.com/EugenMayer/docker-sync/wiki/1.3-Upgrade-Guide\n\n", :red
|
|
69
69
|
|
|
70
|
-
cmd1 = 'rm -f /usr/local/bin/unison-fsmonitor &&
|
|
70
|
+
cmd1 = 'sudo rm -f /usr/local/bin/unison-fsmonitor && brew tap eugenmayer/dockersync && brew install eugenmayer/dockersync/unox'
|
|
71
71
|
Thor::Shell::Basic.new.say_status 'ok', cmd1, :rwhite
|
|
72
72
|
|
|
73
73
|
if Thor::Shell::Basic.new.yes?('I will reinstall docker-sync for you using the above command (y/N)')
|