cloud_powers 0.2 → 0.2.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/Gemfile.lock +1 -1
- data/lib/cloud_powers/version.rb +1 -1
- data/lib/cloud_powers/zenv.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: abb854d94798c1f90ec78dba1e944d34c978cc44
|
4
|
+
data.tar.gz: fcfceeba844c73fd520e614b276ddc11266dd557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ead5833b4a6b7a13d079f5e2224e2e3f6a116db877ba96be4da3698e6604d7122461100efa828537a3779b6bb3ab888ccbcc1766cbfa0a62b5819e539ef42efc
|
7
|
+
data.tar.gz: 3c09c99ea6503ed6f53ceeeadd1c270cdc53dc4d72390590d5206af340c5ce6d47f450b717364f115556d598495e883d6ae93eb571709a35b7450bf0a5d916a9
|
data/Gemfile.lock
CHANGED
data/lib/cloud_powers/version.rb
CHANGED
data/lib/cloud_powers/zenv.rb
CHANGED
@@ -19,7 +19,7 @@ module Smash
|
|
19
19
|
# TODO: implement a search for all 3 that can find close matches
|
20
20
|
def zfind(key)
|
21
21
|
res = (i_vars[to_snake(key).upcase] or
|
22
|
-
env_vars[to_snake(key).upcase] unless project_root.nil?) or
|
22
|
+
env_vars[to_snake(key).upcase] unless @project_root.nil?) or
|
23
23
|
system_vars[to_snake(key).upcase]
|
24
24
|
(res.nil? or res.empty?) ? nil : res
|
25
25
|
end
|