Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
inspec / lib / inspec / secrets.rb
Size: Mime:
# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter

require 'inspec/plugin/v1'

module Inspec
  SecretsBackend = PluginRegistry.new

  def self.secrets(version)
    if version != 1
      raise 'Only secrets version 1 is supported!'
    end
    Inspec::Plugins::Secret
  end
end

require 'inspec/secrets/yaml'