Class: FlutterRb::Check

Inherits:
Object
  • Object
show all
Defined in:
lib/flutter_rb/checks/check.rb

Overview

Base class for all checks Class provides default methods structure All methods using for create reports

Constant Summary collapse

UNIMPLEMENTED_ERROR =
'Error: missing method'.freeze

Instance Method Summary collapse

Instance Method Details

#checkObject



20
21
22
# File 'lib/flutter_rb/checks/check.rb', line 20

def check
  raise UNIMPLEMENTED_ERROR
end

#descriptionObject



16
17
18
# File 'lib/flutter_rb/checks/check.rb', line 16

def description
  'No provided'
end

#nameObject



8
9
10
# File 'lib/flutter_rb/checks/check.rb', line 8

def name
  raise UNIMPLEMENTED_ERROR
end

#summaryObject



12
13
14
# File 'lib/flutter_rb/checks/check.rb', line 12

def summary
  raise UNIMPLEMENTED_ERROR
end