flutter_rb 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8564b7cdf9819a28ea1ca5c145f9dcb813556575998924fb9b6cc8db5224ca77
4
- data.tar.gz: 51b4cc3dd7dbf3b0d0e7a653f29defc47293b685c3de05f6e5a99ce846df9e41
3
+ metadata.gz: 8fd9ab4300d4125491e760985c8d40ffc3fa5f96991591e175f944841982328f
4
+ data.tar.gz: b1458595c0f9f9ffdd6f288acb6ef38a2e008a6d692bdacfc1c91afb9512c193
5
5
  SHA512:
6
- metadata.gz: 7b595e1256a18e7f74d5d273054f7608dae0c3674bd0467db4108fb4ef7c8936248cd3daf610ac5e11242fe169d97085bd008fee98bb5dca2a2461a72a7f01cc
7
- data.tar.gz: 7b12583d8fad4af058cde7c45e560141a9f74db75fe215f70b57ebe3a0584a7979471a7b68680f7ded6ebdd469cbf4421cfb4822e8d9af29d18fe08f2638fef1
6
+ metadata.gz: 44ee511a8e2f5537d14eaa0097fcb0ba22e61fdfcb9b9300814b5b793cc23617a7017dd413384069f95cbd7f6ebd7a1cf3330a0011aa942318bc4224bdc5b2db
7
+ data.tar.gz: 42eb043999a521b44ec7a9950e6cb9e1fc8fb8fecf2f8d59cc0b9c6e0c369a69d43a071be6970bcac8780e3caa734f7c2ea9468b098e40d52daed92b6be43d29
data/README.md CHANGED
@@ -5,6 +5,7 @@
5
5
  [![GitHubActions](https://github.com/flutter-rb/flutter-rb/workflows/Build/badge.svg)](https://github.com/flutter-rb/flutter-rb/actions?branch=master)
6
6
  [![Codebeat](https://codebeat.co/badges/9bb32e28-ca86-4cdc-ba66-bda7f989979a)](https://codebeat.co/projects/github-com-flutter-rb-flutter-rb-master)
7
7
  [![Gem Version](https://badge.fury.io/rb/flutter_rb.svg)](https://badge.fury.io/rb/flutter_rb)
8
+ [![Gem Downloads](https://img.shields.io/gem/dt/flutter_rb)](https://badge.fury.io/rb/flutter_rb)
8
9
 
9
10
  ## About
10
11
 
@@ -54,7 +55,8 @@ Each issue has a `level` parameter that describes its significant importance.
54
55
 
55
56
  ### Android
56
57
 
57
- You should add [flutter-rb-gradle-plugin](https://github.com/flutter-rb/flutter-rb-gradle-plugin) to Android side of your plugin.
58
+ You should add [flutter-rb-gradle-plugin](https://github.com/flutter-rb/flutter-rb-gradle-plugin) to Android side of
59
+ your plugin.
58
60
 
59
61
  ### Download gem from RubyGems
60
62
 
@@ -85,7 +87,8 @@ $ frb
85
87
 
86
88
  ### As local executable
87
89
 
88
- Add `project_folder/bin` (where `project_folder` is path to project on your machine) to `PATH` variable in your environment. Then updated environment and run from a Flutter plugin's project folder:
90
+ Add `project_folder/bin` (where `project_folder` is path to project on your machine) to `PATH` variable in your
91
+ environment. Then updated environment and run from a Flutter plugin's project folder:
89
92
 
90
93
  ```shell
91
94
  $ local_frb
@@ -98,7 +101,6 @@ $ local_frb
98
101
  | `--help` | Print help info |
99
102
  | `--checkstyle-report` | Generate report in Checkstyle format |
100
103
 
101
-
102
104
  ### Configuration
103
105
 
104
106
  Add `.flutter_rb.yaml` to root of a project for select checks that you are want to execute:
@@ -120,11 +122,13 @@ include:
120
122
 
121
123
  ### Output report
122
124
 
123
- Tool can make report in Checkstyle format. To enable this feature, pass `--checkstyle-report` as an CLI argument. The report file name is `frb-checkstyle-report.xml`.
125
+ Tool can make report in Checkstyle format. To enable this feature, pass `--checkstyle-report` as an CLI argument. The
126
+ report file name is `frb-checkstyle-report.xml`.
124
127
 
125
128
  ## How to contribute
126
129
 
127
- Read [Commit Convention](./COMMIT_CONVENTION.md). Make sure your build is green before you contribute your pull request. Then:
130
+ Read [Commit Convention](./COMMIT_CONVENTION.md). Make sure your build is green before you contribute your pull request.
131
+ Then:
128
132
 
129
133
  ```shell
130
134
  $ bundle exec rake
@@ -4,12 +4,17 @@ require 'nokogiri'
4
4
  module CheckstyleReport
5
5
  # Class for create report in Checkstyle format
6
6
  class CheckstyleReport
7
+ # @param {String} path
8
+ # @param {String} report_filename
9
+ # @param {CheckstyleError[]}
7
10
  def initialize(path, report_filename, checks)
8
11
  @path = path
9
12
  @report_filename = report_filename
10
13
  @checks = checks
11
14
  end
12
15
 
16
+ # rubocop:disable Metrics/MethodLength
17
+ # noinspection RubyResolve
13
18
  def create_report
14
19
  checkstyle_files = sort_checks(@checks)
15
20
  report = Nokogiri::XML::Builder.new do |xml|
@@ -19,9 +24,15 @@ module CheckstyleReport
19
24
  .each { |file| write_file(xml, file) }
20
25
  end
21
26
  end
22
- File.open("#{@path}/#{@report_filename}.xml", 'w') { |file| file.write(report.to_xml) }
27
+ File.open("#{@path}/#{@report_filename}.xml", 'w') do |file|
28
+ file.write(report.to_xml)
29
+ end
23
30
  end
24
31
 
32
+ # rubocop:enable Metrics/MethodLength
33
+
34
+ # @param {CheckstyleError} checks
35
+ # @return {CheckstyleFile[]}
25
36
  def sort_checks(checks)
26
37
  checkstyle_files = {}
27
38
  checks.each do |check|
@@ -32,6 +43,8 @@ module CheckstyleReport
32
43
  checkstyle_files
33
44
  end
34
45
 
46
+ # @param {XML} xml
47
+ # @param {CheckstyleFile} checkstyle_file
35
48
  def write_file(xml, checkstyle_file)
36
49
  xml.file(name: checkstyle_file.file) do
37
50
  checkstyle_file.errors.each do |error|
@@ -40,6 +53,8 @@ module CheckstyleReport
40
53
  end
41
54
  end
42
55
 
56
+ # @param {XML} xml
57
+ # @param {CheckstyleError} error
43
58
  def write_error(xml, error)
44
59
  xml.error(
45
60
  line: error.line,
@@ -53,6 +68,8 @@ module CheckstyleReport
53
68
 
54
69
  # File representation for Checkstyle format
55
70
  class CheckstyleFile
71
+ # @param {String} file
72
+ # @param {CheckstyleError[]} errors
56
73
  def initialize(file, errors)
57
74
  @file = file
58
75
  @errors = errors
@@ -68,6 +85,12 @@ module CheckstyleReport
68
85
  SEVERITY_ERROR = 'error'.freeze
69
86
 
70
87
  # rubocop:disable Metrics/ParameterLists
88
+ # @param {String} severity
89
+ # @param {String} message
90
+ # @param {String} source
91
+ # @param {Integer} line
92
+ # @param {Integer} column
93
+ # @param {String} name
71
94
  def initialize(
72
95
  severity,
73
96
  message,
@@ -83,6 +106,7 @@ module CheckstyleReport
83
106
  @column = column
84
107
  @name = name
85
108
  end
109
+
86
110
  # rubocop:enable Metrics/ParameterLists
87
111
 
88
112
  attr_reader :severity, :message, :source, :line, :column, :name
@@ -5,20 +5,28 @@ module FlutterRb
5
5
  class Check
6
6
  UNIMPLEMENTED_ERROR = 'Error: missing method'.freeze
7
7
 
8
+ # @return {String}
8
9
  def name
9
10
  raise UNIMPLEMENTED_ERROR
10
11
  end
11
12
 
13
+ # @return {String}
12
14
  def summary
13
15
  raise UNIMPLEMENTED_ERROR
14
16
  end
15
17
 
18
+ # @return {String}
16
19
  def description
17
20
  'No provided'
18
21
  end
19
22
 
20
- def check
23
+ # rubocop:disable Lint/UnusedMethodArgument
24
+ # @param {Project} project
25
+ # @return {CheckReport}
26
+ def check(project)
21
27
  raise UNIMPLEMENTED_ERROR
22
28
  end
29
+
30
+ # rubocop:enable Lint/UnusedMethodArgument
23
31
  end
24
32
  end
@@ -6,18 +6,23 @@ module FlutterRb
6
6
  # Example: if a Flutter plugin has only Android specific code
7
7
  # but not contains iOS folder with description, then iOS build fails
8
8
  class PluginDirectoriesCheck < Check
9
+ # @return {String}
9
10
  def name
10
11
  'PluginDirectoriesCheck'
11
12
  end
12
13
 
14
+ # @return {String}
13
15
  def summary
14
16
  'Validate Flutter plugin structure'
15
17
  end
16
18
 
19
+ # @return {String}
17
20
  def description
18
21
  'Check plugin directories structure in pubspec file'
19
22
  end
20
23
 
24
+ # @param {Project} project
25
+ # @return {CheckReport}
21
26
  def check(project)
22
27
  android_exists = !project.android_folder.nil?
23
28
  ios_exists = !project.ios_folder.nil?
@@ -4,18 +4,23 @@ require_relative '../report/check_report'
4
4
  module FlutterRb
5
5
  # Check 'android; import not exists in Gradle project config (build.gradle file)
6
6
  class PluginGradleAndroidPackageCheck < Check
7
+ # @return {String}
7
8
  def name
8
9
  'PluginGradleAndroidPackageCheck'
9
10
  end
10
11
 
12
+ # @return {String}
11
13
  def summary
12
14
  'Validate that \android\ package not exists in build.gradle config'
13
15
  end
14
16
 
17
+ # @return {String}
15
18
  def description
16
19
  'Validate that \android\ package not exists in Gradle project config (build.gradle file)'
17
20
  end
18
21
 
22
+ # @param {Project} project
23
+ # @return {CheckReport}
19
24
  def check(project)
20
25
  gradle = project.android_folder.gradle
21
26
  import_exist = File.readlines("#{gradle.path}/build.gradle").grep(/package android/).size.positive?
@@ -30,18 +35,23 @@ module FlutterRb
30
35
 
31
36
  # Check Flutter plugin version in Gradle project config (build.gradle file)
32
37
  class PluginGradleVersionCheck < Check
38
+ # @return {String}
33
39
  def name
34
40
  'PluginGradleVersionCheck'
35
41
  end
36
42
 
43
+ # @return {String}
37
44
  def summary
38
45
  'Validate Flutter plugin\s version in build.gradle file'
39
46
  end
40
47
 
48
+ # @return {String}
41
49
  def description
42
50
  'Check plugin version in Gradle project config (build.gradle file)'
43
51
  end
44
52
 
53
+ # @param {Project} project
54
+ # @return {CheckReport}
45
55
  def check(project)
46
56
  version_in_pubspec = project.pubspec.pubspec_info.version
47
57
  gradle = project.android_folder.gradle
@@ -4,14 +4,17 @@ require_relative '../report/check_report'
4
4
  module FlutterRb
5
5
  # Base class for all info parameters in Flutter plugin podspec file
6
6
  class PluginPodspecCheck < Check
7
+ # @return {String}
7
8
  def name
8
9
  "PluginPodspec#{podspec_parameter.capitalize}Check"
9
10
  end
10
11
 
12
+ # @return {String}
11
13
  def podspec_parameter
12
14
  UNIMPLEMENTED_ERROR
13
15
  end
14
16
 
17
+ # @return {String}
15
18
  def summary
16
19
  "Validate Flutter plugin's #{podspec_parameter} in podspec file"
17
20
  end
@@ -19,10 +22,18 @@ module FlutterRb
19
22
 
20
23
  # Check Flutter plugin name in podspec file. Exists or not
21
24
  class PluginPodspecNameCheck < PluginPodspecCheck
25
+ # @return {String}
22
26
  def podspec_parameter
23
27
  'name'
24
28
  end
25
29
 
30
+ # @return {String}
31
+ def description
32
+ 'Check plugin name in podspec file'
33
+ end
34
+
35
+ # @param {Project} project
36
+ # @return {CheckReport}
26
37
  def check(project)
27
38
  name_in_pubspec = project.pubspec.pubspec_info.name
28
39
  podspec = project.ios_folder.podspec
@@ -34,18 +45,22 @@ module FlutterRb
34
45
  podspec.path
35
46
  )
36
47
  end
37
-
38
- def description
39
- 'Check plugin name in podspec file'
40
- end
41
48
  end
42
49
 
43
50
  # Check Flutter plugin version in podspec file. Exists or not
44
51
  class PluginPodspecVersionCheck < PluginPodspecCheck
52
+ # @return {String}
45
53
  def podspec_parameter
46
54
  'version'
47
55
  end
48
56
 
57
+ # @return {String}
58
+ def description
59
+ 'Check plugin version in podspec file'
60
+ end
61
+
62
+ # @param {Project} project
63
+ # @return {CheckReport}
49
64
  def check(project)
50
65
  version_in_pubspec = project.pubspec.pubspec_info.version
51
66
  podspec = project.ios_folder.podspec
@@ -57,18 +72,22 @@ module FlutterRb
57
72
  podspec.path
58
73
  )
59
74
  end
60
-
61
- def description
62
- 'Check plugin version in podspec file'
63
- end
64
75
  end
65
76
 
66
77
  # Check Flutter plugin's authors. Exists or not
67
78
  class PluginPodspecAuthorsCheck < PluginPodspecCheck
79
+ # @return {String}
68
80
  def podspec_parameter
69
81
  'authors'
70
82
  end
71
83
 
84
+ # @return {String}
85
+ def description
86
+ "Check plugin's authors in podspec file"
87
+ end
88
+
89
+ # @param {Project} project
90
+ # @return {CheckReport}
72
91
  def check(project)
73
92
  podspec = project.ios_folder.podspec
74
93
  author_exists = !podspec.authors.nil?
@@ -79,19 +98,23 @@ module FlutterRb
79
98
  podspec.path
80
99
  )
81
100
  end
82
-
83
- def description
84
- "Check plugin's authors in podspec file"
85
- end
86
101
  end
87
102
 
88
103
  # Check plugin iOS source path in podspec file.
89
104
  # If Flutter plugin cannot contains iOS specific code, source path must be '.'
90
105
  class PluginPodspecSourceCheck < PluginPodspecCheck
106
+ # @return {String}
91
107
  def podspec_parameter
92
108
  'source'
93
109
  end
94
110
 
111
+ # @return {String}
112
+ def description
113
+ 'Check plugin iOS source path in podspec file'
114
+ end
115
+
116
+ # @param {Project} project
117
+ # @return {CheckReport}
95
118
  def check(project)
96
119
  podspec = project.ios_folder.podspec
97
120
  CheckReport.new(
@@ -101,9 +124,5 @@ module FlutterRb
101
124
  podspec.path
102
125
  )
103
126
  end
104
-
105
- def description
106
- 'Check plugin iOS source path in podspec file'
107
- end
108
127
  end
109
128
  end
@@ -4,14 +4,17 @@ require_relative '../report/check_report'
4
4
  module FlutterRb
5
5
  # Base class for all info parameters in Flutter plugin pubspec.yaml file
6
6
  class PluginPubspecCheck < Check
7
+ # @return {String}
7
8
  def name
8
9
  "PluginPubspec#{pubspec_parameter.capitalize}Check"
9
10
  end
10
11
 
12
+ # @return {String}
11
13
  def pubspec_parameter
12
14
  raise UNIMPLEMENTED_ERROR
13
15
  end
14
16
 
17
+ # @return {String}
15
18
  def summary
16
19
  "Validate Flutter plugin's #{pubspec_parameter} in pubspec.yaml"
17
20
  end
@@ -19,10 +22,18 @@ module FlutterRb
19
22
 
20
23
  # Check Flutter plugin name in podspec file. Exists or not
21
24
  class PluginPubspecNameCheck < PluginPubspecCheck
25
+ # @return {String}
22
26
  def pubspec_parameter
23
27
  'name'
24
28
  end
25
29
 
30
+ # @return {String}
31
+ def description
32
+ 'Check plugin name in pubspec file'
33
+ end
34
+
35
+ # @param {Project} project
36
+ # @return {CheckReport}
26
37
  def check(project)
27
38
  pubspec = project.pubspec
28
39
  CheckReport.new(
@@ -32,18 +43,22 @@ module FlutterRb
32
43
  pubspec.path
33
44
  )
34
45
  end
35
-
36
- def description
37
- 'Check plugin name in pubspec file'
38
- end
39
46
  end
40
47
 
41
48
  # Check Flutter plugin description in pubspec file. Exists or not
42
49
  class PluginPubspecDescriptionCheck < PluginPubspecCheck
50
+ # @return {String}
43
51
  def pubspec_parameter
44
52
  'description'
45
53
  end
46
54
 
55
+ # @return {String}
56
+ def description
57
+ 'Check plugin description in pubspec file'
58
+ end
59
+
60
+ # @param {Project} project
61
+ # @return {CheckReport}
47
62
  def check(project)
48
63
  pubspec = project.pubspec
49
64
  CheckReport.new(
@@ -53,18 +68,22 @@ module FlutterRb
53
68
  pubspec.path
54
69
  )
55
70
  end
56
-
57
- def description
58
- 'Check plugin description in pubspec file'
59
- end
60
71
  end
61
72
 
62
73
  # Check Flutter plugin version in pubspec file. Exists or not
63
74
  class PluginPubspecVersionCheck < PluginPubspecCheck
75
+ # @return {String}
64
76
  def pubspec_parameter
65
77
  'version'
66
78
  end
67
79
 
80
+ # @return {String}
81
+ def description
82
+ 'Check plugin version in pubspec'
83
+ end
84
+
85
+ # @param {Project} project
86
+ # @return {CheckReport}
68
87
  def check(project)
69
88
  pubspec = project.pubspec
70
89
  CheckReport.new(
@@ -74,18 +93,22 @@ module FlutterRb
74
93
  pubspec.path
75
94
  )
76
95
  end
77
-
78
- def description
79
- 'Check plugin version in pubspec'
80
- end
81
96
  end
82
97
 
83
98
  # Check Flutter plugin author in pubspec file. Exists or not
84
99
  class PluginPubspecAuthorCheck < PluginPubspecCheck
100
+ # @return {String}
85
101
  def pubspec_parameter
86
102
  'author'
87
103
  end
88
104
 
105
+ # @return {String}
106
+ def description
107
+ 'Check plugin author in pubspec'
108
+ end
109
+
110
+ # @param {Project} project
111
+ # @return {CheckReport}
89
112
  def check(project)
90
113
  pubspec = project.pubspec
91
114
  CheckReport.new(
@@ -95,18 +118,22 @@ module FlutterRb
95
118
  pubspec.path
96
119
  )
97
120
  end
98
-
99
- def description
100
- 'Check plugin author in pubspec'
101
- end
102
121
  end
103
122
 
104
123
  # Check Flutter plugin homepage in pubspec file. Exists or not
105
124
  class PluginPubspecHomepageCheck < PluginPubspecCheck
125
+ # @return {String}
106
126
  def pubspec_parameter
107
127
  'homepage'
108
128
  end
109
129
 
130
+ # @return {String}
131
+ def description
132
+ 'Check plugin homepage in pubspec'
133
+ end
134
+
135
+ # @param {Project} project
136
+ # @return {CheckReport}
110
137
  def check(project)
111
138
  pubspec = project.pubspec
112
139
  CheckReport.new(
@@ -116,22 +143,28 @@ module FlutterRb
116
143
  pubspec.path
117
144
  )
118
145
  end
119
-
120
- def description
121
- 'Check plugin homepage in pubspec'
122
- end
123
146
  end
124
147
 
125
- # Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not
148
+ # Check Flutter plugin Effective Dart dependency in pubspec file. Exists or not
149
+ # noinspection RubyClassModuleNamingConvention
126
150
  class PluginPubspecEffectiveDartCheck < Check
151
+ # @return {String}
127
152
  def name
128
153
  'PluginPubspecEffectiveDartCheck'
129
154
  end
130
155
 
156
+ # @return {String}
131
157
  def summary
132
158
  'Validate Flutter plugin\'s Effective Dart rules implementation in pubspec.yaml'
133
159
  end
134
160
 
161
+ # @return {String}
162
+ def description
163
+ 'Check Flutter plugin Effective Dart depencency in pubspec file'
164
+ end
165
+
166
+ # @param {Project} project
167
+ # @return {CheckReport}
135
168
  def check(project)
136
169
  pubspec = project.pubspec
137
170
  effective_dart = pubspec.dev_dependencies&.detect do |dev_dependency|
@@ -144,9 +177,5 @@ module FlutterRb
144
177
  pubspec.path
145
178
  )
146
179
  end
147
-
148
- def description
149
- 'Check Flutter plugin Effective Dart depencency in pubspec file'
150
- end
151
180
  end
152
181
  end
@@ -1,11 +1,10 @@
1
1
  module FlutterRb
2
2
  # FlutterRb configuration representation from config in Flutter plugin
3
3
  class FlutterRbConfig
4
- def initialize(
5
- flutter_checks,
6
- android_checks,
7
- ios_checks
8
- )
4
+ # @param {Check[]} flutter_checks
5
+ # @param {Check[]} android_checks
6
+ # @param {Check[]} ios_checks
7
+ def initialize(flutter_checks, android_checks, ios_checks)
9
8
  @flutter_checks = flutter_checks
10
9
  @android_checks = android_checks
11
10
  @ios_checks = ios_checks
@@ -28,23 +28,38 @@ module FlutterRb
28
28
  PluginPodspecSourceCheck.new
29
29
  ].freeze
30
30
 
31
- # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
31
+ # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
32
+ # @param {String} path
32
33
  def parse(path)
33
34
  config = YAML.load_file(path)['include']
34
35
  flutter_checks = []
35
- flutter_checks += config['flutter'].map { |check| Object.const_get("FlutterRb::#{check}").new } unless config['flutter'].nil?
36
+ unless config['flutter'].nil?
37
+ flutter_checks += config['flutter'].map do |check|
38
+ Object.const_get("FlutterRb::#{check}").new
39
+ end
40
+ end
36
41
  android_checks = []
37
- android_checks += config['android'].map { |check| Object.const_get("FlutterRb::#{check}").new } unless config['android'].nil?
42
+ unless config['android'].nil?
43
+ android_checks += config['android'].map do |check|
44
+ Object.const_get("FlutterRb::#{check}").new
45
+ end
46
+ end
38
47
  ios_checks = []
39
- ios_checks += config['ios'].map { |check| Object.const_get("FlutterRb::#{check}").new } unless config['ios'].nil?
48
+ unless config['ios'].nil?
49
+ ios_checks += config['ios'].map do |check|
50
+ Object.const_get("FlutterRb::#{check}").new
51
+ end
52
+ end
40
53
  FlutterRbConfig.new(
41
54
  flutter_checks.empty? ? FLUTTER_CHECKS : flutter_checks,
42
55
  android_checks.empty? ? ANDROID_CHECKS : android_checks,
43
56
  ios_checks.empty? ? IOS_CHECKS : ios_checks
44
57
  )
45
58
  end
46
- # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Layout/LineLength
47
59
 
60
+ # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
61
+
62
+ # @return {FlutterRbConfig}
48
63
  def default
49
64
  FlutterRbConfig.new(
50
65
  FLUTTER_CHECKS,
@@ -10,6 +10,10 @@ require 'yaml'
10
10
  module FlutterRb
11
11
  # Project representation
12
12
  class Project
13
+ # @param {String} path
14
+ # @param {Pubspec} pubspec
15
+ # @param {AndroidFolder} android_folder
16
+ # @param {IOSFolder} ios_folder
13
17
  def initialize(
14
18
  path,
15
19
  pubspec,
@@ -27,16 +31,19 @@ module FlutterRb
27
31
 
28
32
  # Flutter plugin project parser
29
33
  class ProjectParser
34
+ # @param {String} path
30
35
  def initialize(path)
31
36
  @path = path
32
37
  end
33
38
 
39
+ # @return {Project}
34
40
  def project
35
41
  File.exist?("#{@path}/pubspec.yaml") ? parse_project : nil
36
42
  end
37
43
 
38
44
  private
39
45
 
46
+ # @return {Project}
40
47
  def parse_project
41
48
  pubspec_path = "#{@path}/pubspec.yaml"
42
49
  android_path = "#{@path}/android"
@@ -3,6 +3,7 @@ require_relative './gradle'
3
3
  module FlutterRb
4
4
  # Android project representation
5
5
  class AndroidFolder
6
+ # @param {String} path
6
7
  def initialize(path)
7
8
  @path = path
8
9
  @gradle = GradleParser.new(@path).parse
@@ -3,6 +3,8 @@ require 'json'
3
3
  module FlutterRb
4
4
  # Gradle representation
5
5
  class Gradle
6
+ # @param {String} path
7
+ # @param {String} version
6
8
  def initialize(path, version)
7
9
  @path = path
8
10
  @version = version
@@ -13,10 +15,12 @@ module FlutterRb
13
15
 
14
16
  # Gradle parser
15
17
  class GradleParser
18
+ # @param {String} path
16
19
  def initialize(path)
17
20
  @path = path
18
21
  end
19
22
 
23
+ # @return {Gradle}
20
24
  def parse
21
25
  `gradle -p #{@path} -q prepareInfo`
22
26
  info_file = File.read "#{@path}/flutter_rb_gradle_plugin_output.json"
@@ -1,6 +1,8 @@
1
1
  module FlutterRb
2
2
  # Dev dependency, contains name and version
3
3
  class DevDependency
4
+ # @param {String} name
5
+ # @param {String} version
4
6
  def initialize(name, version)
5
7
  @name = name
6
8
  @version = version
@@ -1,6 +1,9 @@
1
1
  module FlutterRb
2
2
  # Flutter plugin, contains platform, package and plugin class
3
3
  class PlatformPlugin
4
+ # @param {String} platform
5
+ # @param {String} package
6
+ # @param {String} plugin_class
4
7
  def initialize(platform, package, plugin_class)
5
8
  @platform = platform
6
9
  @package = package
@@ -5,6 +5,10 @@ require_relative './platform_plugin'
5
5
  module FlutterRb
6
6
  # pubspec.yaml representation
7
7
  class Pubspec
8
+ # @param {String} path
9
+ # @param {PubspecInfo} pubspec_info
10
+ # @param {DevDependency[]} dev_dependencies
11
+ # @param {PlatformPlugin[]} platform_plugins
8
12
  def initialize(
9
13
  path,
10
14
  pubspec_info,
@@ -22,11 +26,14 @@ module FlutterRb
22
26
 
23
27
  # pubspec.yaml parser
24
28
  class PubspecParser
29
+ # @param {String} path
30
+ # @param {Pubspec} pubspec
25
31
  def initialize(path, pubspec)
26
32
  @path = path
27
33
  @pubspec = pubspec
28
34
  end
29
35
 
36
+ # @return {Pubspec}
30
37
  def parse
31
38
  Pubspec.new(
32
39
  @path,
@@ -36,6 +43,8 @@ module FlutterRb
36
43
  )
37
44
  end
38
45
 
46
+ # @param {Pubspec}
47
+ # @return {PubspecInfo}
39
48
  def pubspec_info(pubspec)
40
49
  PubspecInfo.new(
41
50
  pubspec['name'],
@@ -46,6 +55,8 @@ module FlutterRb
46
55
  )
47
56
  end
48
57
 
58
+ # @param {Pubspec} pubspec
59
+ # @return {DevDependency[]}
49
60
  def dev_dependencies(pubspec)
50
61
  pubspec['dev_dependencies']&.map do |dev_dependency|
51
62
  DevDependency.new(
@@ -55,6 +66,8 @@ module FlutterRb
55
66
  end
56
67
  end
57
68
 
69
+ # @param {Pubspec} pubspec
70
+ # @return {PlatformPlugin[]}
58
71
  def platform_plugins(pubspec)
59
72
  pubspec.dig('flutter', 'plugin', 'platforms')&.map do |platform_plugin|
60
73
  plugin_info = platform_plugin.last
@@ -1,6 +1,11 @@
1
1
  module FlutterRb
2
2
  # Flutter plugin info from pubspec.yaml
3
3
  class PubspecInfo
4
+ # @param {String} name
5
+ # @param {String} description
6
+ # @param {String} version
7
+ # @param {String} author
8
+ # @param {String} homepage
4
9
  def initialize(
5
10
  name,
6
11
  description,
@@ -3,6 +3,8 @@ require_relative './podspec'
3
3
  module FlutterRb
4
4
  # iOS representation
5
5
  class IOSFolder
6
+ # @param {String} path
7
+ # @param {Pubspec} pubspec
6
8
  def initialize(path, pubspec)
7
9
  @path = path
8
10
  podspec_path = "#{path}/#{pubspec.pubspec_info.name}.podspec"
@@ -3,6 +3,11 @@ require 'cocoapods'
3
3
  module FlutterRb
4
4
  # Podspec representation
5
5
  class Podspec
6
+ # @param {String} path
7
+ # @param {String} name
8
+ # @param {String} version
9
+ # @param {String[]} authors
10
+ # @param {String} source
6
11
  def initialize(
7
12
  path,
8
13
  name,
@@ -22,10 +27,12 @@ module FlutterRb
22
27
 
23
28
  # Podspec parser
24
29
  class PodspecParser
30
+ # @param {String} path
25
31
  def initialize(path)
26
32
  @path = path
27
33
  end
28
34
 
35
+ # @return {Podspec}
29
36
  def parse
30
37
  podspec = Pod::Specification.from_file(@path)
31
38
  @podspec = Podspec.new(
@@ -3,6 +3,10 @@ require 'colorize'
3
3
  module FlutterRb
4
4
  # Check report
5
5
  class CheckReport
6
+ # @param {String} check_name
7
+ # @param {CheckReportStatus} check_report_status
8
+ # @param {String} message
9
+ # @param {String} path
6
10
  def initialize(
7
11
  check_name,
8
12
  check_report_status,
@@ -15,6 +19,8 @@ module FlutterRb
15
19
  @path = path
16
20
  end
17
21
 
22
+ # @param {Bool} colorize
23
+ # @return {String}
18
24
  def print(colorize: true)
19
25
  if colorize
20
26
  status_color = color_for_report_status(@check_report_status)
@@ -24,6 +30,8 @@ module FlutterRb
24
30
  end
25
31
  end
26
32
 
33
+ # @param {CheckReportStatus} check_report_status
34
+ # @return {Presenter}
27
35
  def color_for_report_status(check_report_status)
28
36
  case check_report_status
29
37
  when CheckReportStatus::NORMAL
@@ -32,6 +40,8 @@ module FlutterRb
32
40
  :yellow
33
41
  when CheckReportStatus::ERROR
34
42
  :red
43
+ else
44
+ :blue
35
45
  end
36
46
  end
37
47
 
data/lib/flutter_rb.rb CHANGED
@@ -9,6 +9,8 @@ require_relative './checkstyle_report/checkstyle_report'
9
9
 
10
10
  module FlutterRb
11
11
  # Start FlutterRb checks
12
+ # @param {String} path
13
+ # @param {Bool} with_report
12
14
  class FlutterRb
13
15
  def start(path, with_report)
14
16
  project = ProjectParser.new(path).project
@@ -29,6 +31,9 @@ module FlutterRb
29
31
  end
30
32
 
31
33
  # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
34
+ # @param {Project} project
35
+ # @param {String} path
36
+ # @param {Bool} with_report
32
37
  def check_project(project, path, with_report)
33
38
  config_initializer = FlutterRbConfigInitializer.new
34
39
  config_path = "#{path}/.flutter_rb.yaml"
@@ -40,26 +45,44 @@ module FlutterRb
40
45
  config.ios_checks
41
46
  )
42
47
  checks.each { |check| puts check.print }
43
- errors = checks.reject { |check| check.check_report_status == CheckReportStatus::NORMAL }
48
+ errors = checks.reject do |check|
49
+ check.check_report_status == CheckReportStatus::NORMAL
50
+ end
44
51
  create_report(path, checks) if with_report
45
52
  exit(errors.empty? ? 0 : -1)
46
53
  end
54
+
47
55
  # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
48
56
 
49
- def explore_project(
50
- project,
51
- flutter_checks,
52
- android_checks,
53
- ios_checks
54
- )
57
+ # rubocop:disable Metrics/MethodLength
58
+ # @param {Project} project
59
+ # @param {Check[]} flutter_checks
60
+ # @param {Check[]} android_checks
61
+ # @param {Check[]} ios_checks
62
+ def explore_project(project, flutter_checks, android_checks, ios_checks)
55
63
  result = []
56
- result += flutter_checks.map { |check| check.check(project) }
57
- result += android_checks.map { |check| check.check(project) } unless project.android_folder.nil?
58
- result += ios_checks.map { |check| check.check(project) } unless project.ios_folder.nil?
64
+ result += flutter_checks.map do |check|
65
+ check.check(project)
66
+ end
67
+ unless project.android_folder.nil?
68
+ result += android_checks.map do |check|
69
+ check.check(project)
70
+ end
71
+ end
72
+ unless project.ios_folder.nil?
73
+ result += ios_checks.map do |check|
74
+ check.check(project)
75
+ end
76
+ end
59
77
  result
60
78
  end
61
79
 
80
+ # rubocop:enable Metrics/MethodLength
81
+
62
82
  # rubocop:disable Metrics/MethodLength
83
+ # @param {String} path
84
+ # @param {Check[]} checks
85
+ # @return {CheckstyleReport}
63
86
  def create_report(path, checks)
64
87
  errors = checks.map do |check|
65
88
  CheckstyleReport::CheckstyleError.new(
@@ -77,8 +100,11 @@ module FlutterRb
77
100
  errors
78
101
  ).create_report
79
102
  end
103
+
80
104
  # rubocop:enable Metrics/MethodLength
81
105
 
106
+ # @param {CheckReportStatus} check_report_status
107
+ # @return {CheckstyleReport}
82
108
  def level_for_report(check_report_status)
83
109
  case check_report_status
84
110
  when CheckReportStatus::NORMAL
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flutter_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Fomchenkov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-22 00:00:00.000000000 Z
11
+ date: 2023-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -94,6 +94,20 @@ dependencies:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '1.7'
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 0.22.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 0.22.0
97
111
  description:
98
112
  email: artem.fomchenkov@outlook.com
99
113
  executables: