shoots_deploy 0.9.0 → 0.9.1
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/shoots_deploy.rb +4 -2
- data/lib/shoots_deploy/version.rb +1 -1
- data/shoots_deploy.gemspec +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: bbe05a9d793626a4c17714a816a289c8813fbb37
|
4
|
+
data.tar.gz: a76aafdbec7f82f658fb13668b9633853192ecfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe67ee3bb2ddeecc4af383c7d68f173981e64da341defdd785db63906a7e51d229b1a37741bdcfb6aec8de21a9000ab87c31b93caf004139dc0a2be8675418d0
|
7
|
+
data.tar.gz: 27ef108c2433625940c423f7711e0032bdff91a3ad1ed7f809f1f33500f3a5f2e86c98732e2228bde36091b9a7ee7f06d7d69df9589d313b3ba6495ca9d22a70
|
data/lib/shoots_deploy.rb
CHANGED
@@ -104,9 +104,10 @@ module ShootsDeploy
|
|
104
104
|
end
|
105
105
|
|
106
106
|
def self.get_access_key
|
107
|
-
|
107
|
+
access_key = ''
|
108
108
|
|
109
109
|
while access_key.empty?
|
110
|
+
print "\nWhat's your AWS access key? "
|
110
111
|
access_key = gets.chomp
|
111
112
|
end
|
112
113
|
|
@@ -114,9 +115,10 @@ module ShootsDeploy
|
|
114
115
|
end
|
115
116
|
|
116
117
|
def self.get_secret_key
|
117
|
-
|
118
|
+
secret_key = ''
|
118
119
|
|
119
120
|
while secret_key.empty?
|
121
|
+
print "\nWhat's your AWS secret key? "
|
120
122
|
secret_key = gets.chomp
|
121
123
|
end
|
122
124
|
|
data/shoots_deploy.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
17
|
-
spec.executables
|
17
|
+
spec.executables << 'shoots'
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|