Class: FlutterRb::PluginPodspecCheck

Inherits:
Check
  • Object
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

#nameString

Returns:

  • (String)


8
9
10
# File 'lib/flutter_rb/checks/plugin_podspec_check.rb', line 8

def name
  "PluginPodspec#{podspec_parameter.capitalize}Check"
end

#podspec_parameterString

Returns:

  • (String)


13
14
15
# File 'lib/flutter_rb/checks/plugin_podspec_check.rb', line 13

def podspec_parameter
  UNIMPLEMENTED_ERROR
end

#summaryString

Returns:

  • (String)


18
19
20
# File 'lib/flutter_rb/checks/plugin_podspec_check.rb', line 18

def summary
  "Validate Flutter plugin's #{podspec_parameter} in podspec file"
end