iv-cli 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- 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