docker-sync 0.3.1 → 0.3.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/VERSION +1 -1
- data/lib/docker-sync/update_check.rb +1 -1
- data/lib/docker-sync/upgrade_check.rb +3 -3
- 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: 1db680b7a0f1d7120b9d87ca484ab78257745686
|
|
4
|
+
data.tar.gz: 3972bc59f45c4e9a1d5aac669decddaa891e7935
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74735ee9235a56f18b4ccbc80cb93a638df1bbe134c2a10b72d6403b2d03f576468e257f04fcad4400fb870c272df1cbe85a82f65c61b680644f9616bf6595ac
|
|
7
|
+
data.tar.gz: 5a2e5c892d8386cee24e4107315ef6677efd5d0033b1b8662a2164e5c434589ca68e4cf922f3d4ad050f5ef16bbf7e0f919c23128a813f64680966c74be7e93b
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.2
|
|
@@ -67,10 +67,10 @@ class UpgradeChecker
|
|
|
67
67
|
if Gem::Version.new(last_upgraded_version) < Gem::Version.new('0.3.0')
|
|
68
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 docker-sync/unox/unison ! : \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/
|
|
71
|
-
Thor::Shell::Basic.new.say_status 'ok',
|
|
70
|
+
cmd1 = 'rm -f /usr/local/bin/unison-fsmonitor && gem uninstall docker-sync && brew tap eugenmayer/dockersync && brew install eugenmayer/dockersync/unox'
|
|
71
|
+
Thor::Shell::Basic.new.say_status 'ok', cmd1, :rwhite
|
|
72
72
|
|
|
73
|
-
if Thor::Shell::Basic.new.yes?('I will
|
|
73
|
+
if Thor::Shell::Basic.new.yes?('I will reinstall docker-sync for you using the above command (y/N)')
|
|
74
74
|
system cmd1
|
|
75
75
|
else
|
|
76
76
|
raise('Please reinstall docker-sync yourself')
|