iv-cli 0.0.2 → 0.0.3
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.
- data/lib/iv-cli/command.rb +1 -1
- data/lib/iv-cli/version.rb +1 -1
- metadata +1 -1
data/lib/iv-cli/command.rb
CHANGED
|
@@ -39,7 +39,7 @@ class IV::CLI::Command
|
|
|
39
39
|
unless ::File.exists?(self.class.config)
|
|
40
40
|
fail(4, %{Unable to find IV configuration.\nPlease run 'iv init' and update config.yml with your credentials})
|
|
41
41
|
end
|
|
42
|
-
@config = YAML.load_file(self.class.config)
|
|
42
|
+
@config = ::YAML.load_file(self.class.config)
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
def ensure_opscode_config
|
data/lib/iv-cli/version.rb
CHANGED