norad_cli 0.1.4 → 0.1.5
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/norad_cli/templates/spec/spec_helper.rb +3 -1
- data/lib/norad_cli/version.rb +1 -1
- data/lib/norad_cli.rb +4 -2
- 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: 3e7fb80586e9097ae6596d925a944317aa24ca56
|
|
4
|
+
data.tar.gz: 4fb2895a21437b787d29549588c1c03d10365196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b43b85e81eb87e5d867c16c0e65c5569c4acf2891ae0656914ecd92589fb2a6d459ed30753c33e6d01130d01fcbe142c976a9e54237bb17374f5500249b83dff
|
|
7
|
+
data.tar.gz: f16410a27950b486298e70bd5f93b00c44accb6fbcc22c589e1188b037ef15fc14e29494bac79658d2a319afd5be792a4f3f2db8e8f03c754de1f6d2ad2dd198
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
require 'norad_cli'
|
|
2
|
+
|
|
1
3
|
RSpec.configure do |config|
|
|
2
4
|
config.expect_with :rspec do |expectations|
|
|
3
5
|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
@@ -131,7 +133,7 @@ if ENV['SCAN_ASSESSMENT']
|
|
|
131
133
|
end
|
|
132
134
|
|
|
133
135
|
define_method :load_ssh_args do
|
|
134
|
-
{ ssh_user: 'testuser', ssh_key: Base64.strict_encode64(File.read(
|
|
136
|
+
{ ssh_user: 'testuser', ssh_key: Base64.strict_encode64(File.read(NoradCli.ssh_key_path)) }
|
|
135
137
|
end
|
|
136
138
|
|
|
137
139
|
define_method :machine_ready? do |machine, image_name|
|
data/lib/norad_cli/version.rb
CHANGED
data/lib/norad_cli.rb
CHANGED