flutter_rb 1.1.1 → 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 +42 -8
- data/bin/frb +1 -16
- data/lib/checkstyle_report/checkstyle_report.rb +78 -36
- data/lib/flutter_rb/checks/check.rb +16 -16
- data/lib/flutter_rb/checks/plugin_directories_check.rb +16 -12
- data/lib/flutter_rb/checks/plugin_gradle_check.rb +37 -22
- data/lib/flutter_rb/checks/plugin_podspec_check.rb +78 -47
- data/lib/flutter_rb/checks/plugin_pubspec_check.rb +110 -70
- data/lib/flutter_rb/config/flutter_rb_config.rb +15 -5
- data/lib/flutter_rb/config/flutter_rb_config_initializer.rb +11 -7
- data/lib/flutter_rb/project/project.rb +37 -10
- data/lib/flutter_rb/project/specs/android/android_folder.rb +14 -3
- data/lib/flutter_rb/project/specs/android/gradle.rb +35 -11
- data/lib/flutter_rb/project/specs/flutter/dev_dependency.rb +14 -4
- data/lib/flutter_rb/project/specs/flutter/platform_plugin.rb +24 -6
- data/lib/flutter_rb/project/specs/flutter/pubspec.rb +47 -16
- data/lib/flutter_rb/project/specs/flutter/pubspec_info.rb +27 -7
- data/lib/flutter_rb/project/specs/ios/ios_folder.rb +18 -4
- data/lib/flutter_rb/project/specs/ios/podspec.rb +44 -10
- data/lib/flutter_rb/report/check_report.rb +32 -10
- data/lib/flutter_rb.rb +42 -40
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5fb993e2dda5603c2b554cc6170bc6fc35fc5e1ffa66bf297d6e58831848f57
|
4
|
+
data.tar.gz: a6cdb39bcfbeced31b795c35ad29afe8aa77610114db5983af2f7c6f537f514e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba389f8bfbe506225b2fa88463e33ccb43ebcc77d3d1796c6736f8c0c57f2ba03a473a7ecfcd9a153afe3116cb4e18019e1c2a7ac690395deebb07f5eed90449
|
7
|
+
data.tar.gz: f57858e70b86497b3413cb04f95431981470d2eae4d5f137f4bfe72ab67e32120e66c383fd1f5faf35f2669cf41c5a81bf93ffe671f9ca49eee4ded7a5c7e670
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<!--suppress CheckImageSize -->
|
2
|
-
<img src="media/logo/ic_lib.
|
2
|
+
<img src="media/logo/ic_lib.jpg" height="100px" alt="Project's logo">
|
3
3
|
|
4
4
|
# flutter_rb
|
5
5
|
|
@@ -84,7 +84,7 @@ $ gem i flutter_rb
|
|
84
84
|
Then run from a Flutter plugin's project folder:
|
85
85
|
|
86
86
|
```shell
|
87
|
-
$ frb
|
87
|
+
$ frb inspect --path=./project_folder
|
88
88
|
```
|
89
89
|
|
90
90
|
### As local executable
|
@@ -93,15 +93,39 @@ Add `project_folder/bin` (where `project_folder` is path to project on your mach
|
|
93
93
|
environment. Then updated environment and run from a Flutter plugin's project folder:
|
94
94
|
|
95
95
|
```shell
|
96
|
-
$ local_frb
|
96
|
+
$ local_frb inspect --path=./project_folder
|
97
|
+
```
|
98
|
+
|
99
|
+
### Commands
|
100
|
+
|
101
|
+
#### Inspect
|
102
|
+
|
103
|
+
Starts the flutter-rb.
|
104
|
+
|
105
|
+
```shell
|
106
|
+
$ frb inspect --path=./project_folder --report
|
107
|
+
```
|
108
|
+
|
109
|
+
| Argument | Description |
|
110
|
+
|------------|----------------------------------------------------------------------------------------------------|
|
111
|
+
| `--path` | Path to Dart/Flutter project. flutter-rb will be use current directory if this parameter are empty |
|
112
|
+
| `--report` | Generate report in Checkstyle format |
|
113
|
+
|
114
|
+
#### Version
|
115
|
+
|
116
|
+
Puts using version of flutter-rb.
|
117
|
+
|
118
|
+
```shell
|
119
|
+
$ frb version
|
97
120
|
```
|
98
121
|
|
99
|
-
|
122
|
+
#### Author
|
123
|
+
|
124
|
+
Puts author and our contacts.
|
100
125
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
| `--checkstyle-report` | Generate report in Checkstyle format |
|
126
|
+
```shell
|
127
|
+
$ frb author
|
128
|
+
```
|
105
129
|
|
106
130
|
### Configuration
|
107
131
|
|
@@ -129,6 +153,16 @@ report file name is `frb-checkstyle-report.xml`.
|
|
129
153
|
|
130
154
|
## How to contribute
|
131
155
|
|
156
|
+
### Documentation
|
157
|
+
|
158
|
+
Just run:
|
159
|
+
|
160
|
+
```shell
|
161
|
+
$ rdoc
|
162
|
+
```
|
163
|
+
|
164
|
+
### Contribution
|
165
|
+
|
132
166
|
Read [Commit Convention](./COMMIT_CONVENTION.md). Make sure your build is green before you contribute your pull request.
|
133
167
|
Then:
|
134
168
|
|
data/bin/frb
CHANGED
@@ -2,20 +2,5 @@
|
|
2
2
|
|
3
3
|
# frozen_string_literal: true
|
4
4
|
|
5
|
+
require_relative 'cli'
|
5
6
|
require 'flutter_rb'
|
6
|
-
require 'colorize'
|
7
|
-
|
8
|
-
def light_blue_text(text)
|
9
|
-
text.colorize(:light_blue)
|
10
|
-
end
|
11
|
-
|
12
|
-
if ARGV.include?('--help')
|
13
|
-
puts "
|
14
|
-
Available arguments:
|
15
|
-
* #{light_blue_text('--help')}: print help info
|
16
|
-
* #{light_blue_text('--checkstyle-report')}: generate report in Checkstyle format
|
17
|
-
"
|
18
|
-
else
|
19
|
-
flutter_rb = FlutterRb::FlutterRb.new
|
20
|
-
flutter_rb.start(Dir.pwd, ARGV.include?('--checkstyle-report'))
|
21
|
-
end
|
@@ -2,21 +2,24 @@
|
|
2
2
|
|
3
3
|
require 'nokogiri'
|
4
4
|
|
5
|
-
# Module with classes for creating reports in Checkstyle format
|
6
5
|
module CheckstyleReport
|
7
6
|
# Class for create report in Checkstyle format
|
8
7
|
class CheckstyleReport
|
9
|
-
#
|
10
|
-
#
|
11
|
-
# @param
|
8
|
+
# Initializes a new instance of CheckstyleReport
|
9
|
+
#
|
10
|
+
# @param path [String] The path where the report file will be saved
|
11
|
+
# @param report_filename [String] The name of the report file
|
12
|
+
# @param checks [Array<CheckstyleError>] An array of CheckstyleError objects
|
12
13
|
def initialize(path, report_filename, checks)
|
13
14
|
@path = path
|
14
15
|
@report_filename = report_filename
|
15
16
|
@checks = checks
|
16
17
|
end
|
17
18
|
|
18
|
-
#
|
19
|
-
#
|
19
|
+
# Creates a Checkstyle report XML file
|
20
|
+
#
|
21
|
+
# This method groups the errors by file, creates a new CheckstyleFile object for each file,
|
22
|
+
# and writes the report to an XML file.
|
20
23
|
def create_report
|
21
24
|
checkstyle_files = sort_checks(@checks)
|
22
25
|
report = Nokogiri::XML::Builder.new do |xml|
|
@@ -26,15 +29,17 @@ module CheckstyleReport
|
|
26
29
|
.each { |file| write_file(xml, file) }
|
27
30
|
end
|
28
31
|
end
|
32
|
+
|
29
33
|
File.open("#{@path}/#{@report_filename}.xml", 'w') do |file|
|
30
34
|
file.write(report.to_xml)
|
31
35
|
end
|
32
36
|
end
|
33
37
|
|
34
|
-
#
|
35
|
-
|
36
|
-
# @param
|
37
|
-
# @return
|
38
|
+
# Sorts the checks by file
|
39
|
+
#
|
40
|
+
# @param checks [Array<CheckstyleError>] An array of CheckstyleError objects
|
41
|
+
# @return [Hash<String, Array<CheckstyleError>>] A hash where the keys are file names
|
42
|
+
# and the values are arrays of CheckstyleError objects
|
38
43
|
def sort_checks(checks)
|
39
44
|
checkstyle_files = {}
|
40
45
|
checks.each do |check|
|
@@ -42,11 +47,14 @@ module CheckstyleReport
|
|
42
47
|
checkstyle_files[check.source] = [] if checkstyle_file.nil?
|
43
48
|
checkstyle_files[check.source] += [check] if check.severity != CheckstyleError::SEVERITY_NORMAL
|
44
49
|
end
|
50
|
+
|
45
51
|
checkstyle_files
|
46
52
|
end
|
47
53
|
|
48
|
-
#
|
49
|
-
#
|
54
|
+
# Writes a file element to the XML report
|
55
|
+
#
|
56
|
+
# @param xml [Nokogiri::XML::Builder] The XML builder object
|
57
|
+
# @param checkstyle_file [CheckstyleFile] The CheckstyleFile object to be written
|
50
58
|
def write_file(xml, checkstyle_file)
|
51
59
|
xml.file(name: checkstyle_file.file) do
|
52
60
|
checkstyle_file.errors.each do |error|
|
@@ -55,8 +63,10 @@ module CheckstyleReport
|
|
55
63
|
end
|
56
64
|
end
|
57
65
|
|
58
|
-
#
|
59
|
-
#
|
66
|
+
# Writes an error element to the XML report
|
67
|
+
#
|
68
|
+
# @param xml [Nokogiri::XML::Builder] The XML builder object
|
69
|
+
# @param error [CheckstyleError] The CheckstyleError object to be written
|
60
70
|
def write_error(xml, error)
|
61
71
|
xml.error(
|
62
72
|
line: error.line,
|
@@ -68,39 +78,45 @@ module CheckstyleReport
|
|
68
78
|
end
|
69
79
|
end
|
70
80
|
|
71
|
-
#
|
81
|
+
# Represents a file in Checkstyle format.
|
72
82
|
class CheckstyleFile
|
73
|
-
#
|
74
|
-
#
|
83
|
+
# Initializes a new instance of CheckstyleFile.
|
84
|
+
#
|
85
|
+
# @param file [String] The name of the file.
|
86
|
+
# @param errors [Array<CheckstyleError>] An array of CheckstyleError objects related to this file.
|
75
87
|
def initialize(file, errors)
|
76
88
|
@file = file
|
77
89
|
@errors = errors
|
78
90
|
end
|
79
91
|
|
80
|
-
|
92
|
+
# Returns the name of the file.
|
93
|
+
#
|
94
|
+
# @return [String] The name of the file.
|
95
|
+
attr_reader :file
|
96
|
+
|
97
|
+
# Returns the array of CheckstyleError objects related to this file.
|
98
|
+
#
|
99
|
+
# @return [Array<CheckstyleError>] An array of CheckstyleError objects related to this file.
|
100
|
+
attr_reader :errors
|
81
101
|
end
|
82
102
|
|
83
|
-
#
|
103
|
+
# Represents a single error in Checkstyle format.
|
84
104
|
class CheckstyleError
|
105
|
+
# Severity levels for Checkstyle errors.
|
85
106
|
SEVERITY_NORMAL = 'normal'
|
86
107
|
SEVERITY_WARNING = 'warning'
|
87
108
|
SEVERITY_ERROR = 'error'
|
88
109
|
|
89
|
-
#
|
90
|
-
#
|
91
|
-
# @param
|
92
|
-
#
|
93
|
-
# @param
|
94
|
-
# @param
|
95
|
-
# @param
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
source,
|
100
|
-
line,
|
101
|
-
column,
|
102
|
-
name
|
103
|
-
)
|
110
|
+
# Initializes a new instance of CheckstyleError.
|
111
|
+
#
|
112
|
+
# @param severity [CheckstyleError] The severity level of the error.
|
113
|
+
# Must be one of SEVERITY_NORMAL, SEVERITY_WARNING, or SEVERITY_ERROR.
|
114
|
+
# @param message [String] The error message.
|
115
|
+
# @param source [String] The source of the error.
|
116
|
+
# @param line [Integer] The line number where the error occurred.
|
117
|
+
# @param column [Integer] The column number where the error occurred.
|
118
|
+
# @param name [String] The name of the error.
|
119
|
+
def initialize(severity, message, source, line, column, name)
|
104
120
|
@severity = severity
|
105
121
|
@message = message
|
106
122
|
@source = source
|
@@ -109,8 +125,34 @@ module CheckstyleReport
|
|
109
125
|
@name = name
|
110
126
|
end
|
111
127
|
|
112
|
-
#
|
128
|
+
# Returns the severity level of the error.
|
129
|
+
#
|
130
|
+
# @return [String] The severity level of the error.
|
131
|
+
attr_reader :severity
|
132
|
+
|
133
|
+
# Returns the error message.
|
134
|
+
#
|
135
|
+
# @return [String] The error message.
|
136
|
+
attr_reader :message
|
137
|
+
|
138
|
+
# Returns the source of the error.
|
139
|
+
#
|
140
|
+
# @return [String] The source of the error.
|
141
|
+
attr_reader :source
|
142
|
+
|
143
|
+
# Returns the line number where the error occurred.
|
144
|
+
#
|
145
|
+
# @return [Integer] The line number where the error occurred.
|
146
|
+
attr_reader :line
|
147
|
+
|
148
|
+
# Returns the column number where the error occurred.
|
149
|
+
#
|
150
|
+
# @return [Integer] The column number where the error occurred.
|
151
|
+
attr_reader :column
|
113
152
|
|
114
|
-
|
153
|
+
# Returns the name of the error.
|
154
|
+
#
|
155
|
+
# @return [String] The name of the error.
|
156
|
+
attr_reader :name
|
115
157
|
end
|
116
158
|
end
|
@@ -1,34 +1,34 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module FlutterRb
|
4
|
-
#
|
5
|
-
# Class provides default methods structure
|
6
|
-
# All methods using for create reports
|
4
|
+
# A class representing a check to be performed on a project.
|
7
5
|
class Check
|
6
|
+
# Error message to be raised when a method is not implemented.
|
8
7
|
UNIMPLEMENTED_ERROR = 'Error: missing method'
|
9
8
|
|
10
|
-
#
|
9
|
+
# Returns the name of the check.
|
10
|
+
#
|
11
|
+
# @return [String] the name of the check
|
12
|
+
# @raise [RuntimeError] if the method is not implemented
|
11
13
|
def name
|
12
14
|
raise UNIMPLEMENTED_ERROR
|
13
15
|
end
|
14
16
|
|
15
|
-
#
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
# @return {String}
|
17
|
+
# Returns a description of the check.
|
18
|
+
#
|
19
|
+
# @return [String] a description of the check
|
20
|
+
# @raise [RuntimeError] if the method is not implemented
|
21
21
|
def description
|
22
|
-
|
22
|
+
raise UNIMPLEMENTED_ERROR
|
23
23
|
end
|
24
24
|
|
25
|
-
#
|
26
|
-
#
|
27
|
-
# @
|
25
|
+
# Performs the check on the given project and returns a report.
|
26
|
+
#
|
27
|
+
# @param project [Project, nil] the project to be checked
|
28
|
+
# @return [CheckReport] the report of the check
|
29
|
+
# @raise [RuntimeError] if the method is not implemented
|
28
30
|
def check(project)
|
29
31
|
raise UNIMPLEMENTED_ERROR
|
30
32
|
end
|
31
|
-
|
32
|
-
# rubocop:enable Lint/UnusedMethodArgument
|
33
33
|
end
|
34
34
|
end
|
@@ -4,31 +4,35 @@ require_relative 'check'
|
|
4
4
|
require_relative '../report/check_report'
|
5
5
|
|
6
6
|
module FlutterRb
|
7
|
-
#
|
8
|
-
# Example: if a Flutter plugin has only Android specific code
|
9
|
-
# but not contains iOS folder with description, then iOS build fails
|
7
|
+
# This class represents a check for plugin directories structure in a Flutter project.
|
10
8
|
class PluginDirectoriesCheck < Check
|
11
|
-
#
|
9
|
+
# Returns the name of the check.
|
10
|
+
#
|
11
|
+
# @return [String] The name of the check.
|
12
12
|
def name
|
13
13
|
'PluginDirectoriesCheck'
|
14
14
|
end
|
15
15
|
|
16
|
-
#
|
17
|
-
|
18
|
-
|
19
|
-
end
|
20
|
-
|
21
|
-
# @return {String}
|
16
|
+
# Returns a description of the check.
|
17
|
+
#
|
18
|
+
# @return [String] A description of the check.
|
22
19
|
def description
|
23
20
|
'Check plugin directories structure in pubspec file'
|
24
21
|
end
|
25
22
|
|
26
|
-
#
|
27
|
-
#
|
23
|
+
# Performs the check on the given project.
|
24
|
+
#
|
25
|
+
# @param project [Project] The project to perform the check on.
|
26
|
+
# @return [CheckReport] The report of the check result.
|
28
27
|
def check(project)
|
28
|
+
# Check if android and ios folders exist.
|
29
29
|
android_exists = !project.android_folder.nil?
|
30
30
|
ios_exists = !project.ios_folder.nil?
|
31
|
+
|
32
|
+
# Determine the check result based on the existence of android and ios folders.
|
31
33
|
check_result = android_exists && ios_exists || !android_exists && !ios_exists
|
34
|
+
|
35
|
+
# Create a new CheckReport with the result.
|
32
36
|
CheckReport.new(
|
33
37
|
name,
|
34
38
|
check_result ? CheckReportStatus::NORMAL : CheckReportStatus::ERROR,
|
@@ -4,63 +4,78 @@ require_relative './check'
|
|
4
4
|
require_relative '../report/check_report'
|
5
5
|
|
6
6
|
module FlutterRb
|
7
|
-
#
|
7
|
+
# This class represents a check for validating that the 'android' package
|
8
|
+
# does not exist in the Gradle project configuration.
|
8
9
|
class PluginGradleAndroidPackageCheck < Check
|
9
|
-
#
|
10
|
+
# Returns the name of the check.
|
11
|
+
#
|
12
|
+
# @return [String] The name of the check.
|
10
13
|
def name
|
11
14
|
'PluginGradleAndroidPackageCheck'
|
12
15
|
end
|
13
16
|
|
14
|
-
#
|
15
|
-
|
16
|
-
|
17
|
-
end
|
18
|
-
|
19
|
-
# @return {String}
|
17
|
+
# Returns the description of the check.
|
18
|
+
#
|
19
|
+
# @return [String] The description of the check.
|
20
20
|
def description
|
21
21
|
'Validate that \android\ package not exists in Gradle project config (build.gradle file)'
|
22
22
|
end
|
23
23
|
|
24
|
-
#
|
25
|
-
#
|
24
|
+
# Performs the check on the given project.
|
25
|
+
#
|
26
|
+
# @param project [Project] The project to perform the check on.
|
27
|
+
# @return [CheckReport] The report of the check result.
|
26
28
|
def check(project)
|
29
|
+
# Get the Gradle configuration file.
|
27
30
|
gradle = project.android_folder.gradle
|
31
|
+
|
32
|
+
# Check if the 'package android' line exists in the build.gradle file.
|
28
33
|
import_exist = File.readlines("#{gradle.path}/build.gradle").grep(/package android/).size.positive?
|
34
|
+
|
35
|
+
# Create a check report based on the result.
|
29
36
|
CheckReport.new(
|
30
37
|
name,
|
31
|
-
import_exist ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
|
38
|
+
import_exist ? ::CheckReportStatus::ERROR : ::CheckReportStatus::NORMAL,
|
32
39
|
description,
|
33
40
|
gradle.path
|
34
41
|
)
|
35
42
|
end
|
36
43
|
end
|
37
44
|
|
38
|
-
#
|
45
|
+
# This class represents a check for validating the version of the plugin in the Gradle project configuration.
|
39
46
|
class PluginGradleVersionCheck < Check
|
40
|
-
#
|
47
|
+
# Returns the name of the check.
|
48
|
+
#
|
49
|
+
# @return [String] The name of the check.
|
41
50
|
def name
|
42
51
|
'PluginGradleVersionCheck'
|
43
52
|
end
|
44
53
|
|
45
|
-
#
|
46
|
-
|
47
|
-
|
48
|
-
end
|
49
|
-
|
50
|
-
# @return {String}
|
54
|
+
# Returns the description of the check.
|
55
|
+
#
|
56
|
+
# @return [String] The description of the check.
|
51
57
|
def description
|
52
58
|
'Check plugin version in Gradle project config (build.gradle file)'
|
53
59
|
end
|
54
60
|
|
55
|
-
#
|
56
|
-
#
|
61
|
+
# Performs the check on the given project.
|
62
|
+
#
|
63
|
+
# @param project [Project] The project to perform the check on.
|
64
|
+
# @return [CheckReport] The report of the check result.
|
57
65
|
def check(project)
|
66
|
+
# Get the version of the plugin from the pubspec file.
|
58
67
|
version_in_pubspec = project.pubspec.pubspec_info.version
|
68
|
+
|
69
|
+
# Get the Gradle configuration file.
|
59
70
|
gradle = project.android_folder.gradle
|
71
|
+
|
72
|
+
# Get the version of the plugin from the Gradle build file.
|
60
73
|
version_in_gradle = gradle.version
|
74
|
+
|
75
|
+
# Create a check report based on the result.
|
61
76
|
CheckReport.new(
|
62
77
|
name,
|
63
|
-
version_in_pubspec == version_in_gradle ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
|
78
|
+
version_in_pubspec == version_in_gradle ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::WARNING,
|
64
79
|
description,
|
65
80
|
gradle.path
|
66
81
|
)
|