Sha256: c87497fa33d740af3f779aa101300015417641991e10a4df0ea26262ceb9a9ff

Contents?: true

Size: 469 Bytes

Versions: 1

Compression:

Stored size: 469 Bytes

Contents

require 'json'

# encoding: utf-8
module SensuPluginsHAProxy
  # This defines the version of the gem
  module Version
    MAJOR = 0
    MINOR = 0
    PATCH = 1

    VER_STRING = [MAJOR, MINOR, PATCH, 'alpha.3'].compact.join('.')

    NAME   = 'sensu-plugins-haproxy'
    BANNER = "#{NAME} v%s"

    module_function

    def version
      format(BANNER, VER_STRING)
    end

    def json_version
      {
        'version' => VER_STRING
      }.to_json
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sensu-plugins-haproxy-0.0.1.alpha.3 lib/sensu-plugins-haproxy/version.rb