Sha256: 662468c103f8e2a88c90035e54dfbf4adee13d4a99b3a4b08f202c62e46f4d1d

Contents?: true

Size: 443 Bytes

Versions: 1

Compression:

Stored size: 443 Bytes

Contents

# SensuPluginsGpg is the main module
module SensuPluginsGpg
  # Version holds details about version number. It consists of
  # three elements which are major, minor and patch number.
  module Version
    # Major version number (X.0.0)
    MAJOR = 2
    # Minor version number (0.X.0)
    MINOR = 0
    # Patch version number (0.0.X)
    PATCH = 0
    # Version number (X.X.X)
    VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sensu-plugins-gpg-2.0.0 lib/sensu-plugins-gpg/version.rb