aws_one_click_staging 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f7fd61291d808f09e8c8990cefe8a4ac8358b75
|
4
|
+
data.tar.gz: d077ebffbdbcd74e0e682921f6bca9851834d9fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c34c7a20356615fffd06489ea095c0a515f05d9bfcca8fe8166631590122aff05b258e2802000b7082147b27eaff2da8de6fcf4accc56bdd78ffc4605c725a4f
|
7
|
+
data.tar.gz: bcc8cbc788f8176374d465bc57d5396d737c053bf5d893095be3d9077168572a5b2ea9278ce7768a710077eca2485ae999a6e8298b279fed5f4c126ec88f6850
|
@@ -10,6 +10,7 @@ module AwsOneClickStaging
|
|
10
10
|
# read config file
|
11
11
|
@config_dir = "#{ENV['HOME']}/.config"
|
12
12
|
@config_file = File.expand_path("#{@config_dir}/aws_one_click_staging.yml")
|
13
|
+
return nil if create_config_file_if_needed!
|
13
14
|
@config = YAML.load(read_config_file)
|
14
15
|
end
|
15
16
|
|
@@ -114,7 +115,6 @@ module AwsOneClickStaging
|
|
114
115
|
|
115
116
|
|
116
117
|
def read_config_file
|
117
|
-
return if create_config_file_if_needed!
|
118
118
|
config = File.read(@config_file)
|
119
119
|
end
|
120
120
|
|