inspec/bin/vulcano
Dominik Richter 8a8021a7ab print validation info on default checking mode
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-06-10 17:54:35 +02:00

46 lines
1.2 KiB
Ruby
Executable file

#!/usr/bin/env ruby
# Copyright 2015 Dominik Richter. All rights reserved.
require 'thor'
require 'json'
require_relative '../lib/vulcano'
require 'vulcano/log'
require 'vulcano/profiles'
require 'vulcano/metadata'
class VulcanoCLI < Thor
desc "json PATH", "read all tests in PATH and generate a JSON-profile"
option :output, aliases: :o, type: :string
option :print, aliases: :p, type: :boolean
def json(*paths)
paths.each do |path|
Vulcano::Profiles.new.valid_folder? path unless options[:print]
vc = Vulcano::Profiles.new({ quiet: options[:print] })
vc.add_folder(path)
if options[:print]
puts JSON.pretty_generate( vc.profiles )
else
dst = options[:output] || File.join( path, '.vulcano.json' )
if File::exist? dst
puts "----> updating #{dst}"
else
puts "----> creating #{dst}"
end
fdst = File::expand_path(dst)
File::write(fdst, JSON.dump(vc.profiles))
end
end
end
desc "check PATH", "check all tests in PATH"
def check(*paths)
paths.each do |path|
puts "#{path}"
Vulcano::Profiles.new.valid_folder? path
puts
end
end
end
VulcanoCLI.start(ARGV)