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    
hiera-eyaml / lib / hiera / backend / eyaml.rb
Size: Mime:
class Hiera
  module Backend
    module Eyaml

      VERSION = "3.2.2"
      DESCRIPTION = "Hiera-eyaml is a backend for Hiera which provides OpenSSL encryption/decryption for Hiera properties"

      class RecoverableError < StandardError
      end

      def self.subcommand= command
        @@subcommand = command
      end

      def self.subcommand
        @@subcommand
      end

      def self.default_encryption_scheme= new_encryption
        @@default_encryption_scheme = new_encryption
      end

      def self.default_encryption_scheme
        @@default_encryption_scheme ||= "PKCS7"
        @@default_encryption_scheme
      end

      def self.verbosity_level= new_verbosity_level
        @@debug_level = new_verbosity_level
      end

      def self.verbosity_level
        @@debug_level ||= 1
        @@debug_level
      end

      def self.subcommands= commands
        @@subcommands = commands
      end

      def self.subcommands
        @@subcommands
      end

    end
  end
end