Class: FlutterRb::Check
- Inherits:
-
Object
- Object
- FlutterRb::Check
- Defined in:
- lib/flutter_rb/checks/check.rb
Overview
A class representing a check to be performed on a project.
Direct Known Subclasses
PluginDirectoriesCheck, PluginGradleAndroidPackageCheck, PluginGradleVersionCheck, PluginPodspecCheck, PluginPubspecCheck, PluginPubspecFlutterLintsCheck, PluginPubspecLintsCheck
Constant Summary collapse
- UNIMPLEMENTED_ERROR =
Error message to be raised when a method is not implemented.
'Error: missing method'
Instance Method Summary collapse
-
#check(project) ⇒ CheckReport
Performs the check on the given project and returns a report.
-
#description ⇒ String
Returns a description of the check.
-
#name ⇒ String
Returns the name of the check.
Instance Method Details
#check(project) ⇒ CheckReport
Performs the check on the given project and returns a report.
30 31 32 |
# File 'lib/flutter_rb/checks/check.rb', line 30 def check(project) raise UNIMPLEMENTED_ERROR end |
#description ⇒ String
Returns a description of the check.
21 22 23 |
# File 'lib/flutter_rb/checks/check.rb', line 21 def description raise UNIMPLEMENTED_ERROR end |
#name ⇒ String
Returns the name of the check.
13 14 15 |
# File 'lib/flutter_rb/checks/check.rb', line 13 def name raise UNIMPLEMENTED_ERROR end |