flutter_rb 0.8.1 → 0.8.3

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.
@@ -1,57 +1,57 @@
1
- require_relative './check'
2
- require_relative '../report/check_report'
3
-
4
- module FlutterRb
5
- # Check 'android; import not exists in Gradle project config (build.gradle file)
6
- class PluginGradleAndroidPackageCheck < Check
7
- def name
8
- 'PluginGradleAndroidPackageCheck'
9
- end
10
-
11
- def summary
12
- 'Validate that \android\ package not exists in build.gradle config'
13
- end
14
-
15
- def description
16
- 'Validate that \android\ package not exists in Gradle project config (build.gradle file)'
17
- end
18
-
19
- def check(project)
20
- gradle = project.android_folder.gradle
21
- import_exist = File.readlines("#{gradle.path}/build.gradle").grep(/package android/).size.positive?
22
- CheckReport.new(
23
- name,
24
- import_exist ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
25
- description,
26
- gradle.path
27
- )
28
- end
29
- end
30
-
31
- # Check Flutter plugin version in Gradle project config (build.gradle file)
32
- class PluginGradleVersionCheck < Check
33
- def name
34
- 'PluginGradleVersionCheck'
35
- end
36
-
37
- def summary
38
- 'Validate Flutter plugin\s version in build.gradle file'
39
- end
40
-
41
- def description
42
- 'Check plugin version in Gradle project config (build.gradle file)'
43
- end
44
-
45
- def check(project)
46
- version_in_pubspec = project.pubspec.pubspec_info.version
47
- gradle = project.android_folder.gradle
48
- version_in_gradle = gradle.version
49
- CheckReport.new(
50
- name,
51
- version_in_pubspec == version_in_gradle ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
52
- description,
53
- gradle.path
54
- )
55
- end
56
- end
57
- end
1
+ require_relative './check'
2
+ require_relative '../report/check_report'
3
+
4
+ module FlutterRb
5
+ # Check 'android; import not exists in Gradle project config (build.gradle file)
6
+ class PluginGradleAndroidPackageCheck < Check
7
+ def name
8
+ 'PluginGradleAndroidPackageCheck'
9
+ end
10
+
11
+ def summary
12
+ 'Validate that \android\ package not exists in build.gradle config'
13
+ end
14
+
15
+ def description
16
+ 'Validate that \android\ package not exists in Gradle project config (build.gradle file)'
17
+ end
18
+
19
+ def check(project)
20
+ gradle = project.android_folder.gradle
21
+ import_exist = File.readlines("#{gradle.path}/build.gradle").grep(/package android/).size.positive?
22
+ CheckReport.new(
23
+ name,
24
+ import_exist ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
25
+ description,
26
+ gradle.path
27
+ )
28
+ end
29
+ end
30
+
31
+ # Check Flutter plugin version in Gradle project config (build.gradle file)
32
+ class PluginGradleVersionCheck < Check
33
+ def name
34
+ 'PluginGradleVersionCheck'
35
+ end
36
+
37
+ def summary
38
+ 'Validate Flutter plugin\s version in build.gradle file'
39
+ end
40
+
41
+ def description
42
+ 'Check plugin version in Gradle project config (build.gradle file)'
43
+ end
44
+
45
+ def check(project)
46
+ version_in_pubspec = project.pubspec.pubspec_info.version
47
+ gradle = project.android_folder.gradle
48
+ version_in_gradle = gradle.version
49
+ CheckReport.new(
50
+ name,
51
+ version_in_pubspec == version_in_gradle ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
52
+ description,
53
+ gradle.path
54
+ )
55
+ end
56
+ end
57
+ end
@@ -1,109 +1,109 @@
1
- require_relative 'check'
2
- require_relative '../report/check_report'
3
-
4
- module FlutterRb
5
- # Base class for all info parameters in Flutter plugin podspec file
6
- class PluginPodspecCheck < Check
7
- def name
8
- "PluginPodspec#{podspec_parameter.capitalize}Check"
9
- end
10
-
11
- def podspec_parameter
12
- UNIMPLEMENTATION_ERROR
13
- end
14
-
15
- def summary
16
- "Validate Flutter plugin's #{podspec_parameter} in podspec file"
17
- end
18
- end
19
-
20
- # Check Flutter plugin name in podspec file. Exists or not
21
- class PluginPodspecNameCheck < PluginPodspecCheck
22
- def podspec_parameter
23
- 'name'
24
- end
25
-
26
- def check(project)
27
- name_in_pubspec = project.pubspec.pubspec_info.name
28
- podspec = project.ios_folder.podspec
29
- name_in_podspec = podspec.name
30
- CheckReport.new(
31
- name,
32
- name_in_pubspec == name_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
33
- description,
34
- podspec.path
35
- )
36
- end
37
-
38
- def description
39
- 'Check plugin name in podspec file'
40
- end
41
- end
42
-
43
- # Check Flutter plugin version in podspec file. Exists or not
44
- class PluginPodspecVersionCheck < PluginPodspecCheck
45
- def podspec_parameter
46
- 'version'
47
- end
48
-
49
- def check(project)
50
- version_in_pubspec = project.pubspec.pubspec_info.version
51
- podspec = project.ios_folder.podspec
52
- version_in_podspec = podspec.version
53
- CheckReport.new(
54
- name,
55
- version_in_pubspec == version_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
56
- description,
57
- podspec.path
58
- )
59
- end
60
-
61
- def description
62
- 'Check plugin version in podspec file'
63
- end
64
- end
65
-
66
- # Check Flutter plugin's authors. Exists or not
67
- class PluginPodspecAuthorsCheck < PluginPodspecCheck
68
- def podspec_parameter
69
- 'authors'
70
- end
71
-
72
- def check(project)
73
- podspec = project.ios_folder.podspec
74
- author_exists = !podspec.authors.nil?
75
- CheckReport.new(
76
- name,
77
- author_exists ? CheckReportStatus::NORMAL : CheckReportStatus::ERROR,
78
- description,
79
- podspec.path
80
- )
81
- end
82
-
83
- def description
84
- "Check plugin's authors in podspec file"
85
- end
86
- end
87
-
88
- # Check plugin iOS source path in podspec file.
89
- # If Flutter plugin cannot contains iOS specific code, source path must be '.'
90
- class PluginPodspecSourceCheck < PluginPodspecCheck
91
- def podspec_parameter
92
- 'source'
93
- end
94
-
95
- def check(project)
96
- podspec = project.ios_folder.podspec
97
- CheckReport.new(
98
- name,
99
- podspec.source.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
100
- description,
101
- podspec.path
102
- )
103
- end
104
-
105
- def description
106
- 'Check plugin iOS source path in podspec file'
107
- end
108
- end
109
- end
1
+ require_relative 'check'
2
+ require_relative '../report/check_report'
3
+
4
+ module FlutterRb
5
+ # Base class for all info parameters in Flutter plugin podspec file
6
+ class PluginPodspecCheck < Check
7
+ def name
8
+ "PluginPodspec#{podspec_parameter.capitalize}Check"
9
+ end
10
+
11
+ def podspec_parameter
12
+ UNIMPLEMENTATION_ERROR
13
+ end
14
+
15
+ def summary
16
+ "Validate Flutter plugin's #{podspec_parameter} in podspec file"
17
+ end
18
+ end
19
+
20
+ # Check Flutter plugin name in podspec file. Exists or not
21
+ class PluginPodspecNameCheck < PluginPodspecCheck
22
+ def podspec_parameter
23
+ 'name'
24
+ end
25
+
26
+ def check(project)
27
+ name_in_pubspec = project.pubspec.pubspec_info.name
28
+ podspec = project.ios_folder.podspec
29
+ name_in_podspec = podspec.name
30
+ CheckReport.new(
31
+ name,
32
+ name_in_pubspec == name_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
33
+ description,
34
+ podspec.path
35
+ )
36
+ end
37
+
38
+ def description
39
+ 'Check plugin name in podspec file'
40
+ end
41
+ end
42
+
43
+ # Check Flutter plugin version in podspec file. Exists or not
44
+ class PluginPodspecVersionCheck < PluginPodspecCheck
45
+ def podspec_parameter
46
+ 'version'
47
+ end
48
+
49
+ def check(project)
50
+ version_in_pubspec = project.pubspec.pubspec_info.version
51
+ podspec = project.ios_folder.podspec
52
+ version_in_podspec = podspec.version
53
+ CheckReport.new(
54
+ name,
55
+ version_in_pubspec == version_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
56
+ description,
57
+ podspec.path
58
+ )
59
+ end
60
+
61
+ def description
62
+ 'Check plugin version in podspec file'
63
+ end
64
+ end
65
+
66
+ # Check Flutter plugin's authors. Exists or not
67
+ class PluginPodspecAuthorsCheck < PluginPodspecCheck
68
+ def podspec_parameter
69
+ 'authors'
70
+ end
71
+
72
+ def check(project)
73
+ podspec = project.ios_folder.podspec
74
+ author_exists = !podspec.authors.nil?
75
+ CheckReport.new(
76
+ name,
77
+ author_exists ? CheckReportStatus::NORMAL : CheckReportStatus::ERROR,
78
+ description,
79
+ podspec.path
80
+ )
81
+ end
82
+
83
+ def description
84
+ "Check plugin's authors in podspec file"
85
+ end
86
+ end
87
+
88
+ # Check plugin iOS source path in podspec file.
89
+ # If Flutter plugin cannot contains iOS specific code, source path must be '.'
90
+ class PluginPodspecSourceCheck < PluginPodspecCheck
91
+ def podspec_parameter
92
+ 'source'
93
+ end
94
+
95
+ def check(project)
96
+ podspec = project.ios_folder.podspec
97
+ CheckReport.new(
98
+ name,
99
+ podspec.source.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
100
+ description,
101
+ podspec.path
102
+ )
103
+ end
104
+
105
+ def description
106
+ 'Check plugin iOS source path in podspec file'
107
+ end
108
+ end
109
+ end
@@ -1,152 +1,152 @@
1
- require_relative 'check'
2
- require_relative '../report/check_report'
3
-
4
- module FlutterRb
5
- # Base class for all info parameters in Flutter plugin pubspec.yaml file
6
- class PluginPubspecCheck < Check
7
- def name
8
- "PluginPubspec#{pubspec_parameter.capitalize}Check"
9
- end
10
-
11
- def pubspec_parameter
12
- raise UNIMPLEMENTATION_ERROR
13
- end
14
-
15
- def summary
16
- "Validate Flutter plugin's #{pubspec_parameter} in pubspec.yaml"
17
- end
18
- end
19
-
20
- # Check Flutter plugin name in podspec file. Exists or not
21
- class PluginPubspecNameCheck < PluginPubspecCheck
22
- def pubspec_parameter
23
- 'name'
24
- end
25
-
26
- def check(project)
27
- pubspec = project.pubspec
28
- CheckReport.new(
29
- name,
30
- pubspec.pubspec_info.name.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
31
- description,
32
- pubspec.path
33
- )
34
- end
35
-
36
- def description
37
- 'Check plugin name in pubspec file'
38
- end
39
- end
40
-
41
- # Check Flutter plugin description in pubspec file. Exists or not
42
- class PluginPubspecDescriptionCheck < PluginPubspecCheck
43
- def pubspec_parameter
44
- 'description'
45
- end
46
-
47
- def check(project)
48
- pubspec = project.pubspec
49
- CheckReport.new(
50
- name,
51
- pubspec.pubspec_info.description.nil? ? CheckReportStatus::WARNING : CheckReportStatus::NORMAL,
52
- description,
53
- pubspec.path
54
- )
55
- end
56
-
57
- def description
58
- 'Check plugin description in pubspec file'
59
- end
60
- end
61
-
62
- # Check Flutter plugin version in pubspec file. Exists or not
63
- class PluginPubspecVersionCheck < PluginPubspecCheck
64
- def pubspec_parameter
65
- 'version'
66
- end
67
-
68
- def check(project)
69
- pubspec = project.pubspec
70
- CheckReport.new(
71
- name,
72
- pubspec.pubspec_info.version.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
73
- description,
74
- pubspec.path
75
- )
76
- end
77
-
78
- def description
79
- 'Check plugin version in pubspec'
80
- end
81
- end
82
-
83
- # Check Flutter plugin author in pubspec file. Exists or not
84
- class PluginPubspecAuthorCheck < PluginPubspecCheck
85
- def pubspec_parameter
86
- 'author'
87
- end
88
-
89
- def check(project)
90
- pubspec = project.pubspec
91
- CheckReport.new(
92
- name,
93
- pubspec.pubspec_info.author.nil? ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
94
- description,
95
- pubspec.path
96
- )
97
- end
98
-
99
- def description
100
- 'Check plugin author in pubspec'
101
- end
102
- end
103
-
104
- # Check Flutter plugin homepage in pubspec file. Exists or not
105
- class PluginPubspecHomepageCheck < PluginPubspecCheck
106
- def pubspec_parameter
107
- 'homepage'
108
- end
109
-
110
- def check(project)
111
- pubspec = project.pubspec
112
- CheckReport.new(
113
- name,
114
- pubspec.pubspec_info.homepage.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
115
- description,
116
- pubspec.path
117
- )
118
- end
119
-
120
- def description
121
- 'Check plugin homepage in pubspec'
122
- end
123
- end
124
-
125
- # Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not
126
- class PluginPubspecEffectiveDartCheck < Check
127
- def name
128
- 'PluginPubspecEffectiveDartCheck'
129
- end
130
-
131
- def summary
132
- 'Validate Flutter plugin\'s Effective Dart rules implementation in pubspec.yaml'
133
- end
134
-
135
- def check(project)
136
- pubspec = project.pubspec
137
- effective_dart = pubspec.dev_dependencies&.detect do |dev_dependency|
138
- dev_dependency.name == 'effective_dart'
139
- end
140
- CheckReport.new(
141
- name,
142
- effective_dart.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
143
- description,
144
- pubspec.path
145
- )
146
- end
147
-
148
- def description
149
- 'Check Flutter plugin Effective Dart depencency in pubspec file'
150
- end
151
- end
152
- end
1
+ require_relative 'check'
2
+ require_relative '../report/check_report'
3
+
4
+ module FlutterRb
5
+ # Base class for all info parameters in Flutter plugin pubspec.yaml file
6
+ class PluginPubspecCheck < Check
7
+ def name
8
+ "PluginPubspec#{pubspec_parameter.capitalize}Check"
9
+ end
10
+
11
+ def pubspec_parameter
12
+ raise UNIMPLEMENTATION_ERROR
13
+ end
14
+
15
+ def summary
16
+ "Validate Flutter plugin's #{pubspec_parameter} in pubspec.yaml"
17
+ end
18
+ end
19
+
20
+ # Check Flutter plugin name in podspec file. Exists or not
21
+ class PluginPubspecNameCheck < PluginPubspecCheck
22
+ def pubspec_parameter
23
+ 'name'
24
+ end
25
+
26
+ def check(project)
27
+ pubspec = project.pubspec
28
+ CheckReport.new(
29
+ name,
30
+ pubspec.pubspec_info.name.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
31
+ description,
32
+ pubspec.path
33
+ )
34
+ end
35
+
36
+ def description
37
+ 'Check plugin name in pubspec file'
38
+ end
39
+ end
40
+
41
+ # Check Flutter plugin description in pubspec file. Exists or not
42
+ class PluginPubspecDescriptionCheck < PluginPubspecCheck
43
+ def pubspec_parameter
44
+ 'description'
45
+ end
46
+
47
+ def check(project)
48
+ pubspec = project.pubspec
49
+ CheckReport.new(
50
+ name,
51
+ pubspec.pubspec_info.description.nil? ? CheckReportStatus::WARNING : CheckReportStatus::NORMAL,
52
+ description,
53
+ pubspec.path
54
+ )
55
+ end
56
+
57
+ def description
58
+ 'Check plugin description in pubspec file'
59
+ end
60
+ end
61
+
62
+ # Check Flutter plugin version in pubspec file. Exists or not
63
+ class PluginPubspecVersionCheck < PluginPubspecCheck
64
+ def pubspec_parameter
65
+ 'version'
66
+ end
67
+
68
+ def check(project)
69
+ pubspec = project.pubspec
70
+ CheckReport.new(
71
+ name,
72
+ pubspec.pubspec_info.version.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
73
+ description,
74
+ pubspec.path
75
+ )
76
+ end
77
+
78
+ def description
79
+ 'Check plugin version in pubspec'
80
+ end
81
+ end
82
+
83
+ # Check Flutter plugin author in pubspec file. Exists or not
84
+ class PluginPubspecAuthorCheck < PluginPubspecCheck
85
+ def pubspec_parameter
86
+ 'author'
87
+ end
88
+
89
+ def check(project)
90
+ pubspec = project.pubspec
91
+ CheckReport.new(
92
+ name,
93
+ pubspec.pubspec_info.author.nil? ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
94
+ description,
95
+ pubspec.path
96
+ )
97
+ end
98
+
99
+ def description
100
+ 'Check plugin author in pubspec'
101
+ end
102
+ end
103
+
104
+ # Check Flutter plugin homepage in pubspec file. Exists or not
105
+ class PluginPubspecHomepageCheck < PluginPubspecCheck
106
+ def pubspec_parameter
107
+ 'homepage'
108
+ end
109
+
110
+ def check(project)
111
+ pubspec = project.pubspec
112
+ CheckReport.new(
113
+ name,
114
+ pubspec.pubspec_info.homepage.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
115
+ description,
116
+ pubspec.path
117
+ )
118
+ end
119
+
120
+ def description
121
+ 'Check plugin homepage in pubspec'
122
+ end
123
+ end
124
+
125
+ # Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not
126
+ class PluginPubspecEffectiveDartCheck < Check
127
+ def name
128
+ 'PluginPubspecEffectiveDartCheck'
129
+ end
130
+
131
+ def summary
132
+ 'Validate Flutter plugin\'s Effective Dart rules implementation in pubspec.yaml'
133
+ end
134
+
135
+ def check(project)
136
+ pubspec = project.pubspec
137
+ effective_dart = pubspec.dev_dependencies&.detect do |dev_dependency|
138
+ dev_dependency.name == 'effective_dart'
139
+ end
140
+ CheckReport.new(
141
+ name,
142
+ effective_dart.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
143
+ description,
144
+ pubspec.path
145
+ )
146
+ end
147
+
148
+ def description
149
+ 'Check Flutter plugin Effective Dart depencency in pubspec file'
150
+ end
151
+ end
152
+ end
@@ -1,16 +1,16 @@
1
- module FlutterRb
2
- # FlutterRb configuration representation from config in Flutter plugin
3
- class FlutterRbConfig
4
- def initialize(
5
- flutter_checks,
6
- android_checks,
7
- ios_checks
8
- )
9
- @flutter_checks = flutter_checks
10
- @android_checks = android_checks
11
- @ios_checks = ios_checks
12
- end
13
-
14
- attr_accessor :flutter_checks, :android_checks, :ios_checks
15
- end
16
- end
1
+ module FlutterRb
2
+ # FlutterRb configuration representation from config in Flutter plugin
3
+ class FlutterRbConfig
4
+ def initialize(
5
+ flutter_checks,
6
+ android_checks,
7
+ ios_checks
8
+ )
9
+ @flutter_checks = flutter_checks
10
+ @android_checks = android_checks
11
+ @ios_checks = ios_checks
12
+ end
13
+
14
+ attr_accessor :flutter_checks, :android_checks, :ios_checks
15
+ end
16
+ end