Module: Tox::Version

Defined in:
lib/tox/version.rb

Overview

Gem, library API and ABI version strings and component numbers.

Constant Summary collapse

GEM_VERSION =

Gem version.

'0.0.3'

Class Method Summary collapse

Class Method Details

.abi_versionObject



16
17
18
# File 'lib/tox/version.rb', line 16

def self.abi_version
  "#{abi_major}.#{abi_minor}.#{abi_patch}"
end

.const_missing(name) ⇒ Object



11
12
13
14
# File 'lib/tox/version.rb', line 11

def self.const_missing(name)
  return "#{API_MAJOR}.#{API_MINOR}.#{API_PATCH}" if name == :API_VERSION
  super
end