Class: Dev::Coverage::Base

Inherits:
Object show all
Defined in:
lib/firespring_dev_commands/coverage/base.rb

Overview

Class which defines the methods which must be implemented to function as a coverage class

Direct Known Subclasses

Cobertura, None

Instance Method Summary collapse

Instance Method Details

#checkObject

Raises not implemented



21
22
23
# File 'lib/firespring_dev_commands/coverage/base.rb', line 21

def check(*)
  raise 'not implemented'
end

#node_optionsObject

Raises not implemented



11
12
13
# File 'lib/firespring_dev_commands/coverage/base.rb', line 11

def node_options
  raise 'not implemented'
end

#php_optionsObject

Raises not implemented



6
7
8
# File 'lib/firespring_dev_commands/coverage/base.rb', line 6

def php_options
  raise 'not implemented'
end

#ruby_optionsObject

Raises not implemented



16
17
18
# File 'lib/firespring_dev_commands/coverage/base.rb', line 16

def ruby_options
  raise 'not implemented'
end