Module: Kitchen::Driver::Version

Defined in:
lib/kitchen/driver/marathon_version.rb

Overview

This defines the version of the gem

Constant Summary collapse

MAJOR =
0
MINOR =
1
PATCH =
0
BUILD =
''.freeze
STRING =
[MAJOR, MINOR, PATCH, BUILD].compact.join('.').chomp('.')

Class Method Summary collapse

Class Method Details

.json_versionObject



34
35
36
37
38
# File 'lib/kitchen/driver/marathon_version.rb', line 34

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