Sha256: 9bc7d7e80edc86814a4504db41b3cc501545532657c94c07de5d1af7476a837f
Contents?: true
Size: 452 Bytes
Versions: 1
Compression:
Stored size: 452 Bytes
Contents
require 'json' # encoding: utf-8 module SensuPluginsCeph # This defines the version of the gem module Version MAJOR = 0 MINOR = 0 PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') NAME = 'sensu-plugins-ceph' 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-ceph-0.0.1 | lib/sensu-plugins-ceph/version.rb |