Module: FluentCommandBuilder::MSTest

Defined in:
lib/fluent_command_builder/command_builders/mstest.rb,
lib/fluent_command_builder/command_builders/mstest_80.rb,
lib/fluent_command_builder/command_builders/mstest_90.rb,
lib/fluent_command_builder/command_builders/mstest_100.rb

Defined Under Namespace

Modules: V100, V80, V90

Constant Summary collapse

COMMAND_NAME =
'MSTest'

Class Method Summary collapse

Class Method Details

.version(path = nil) ⇒ Object



15
16
17
# File 'lib/fluent_command_builder/command_builders/mstest.rb', line 15

def self.version(path=nil)
  self.version_detector.version path
end

.version_detectorObject



9
10
11
# File 'lib/fluent_command_builder/command_builders/mstest.rb', line 9

def self.version_detector
  @version_detector ||= StandardVersionDetector.new COMMAND_NAME, '/help'
end

.version_detector=(value) ⇒ Object



12
13
14
# File 'lib/fluent_command_builder/command_builders/mstest.rb', line 12

def self.version_detector=(value)
  @version_detector = value
end