Class: FlutterRb::Check
- Inherits:
-
Object
- Object
- FlutterRb::Check
- 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
Direct Known Subclasses
PluginDirectoriesCheck, PluginGradleAndroidPackageCheck, PluginGradleVersionCheck, PluginPodspecCheck, PluginPubspecCheck, PluginPubspecFlutterLintsCheck, PluginPubspecLintsCheck
Constant Summary collapse
- UNIMPLEMENTED_ERROR =
'Error: missing method'
Instance Method Summary collapse
-
#check(project) ⇒ CheckReport
rubocop:disable Lint/UnusedMethodArgument.
- #description ⇒ String
- #name ⇒ String
- #summary ⇒ String
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 |
#description ⇒ String
21 22 23 |
# File 'lib/flutter_rb/checks/check.rb', line 21 def description 'No provided' end |
#name ⇒ String
11 12 13 |
# File 'lib/flutter_rb/checks/check.rb', line 11 def name raise UNIMPLEMENTED_ERROR end |
#summary ⇒ String
16 17 18 |
# File 'lib/flutter_rb/checks/check.rb', line 16 def summary raise UNIMPLEMENTED_ERROR end |