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'

Instance Method Summary collapse

Instance Method Details

#check(project) ⇒ CheckReport

rubocop:disable Lint/UnusedMethodArgument



28
29
30
# File 'lib/flutter_rb/checks/check.rb', line 28

def check(project)
  raise UNIMPLEMENTED_ERROR
end

#descriptionString



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

def description
  'No provided'
end

#nameString



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

def name
  raise UNIMPLEMENTED_ERROR
end

#summaryString



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

def summary
  raise UNIMPLEMENTED_ERROR
end