flutter_rb 1.0.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +55 -19
- data/bin/frb +3 -16
- data/lib/checkstyle_report/checkstyle_report.rb +84 -40
- data/lib/flutter_rb/checks/check.rb +19 -17
- data/lib/flutter_rb/checks/plugin_directories_check.rb +18 -12
- data/lib/flutter_rb/checks/plugin_gradle_check.rb +39 -22
- data/lib/flutter_rb/checks/plugin_podspec_check.rb +80 -47
- data/lib/flutter_rb/checks/plugin_pubspec_check.rb +139 -65
- data/lib/flutter_rb/config/flutter_rb_config.rb +17 -5
- data/lib/flutter_rb/config/flutter_rb_config_initializer.rb +36 -25
- data/lib/flutter_rb/project/project.rb +40 -16
- data/lib/flutter_rb/project/specs/android/android_folder.rb +16 -3
- data/lib/flutter_rb/project/specs/android/gradle.rb +37 -11
- data/lib/flutter_rb/project/specs/flutter/dev_dependency.rb +16 -4
- data/lib/flutter_rb/project/specs/flutter/platform_plugin.rb +28 -8
- data/lib/flutter_rb/project/specs/flutter/pubspec.rb +50 -22
- data/lib/flutter_rb/project/specs/flutter/pubspec_info.rb +30 -14
- data/lib/flutter_rb/project/specs/ios/ios_folder.rb +20 -4
- data/lib/flutter_rb/project/specs/ios/podspec.rb +47 -17
- data/lib/flutter_rb/report/check_report.rb +38 -19
- data/lib/flutter_rb.rb +46 -40
- metadata +30 -4
- data/CODE_OF_CONDUCT.md +0 -76
- data/COMMIT_CONVENTION.md +0 -58
@@ -1,125 +1,158 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative 'check'
|
2
4
|
require_relative '../report/check_report'
|
3
5
|
|
4
6
|
module FlutterRb
|
5
|
-
#
|
7
|
+
# This class represents a check for Flutter plugin's podspec file.
|
8
|
+
# It is an abstract class and should be subclassed to perform specific checks.
|
6
9
|
class PluginPodspecCheck < Check
|
7
|
-
#
|
10
|
+
# Returns the name of the check.
|
11
|
+
# The name is constructed by appending the capitalized podspec_parameter to "PluginPodspecCheck".
|
12
|
+
#
|
13
|
+
# @return [String] the name of the check
|
8
14
|
def name
|
9
15
|
"PluginPodspec#{podspec_parameter.capitalize}Check"
|
10
16
|
end
|
11
17
|
|
12
|
-
#
|
18
|
+
# Returns the parameter for which the check is performed in the podspec file.
|
19
|
+
# This method should be implemented in subclasses to specify the specific parameter.
|
20
|
+
#
|
21
|
+
# @raise [RuntimeError] if the method is not implemented in a subclass
|
22
|
+
# @return [String] the parameter for which the check is performed
|
13
23
|
def podspec_parameter
|
14
|
-
UNIMPLEMENTED_ERROR
|
24
|
+
raise UNIMPLEMENTED_ERROR
|
15
25
|
end
|
16
26
|
|
17
|
-
#
|
18
|
-
|
27
|
+
# Returns the description of the check.
|
28
|
+
# The description explains the purpose of the check,
|
29
|
+
# which is to validate a specific parameter in the Flutter plugin's podspec file.
|
30
|
+
#
|
31
|
+
# @return [String] the description of the check
|
32
|
+
def description
|
19
33
|
"Validate Flutter plugin's #{podspec_parameter} in podspec file"
|
20
34
|
end
|
21
35
|
end
|
22
36
|
|
23
|
-
#
|
37
|
+
# This class represents a check for Flutter plugin's name in the podspec file.
|
38
|
+
# It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
|
24
39
|
class PluginPodspecNameCheck < PluginPodspecCheck
|
25
|
-
#
|
40
|
+
# Returns the parameter for which the check is performed in the podspec file.
|
41
|
+
# In this case, it returns 'name'.
|
42
|
+
#
|
43
|
+
# @return [String] the parameter for which the check is performed
|
26
44
|
def podspec_parameter
|
27
45
|
'name'
|
28
46
|
end
|
29
47
|
|
30
|
-
#
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
# @param
|
36
|
-
# @return
|
48
|
+
# Performs the check for the plugin's name in the podspec file.
|
49
|
+
# It compares the name in the pubspec file with the name in the podspec file.
|
50
|
+
# If they match, it returns a CheckReport with a normal status.
|
51
|
+
# If they do not match, it returns a CheckReport with a warning status.
|
52
|
+
#
|
53
|
+
# @param project [Project] the project for which the check is performed
|
54
|
+
# @return [CheckReport] the report of the check
|
37
55
|
def check(project)
|
38
56
|
name_in_pubspec = project.pubspec.pubspec_info.name
|
39
57
|
podspec = project.ios_folder.podspec
|
40
58
|
name_in_podspec = podspec.name
|
59
|
+
|
41
60
|
CheckReport.new(
|
42
61
|
name,
|
43
|
-
name_in_pubspec == name_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
|
62
|
+
name_in_pubspec == name_in_podspec ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::WARNING,
|
44
63
|
description,
|
45
64
|
podspec.path
|
46
65
|
)
|
47
66
|
end
|
48
67
|
end
|
49
68
|
|
50
|
-
#
|
69
|
+
# This class represents a check for Flutter plugin's version in the podspec file.
|
70
|
+
# It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
|
51
71
|
class PluginPodspecVersionCheck < PluginPodspecCheck
|
52
|
-
#
|
72
|
+
# Returns the parameter for which the check is performed in the podspec file.
|
73
|
+
# In this case, it returns 'version'.
|
74
|
+
#
|
75
|
+
# @return [String] the parameter for which the check is performed
|
53
76
|
def podspec_parameter
|
54
77
|
'version'
|
55
78
|
end
|
56
79
|
|
57
|
-
#
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
# @param
|
63
|
-
# @return
|
80
|
+
# Performs the check for the plugin's version in the podspec file.
|
81
|
+
# It compares the version in the pubspec file with the version in the podspec file.
|
82
|
+
# If they match, it returns a CheckReport with a normal status.
|
83
|
+
# If they do not match, it returns a CheckReport with a warning status.
|
84
|
+
#
|
85
|
+
# @param project [Project] the project for which the check is performed
|
86
|
+
# @return [CheckReport] the report of the check
|
64
87
|
def check(project)
|
65
88
|
version_in_pubspec = project.pubspec.pubspec_info.version
|
66
89
|
podspec = project.ios_folder.podspec
|
67
90
|
version_in_podspec = podspec.version
|
91
|
+
|
68
92
|
CheckReport.new(
|
69
93
|
name,
|
70
|
-
version_in_pubspec == version_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
|
94
|
+
version_in_pubspec == version_in_podspec ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::WARNING,
|
71
95
|
description,
|
72
96
|
podspec.path
|
73
97
|
)
|
74
98
|
end
|
75
99
|
end
|
76
100
|
|
77
|
-
#
|
101
|
+
# This class represents a check for Flutter plugin's authors in the podspec file.
|
102
|
+
# It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
|
78
103
|
class PluginPodspecAuthorsCheck < PluginPodspecCheck
|
79
|
-
#
|
104
|
+
# Returns the parameter for which the check is performed in the podspec file.
|
105
|
+
# In this case, it returns 'authors'.
|
106
|
+
#
|
107
|
+
# @return [String] the parameter for which the check is performed
|
80
108
|
def podspec_parameter
|
81
109
|
'authors'
|
82
110
|
end
|
83
111
|
|
84
|
-
#
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
# @param
|
90
|
-
# @return
|
112
|
+
# Performs the check for the plugin's authors in the podspec file.
|
113
|
+
# It checks if the 'authors' parameter is present in the podspec file.
|
114
|
+
# If it is present, it returns a CheckReport with a normal status.
|
115
|
+
# If it is not present, it returns a CheckReport with an error status.
|
116
|
+
#
|
117
|
+
# @param project [Project] the project for which the check is performed
|
118
|
+
# @return [CheckReport] the report of the check
|
91
119
|
def check(project)
|
92
120
|
podspec = project.ios_folder.podspec
|
93
121
|
author_exists = !podspec.authors.nil?
|
122
|
+
|
94
123
|
CheckReport.new(
|
95
124
|
name,
|
96
|
-
author_exists ? CheckReportStatus::NORMAL : CheckReportStatus::ERROR,
|
125
|
+
author_exists ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::ERROR,
|
97
126
|
description,
|
98
127
|
podspec.path
|
99
128
|
)
|
100
129
|
end
|
101
130
|
end
|
102
131
|
|
103
|
-
#
|
104
|
-
#
|
132
|
+
# This class represents a check for Flutter plugin's source in the podspec file.
|
133
|
+
# It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
|
105
134
|
class PluginPodspecSourceCheck < PluginPodspecCheck
|
106
|
-
#
|
135
|
+
# Returns the parameter for which the check is performed in the podspec file.
|
136
|
+
# In this case, it returns 'source'.
|
137
|
+
#
|
138
|
+
# @return [String] the parameter for which the check is performed
|
107
139
|
def podspec_parameter
|
108
140
|
'source'
|
109
141
|
end
|
110
142
|
|
111
|
-
#
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
# @param
|
117
|
-
# @return
|
143
|
+
# Performs the check for the plugin's source in the podspec file.
|
144
|
+
# It checks if the 'source' parameter is present in the podspec file.
|
145
|
+
# If it is present, it returns a CheckReport with a normal status.
|
146
|
+
# If it is not present, it returns a CheckReport with an error status.
|
147
|
+
#
|
148
|
+
# @param project [Project] the project for which the check is performed
|
149
|
+
# @return [CheckReport] the report of the check
|
118
150
|
def check(project)
|
119
151
|
podspec = project.ios_folder.podspec
|
152
|
+
|
120
153
|
CheckReport.new(
|
121
154
|
name,
|
122
|
-
podspec.source.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
155
|
+
podspec.source.nil? ? ::CheckReportStatus::ERROR : ::CheckReportStatus::NORMAL,
|
123
156
|
description,
|
124
157
|
podspec.path
|
125
158
|
)
|
@@ -1,41 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative 'check'
|
2
4
|
require_relative '../report/check_report'
|
3
5
|
|
4
6
|
module FlutterRb
|
5
|
-
#
|
7
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file.
|
8
|
+
# It is an abstract class and should be subclassed to perform specific checks.
|
6
9
|
class PluginPubspecCheck < Check
|
7
|
-
#
|
10
|
+
# Returns the name of the check.
|
11
|
+
# The name is constructed by appending the capitalized pubspec_parameter to "PluginPubspecCheck".
|
12
|
+
#
|
13
|
+
# @return [String] the name of the check
|
8
14
|
def name
|
9
15
|
"PluginPubspec#{pubspec_parameter.capitalize}Check"
|
10
16
|
end
|
11
17
|
|
12
|
-
#
|
18
|
+
# Returns the parameter to be checked in the pubspec.yaml file.
|
19
|
+
# This method should be implemented in subclasses to specify the specific parameter to be checked.
|
20
|
+
#
|
21
|
+
# @raise [NotImplementedError] if not implemented in subclasses
|
22
|
+
# @return [String] the parameter to be checked
|
13
23
|
def pubspec_parameter
|
14
24
|
raise UNIMPLEMENTED_ERROR
|
15
25
|
end
|
16
26
|
|
17
|
-
#
|
18
|
-
|
27
|
+
# Returns the description of the check.
|
28
|
+
# The description explains what the check is validating.
|
29
|
+
#
|
30
|
+
# @return [String] the description of the check
|
31
|
+
def description
|
19
32
|
"Validate Flutter plugin's #{pubspec_parameter} in pubspec.yaml"
|
20
33
|
end
|
21
34
|
end
|
22
35
|
|
23
|
-
#
|
36
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'name' parameter.
|
37
|
+
# It inherits from PluginPubspecCheck class.
|
24
38
|
class PluginPubspecNameCheck < PluginPubspecCheck
|
25
|
-
#
|
39
|
+
# Returns the parameter to be checked in the pubspec.yaml file.
|
40
|
+
# In this case, it returns 'name'.
|
41
|
+
#
|
42
|
+
# @return [String] the parameter to be checked
|
26
43
|
def pubspec_parameter
|
27
44
|
'name'
|
28
45
|
end
|
29
46
|
|
30
|
-
#
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
# @param {Project} project
|
36
|
-
# @return {CheckReport}
|
47
|
+
# Performs the check for the 'name' parameter in the pubspec.yaml file.
|
48
|
+
# It creates a CheckReport object with the result of the check.
|
49
|
+
#
|
50
|
+
# @param project [Project] the project to be checked
|
51
|
+
# @return [CheckReport] the report of the check result
|
37
52
|
def check(project)
|
38
53
|
pubspec = project.pubspec
|
54
|
+
|
39
55
|
CheckReport.new(
|
40
56
|
name,
|
41
57
|
pubspec.pubspec_info.name.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
@@ -45,22 +61,25 @@ module FlutterRb
|
|
45
61
|
end
|
46
62
|
end
|
47
63
|
|
48
|
-
#
|
64
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'description' parameter.
|
65
|
+
# It inherits from PluginPubspecCheck class.
|
49
66
|
class PluginPubspecDescriptionCheck < PluginPubspecCheck
|
50
|
-
#
|
67
|
+
# Returns the parameter to be checked in the pubspec.yaml file.
|
68
|
+
# In this case, it returns 'description'.
|
69
|
+
#
|
70
|
+
# @return [String] the parameter to be checked
|
51
71
|
def pubspec_parameter
|
52
72
|
'description'
|
53
73
|
end
|
54
74
|
|
55
|
-
#
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
# @param {Project} project
|
61
|
-
# @return {CheckReport}
|
75
|
+
# Performs the check for the 'description' parameter in the pubspec.yaml file.
|
76
|
+
# It creates a CheckReport object with the result of the check.
|
77
|
+
#
|
78
|
+
# @param project [Project] the project to be checked
|
79
|
+
# @return [CheckReport] the report of the check result
|
62
80
|
def check(project)
|
63
81
|
pubspec = project.pubspec
|
82
|
+
|
64
83
|
CheckReport.new(
|
65
84
|
name,
|
66
85
|
pubspec.pubspec_info.description.nil? ? CheckReportStatus::WARNING : CheckReportStatus::NORMAL,
|
@@ -70,22 +89,25 @@ module FlutterRb
|
|
70
89
|
end
|
71
90
|
end
|
72
91
|
|
73
|
-
#
|
92
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'version' parameter.
|
93
|
+
# It inherits from PluginPubspecCheck class.
|
74
94
|
class PluginPubspecVersionCheck < PluginPubspecCheck
|
75
|
-
#
|
95
|
+
# Returns the parameter to be checked in the pubspec.yaml file.
|
96
|
+
# In this case, it returns 'version'.
|
97
|
+
#
|
98
|
+
# @return [String] the parameter to be checked
|
76
99
|
def pubspec_parameter
|
77
100
|
'version'
|
78
101
|
end
|
79
102
|
|
80
|
-
#
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
# @param {Project} project
|
86
|
-
# @return {CheckReport}
|
103
|
+
# Performs the check for the 'version' parameter in the pubspec.yaml file.
|
104
|
+
# It creates a CheckReport object with the result of the check.
|
105
|
+
#
|
106
|
+
# @param project [Project] the project to be checked
|
107
|
+
# @return [CheckReport] the report of the check result
|
87
108
|
def check(project)
|
88
109
|
pubspec = project.pubspec
|
110
|
+
|
89
111
|
CheckReport.new(
|
90
112
|
name,
|
91
113
|
pubspec.pubspec_info.version.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
@@ -95,22 +117,25 @@ module FlutterRb
|
|
95
117
|
end
|
96
118
|
end
|
97
119
|
|
98
|
-
#
|
120
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'author' parameter.
|
121
|
+
# It inherits from PluginPubspecCheck class.
|
99
122
|
class PluginPubspecAuthorCheck < PluginPubspecCheck
|
100
|
-
#
|
123
|
+
# Returns the parameter to be checked in the pubspec.yaml file.
|
124
|
+
# In this case, it returns 'author'.
|
125
|
+
#
|
126
|
+
# @return [String] the parameter to be checked
|
101
127
|
def pubspec_parameter
|
102
128
|
'author'
|
103
129
|
end
|
104
130
|
|
105
|
-
#
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
# @param {Project} project
|
111
|
-
# @return {CheckReport}
|
131
|
+
# Performs the check for the 'author' parameter in the pubspec.yaml file.
|
132
|
+
# It creates a CheckReport object with the result of the check.
|
133
|
+
#
|
134
|
+
# @param project [Project] the project to be checked
|
135
|
+
# @return [CheckReport] the report of the check result
|
112
136
|
def check(project)
|
113
137
|
pubspec = project.pubspec
|
138
|
+
|
114
139
|
CheckReport.new(
|
115
140
|
name,
|
116
141
|
pubspec.pubspec_info.author.nil? ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
|
@@ -120,22 +145,25 @@ module FlutterRb
|
|
120
145
|
end
|
121
146
|
end
|
122
147
|
|
123
|
-
#
|
148
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'homepage' parameter.
|
149
|
+
# It inherits from PluginPubspecCheck class.
|
124
150
|
class PluginPubspecHomepageCheck < PluginPubspecCheck
|
125
|
-
#
|
151
|
+
# Returns the parameter to be checked in the pubspec.yaml file.
|
152
|
+
# In this case, it returns 'homepage'.
|
153
|
+
#
|
154
|
+
# @return [String] the parameter to be checked
|
126
155
|
def pubspec_parameter
|
127
156
|
'homepage'
|
128
157
|
end
|
129
158
|
|
130
|
-
#
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
# @param {Project} project
|
136
|
-
# @return {CheckReport}
|
159
|
+
# Performs the check for the 'homepage' parameter in the pubspec.yaml file.
|
160
|
+
# It creates a CheckReport object with the result of the check.
|
161
|
+
#
|
162
|
+
# @param project [Project] the project to be checked
|
163
|
+
# @return [CheckReport] the report of the check result
|
137
164
|
def check(project)
|
138
165
|
pubspec = project.pubspec
|
166
|
+
|
139
167
|
CheckReport.new(
|
140
168
|
name,
|
141
169
|
pubspec.pubspec_info.homepage.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
@@ -145,34 +173,80 @@ module FlutterRb
|
|
145
173
|
end
|
146
174
|
end
|
147
175
|
|
148
|
-
#
|
149
|
-
#
|
150
|
-
class
|
151
|
-
#
|
176
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'lints' dependency.
|
177
|
+
# It inherits from the Check class.
|
178
|
+
class PluginPubspecLintsCheck < Check
|
179
|
+
# Returns the name of the check.
|
180
|
+
#
|
181
|
+
# @return [String] the name of the check
|
152
182
|
def name
|
153
|
-
'
|
183
|
+
'PluginPubspecLintsCheck'
|
154
184
|
end
|
155
185
|
|
156
|
-
#
|
157
|
-
|
158
|
-
|
186
|
+
# Returns the description of the check.
|
187
|
+
# The description explains what the check is validating.
|
188
|
+
#
|
189
|
+
# @return [String] the description of the check
|
190
|
+
def description
|
191
|
+
'Check Flutter plugin lints dependency in pubspec file'
|
159
192
|
end
|
160
193
|
|
161
|
-
#
|
194
|
+
# Performs the check for the 'lints' dependency in the pubspec.yaml file.
|
195
|
+
# It creates a CheckReport object with the result of the check.
|
196
|
+
#
|
197
|
+
# @param project [Project] the project to be checked
|
198
|
+
# @return [CheckReport] the report of the check result
|
199
|
+
def check(project)
|
200
|
+
pubspec = project.pubspec
|
201
|
+
# Detects if 'lints' is a dependency in the pubspec file
|
202
|
+
lints = pubspec.dev_dependencies&.detect do |dev_dependency|
|
203
|
+
dev_dependency.name == 'lints'
|
204
|
+
end
|
205
|
+
|
206
|
+
# Creates a CheckReport object with the result of the check
|
207
|
+
CheckReport.new(
|
208
|
+
name,
|
209
|
+
lints.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
210
|
+
description,
|
211
|
+
pubspec.path
|
212
|
+
)
|
213
|
+
end
|
214
|
+
end
|
215
|
+
|
216
|
+
# This class represents a check for Flutter plugin's pubspec.yaml file for 'flutter_lints' dependency.
|
217
|
+
# It inherits from the Check class.
|
218
|
+
class PluginPubspecFlutterLintsCheck < Check
|
219
|
+
# Returns the name of the check.
|
220
|
+
#
|
221
|
+
# @return [String] the name of the check
|
222
|
+
def name
|
223
|
+
'PluginPubspecFlutterLintsCheck'
|
224
|
+
end
|
225
|
+
|
226
|
+
# Returns the description of the check.
|
227
|
+
# The description explains what the check is validating.
|
228
|
+
#
|
229
|
+
# @return [String] the description of the check
|
162
230
|
def description
|
163
|
-
'Check Flutter plugin
|
231
|
+
'Check Flutter plugin flutter_lints dependency in pubspec file'
|
164
232
|
end
|
165
233
|
|
166
|
-
#
|
167
|
-
#
|
234
|
+
# Performs the check for the 'flutter_lints' dependency in the pubspec.yaml file.
|
235
|
+
# It creates a CheckReport object with the result of the check.
|
236
|
+
#
|
237
|
+
# @param project [Project] the project to be checked
|
238
|
+
# @return [CheckReport] the report of the check result
|
168
239
|
def check(project)
|
169
240
|
pubspec = project.pubspec
|
170
|
-
|
171
|
-
|
241
|
+
# Detects if 'flutter_lints' is a dependency in the pubspec file
|
242
|
+
flutter_lints = pubspec.dev_dependencies&.detect do |dev_dependency|
|
243
|
+
dev_dependency.name == 'flutter_lints'
|
172
244
|
end
|
245
|
+
|
246
|
+
# Creates a CheckReport object with the result of the check
|
173
247
|
CheckReport.new(
|
174
248
|
name,
|
175
|
-
|
249
|
+
flutter_lints.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
176
250
|
description,
|
177
251
|
pubspec.path
|
178
252
|
)
|
@@ -1,15 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module FlutterRb
|
2
|
-
#
|
4
|
+
# This class represents the configuration for FlutterRb checks.
|
5
|
+
# It holds arrays of checks for Flutter, Android, and iOS platforms.
|
3
6
|
class FlutterRbConfig
|
4
|
-
#
|
5
|
-
#
|
6
|
-
# @param
|
7
|
+
# Initializes a new instance of FlutterRbConfig.
|
8
|
+
#
|
9
|
+
# @param flutter_checks [Array<Check>] An array of Flutter checks.
|
10
|
+
# @param android_checks [Array<Check>] An array of Android checks.
|
11
|
+
# @param ios_checks [Array<Check>] An array of iOS checks.
|
7
12
|
def initialize(flutter_checks, android_checks, ios_checks)
|
8
13
|
@flutter_checks = flutter_checks
|
9
14
|
@android_checks = android_checks
|
10
15
|
@ios_checks = ios_checks
|
11
16
|
end
|
12
17
|
|
13
|
-
|
18
|
+
# Provides read and write access to the flutter_checks attribute.
|
19
|
+
attr_accessor :flutter_checks
|
20
|
+
|
21
|
+
# Provides read and write access to the android_checks attribute.
|
22
|
+
attr_accessor :android_checks
|
23
|
+
|
24
|
+
# Provides read and write access to the ios_checks attribute.
|
25
|
+
attr_accessor :ios_checks
|
14
26
|
end
|
15
27
|
end
|
@@ -1,11 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative './flutter_rb_config'
|
2
4
|
require_relative '../checks/plugin_directories_check'
|
3
5
|
|
4
6
|
require 'yaml'
|
5
7
|
|
6
8
|
module FlutterRb
|
7
|
-
#
|
9
|
+
# This class is responsible for initializing a FlutterRbConfig object.
|
8
10
|
class FlutterRbConfigInitializer
|
11
|
+
# An array of Flutter checks to be performed.
|
9
12
|
FLUTTER_CHECKS = [
|
10
13
|
PluginDirectoriesCheck.new,
|
11
14
|
PluginPubspecNameCheck.new,
|
@@ -13,14 +16,17 @@ module FlutterRb
|
|
13
16
|
PluginPubspecVersionCheck.new,
|
14
17
|
PluginPubspecAuthorCheck.new,
|
15
18
|
PluginPubspecHomepageCheck.new,
|
16
|
-
|
19
|
+
PluginPubspecLintsCheck.new,
|
20
|
+
PluginPubspecFlutterLintsCheck.new
|
17
21
|
].freeze
|
18
22
|
|
23
|
+
# An array of Android checks to be performed.
|
19
24
|
ANDROID_CHECKS = [
|
20
25
|
PluginGradleAndroidPackageCheck.new,
|
21
26
|
PluginGradleVersionCheck.new
|
22
27
|
].freeze
|
23
28
|
|
29
|
+
# An array of iOS checks to be performed.
|
24
30
|
IOS_CHECKS = [
|
25
31
|
PluginPodspecNameCheck.new,
|
26
32
|
PluginPodspecVersionCheck.new,
|
@@ -28,38 +34,43 @@ module FlutterRb
|
|
28
34
|
PluginPodspecSourceCheck.new
|
29
35
|
].freeze
|
30
36
|
|
31
|
-
#
|
32
|
-
#
|
37
|
+
# Parses a YAML configuration file and initializes a FlutterRbConfig object.
|
38
|
+
#
|
39
|
+
# @param path [String] The path to the YAML configuration file.
|
40
|
+
# @return [FlutterRbConfig] A FlutterRbConfig object initialized with the parsed configuration.
|
33
41
|
def parse(path)
|
34
|
-
config = YAML.load_file(path)
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
42
|
+
config = YAML.load_file(path)
|
43
|
+
|
44
|
+
exclude_flutter_checks = ::Set.new
|
45
|
+
exclude_android_checks = ::Set.new
|
46
|
+
exclude_ios_checks = ::Set.new
|
47
|
+
|
48
|
+
unless config.nil?
|
49
|
+
exclude_checks = YAML.load_file(path)['exclude']
|
50
|
+
|
51
|
+
unless exclude_checks['flutter'].nil?
|
52
|
+
exclude_flutter_checks += exclude_checks['flutter'].map { |check| "FlutterRb::#{check}" }
|
39
53
|
end
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
android_checks += config['android'].map do |check|
|
44
|
-
Object.const_get("FlutterRb::#{check}").new
|
54
|
+
|
55
|
+
unless exclude_checks['android'].nil?
|
56
|
+
exclude_android_checks += exclude_checks['android'].map { |check| "FlutterRb::#{check}" }
|
45
57
|
end
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
ios_checks += config['ios'].map do |check|
|
50
|
-
Object.const_get("FlutterRb::#{check}").new
|
58
|
+
|
59
|
+
unless exclude_checks['ios'].nil?
|
60
|
+
exclude_ios_checks += exclude_checks['ios'].map { |check| "FlutterRb::#{check}" }
|
51
61
|
end
|
52
62
|
end
|
63
|
+
|
53
64
|
FlutterRbConfig.new(
|
54
|
-
|
55
|
-
|
56
|
-
|
65
|
+
FLUTTER_CHECKS.reject { |check| exclude_flutter_checks&.include?(check.class.name) },
|
66
|
+
ANDROID_CHECKS.reject { |check| exclude_android_checks&.include?(check.class.name) },
|
67
|
+
IOS_CHECKS.reject { |check| exclude_ios_checks&.include?(check.class.name) }
|
57
68
|
)
|
58
69
|
end
|
59
70
|
|
60
|
-
#
|
61
|
-
|
62
|
-
# @return
|
71
|
+
# Initializes a FlutterRbConfig object with the default checks.
|
72
|
+
#
|
73
|
+
# @return [FlutterRbConfig] A FlutterRbConfig object initialized with the default checks.
|
63
74
|
def default
|
64
75
|
FlutterRbConfig.new(
|
65
76
|
FLUTTER_CHECKS,
|