Class: FlutterRb::PluginPodspecCheck
- Inherits:
-
Check
- Object
- Check
- FlutterRb::PluginPodspecCheck
show all
- Defined in:
- lib/flutter_rb/checks/plugin_podspec_check.rb
Overview
Base class for all info parameters in Flutter plugin podspec file
Constant Summary
Constants inherited
from Check
Check::UNIMPLEMENTED_ERROR
Instance Method Summary
collapse
Methods inherited from Check
#check, #description
Instance Method Details
#name ⇒ Object
7
8
9
|
# File 'lib/flutter_rb/checks/plugin_podspec_check.rb', line 7
def name
"PluginPodspec#{podspec_parameter.capitalize}Check"
end
|
#podspec_parameter ⇒ Object
11
12
13
|
# File 'lib/flutter_rb/checks/plugin_podspec_check.rb', line 11
def podspec_parameter
UNIMPLEMENTED_ERROR
end
|
#summary ⇒ Object
15
16
17
|
# File 'lib/flutter_rb/checks/plugin_podspec_check.rb', line 15
def summary
"Validate Flutter plugin's #{podspec_parameter} in podspec file"
end
|