eb-docker-deploy 0.0.6 → 0.0.7
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/deploy/deployer.rb +1 -1
- data/lib/deploy/version.rb +1 -1
- 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: ffbe0a4f0f4722bd8cd942165db069948bfafba0
|
|
4
|
+
data.tar.gz: fb1f34a497945c46e7d0bebf2220796edcaacae7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83505aebe2ca0c416088be82c04ecae1d6b129874d6838b63a5c502ccb1563da1209ec8264dc3e94d647fc3cf09db0f9f83e9cf1a41313128cfb4e393c45168c
|
|
7
|
+
data.tar.gz: 847110071c031b4bb8b5054d08bfa1a40788efebf5ba6a97e37b18d191e5eb2bdf661a2a0aac7d3488536b2ec99a38cba1d4ee6eef88f4d406f666dcfbe589ef
|
data/lib/deploy/deployer.rb
CHANGED
|
@@ -80,7 +80,7 @@ module Deploy
|
|
|
80
80
|
(shout('docker not installed'); return false) unless command?('docker')
|
|
81
81
|
(shout('eb command not installed'); return false) unless command?('eb')
|
|
82
82
|
(shout('elasticbeanstalk not configured. run setup command'); return false) unless File.exist?('.elasticbeanstalk')
|
|
83
|
-
(shout('aws not configured. run setup command'); return false) unless File.exist?('~/.aws/config')
|
|
83
|
+
(shout('aws not configured. run setup command'); return false) unless File.exist?(File.expand_path('~/.aws/config'))
|
|
84
84
|
(shout('ENV DOCKER_REPO not set'); return false) unless ENV['DOCKER_REPO']
|
|
85
85
|
end
|
|
86
86
|
|
data/lib/deploy/version.rb
CHANGED