Class: FlutterRb::Check
- Inherits:
-
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
#check ⇒ Object
20
21
22
|
# File 'lib/flutter_rb/checks/check.rb', line 20
def check
raise UNIMPLEMENTED_ERROR
end
|
#description ⇒ Object
16
17
18
|
# File 'lib/flutter_rb/checks/check.rb', line 16
def description
'No provided'
end
|
#name ⇒ Object
8
9
10
|
# File 'lib/flutter_rb/checks/check.rb', line 8
def name
raise UNIMPLEMENTED_ERROR
end
|
#summary ⇒ Object
12
13
14
|
# File 'lib/flutter_rb/checks/check.rb', line 12
def summary
raise UNIMPLEMENTED_ERROR
end
|