flutter_rb 0.8.3 → 1.0.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/LICENSE +1 -1
- data/README.md +27 -27
- data/bin/frb +1 -1
- data/lib/checkstyle_report/checkstyle_report.rb +8 -8
- data/lib/flutter_rb/checks/check.rb +4 -4
- data/lib/flutter_rb/checks/plugin_podspec_check.rb +1 -1
- data/lib/flutter_rb/checks/plugin_pubspec_check.rb +1 -1
- data/lib/flutter_rb.rb +5 -3
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2085d887e060a00177dfef11e0a1219b7fa146064c315c409cf30ceccea494b
|
4
|
+
data.tar.gz: 7bbba89d78ed94e75e95f43180ae4f59449a04019b47f81e01e697174c482121
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9545fa39016e347701d743ebca162d70cbc599271db993f406d6262b9d1e72c120def9c47bbc2a9a7e3b941c490437558f4ecb285830becf1f6904265bd35413
|
7
|
+
data.tar.gz: 0070f79ba964624b33ece2ea1db4b8e3b9035a46be64d7f1d6f8da75f1abe5fc3ec0d2cbddc52c35d3cb8ffb8f6935d553374aa7dbeb0c3ce8fd5d9656a8a7eb
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<img src="media/logo/ic_lib.png" height="100px">
|
1
|
+
<img src="media/logo/ic_lib.png" height="100px" alt="Project's logo">
|
2
2
|
|
3
3
|
# flutter_rb
|
4
4
|
|
@@ -16,39 +16,39 @@ A tool for checking a Flutter plugin structure.
|
|
16
16
|
|
17
17
|
Each issue has a `level` parameter that describes his significate level.
|
18
18
|
|
19
|
-
| Level
|
20
|
-
|
21
|
-
| `NORMAL`
|
19
|
+
| Level | Description |
|
20
|
+
|-----------|---------------------------------------------|
|
21
|
+
| `NORMAL` | Issue was not found |
|
22
22
|
| `WARNING` | Issue is not serious and cannot break build |
|
23
|
-
| `ERROR`
|
23
|
+
| `ERROR` | Issue is critical and can break build |
|
24
24
|
|
25
25
|
#### Flutter
|
26
26
|
|
27
|
-
| Check
|
28
|
-
|
29
|
-
| `PluginDirectoriesCheck`
|
30
|
-
| `PluginPubspecNameCheck`
|
31
|
-
| `PluginPubspecDescriptionCheck`
|
32
|
-
| `PluginPubspecVersionCheck`
|
33
|
-
| `PluginPubspecAuthorCheck`
|
34
|
-
| `PluginPubspecHomepageCheck`
|
35
|
-
| `PluginPubspecEffectiveDartCheck` | Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not
|
27
|
+
| Check | Description | Level |
|
28
|
+
|-----------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------|
|
29
|
+
| `PluginDirectoriesCheck` | Check plugin directories structure in pubspec file. Example: if a Flutter plugin has only Android specific code but not contains iOS folder with description, then iOS build fails | `ERROR` |
|
30
|
+
| `PluginPubspecNameCheck` | Check plugin name in pubspec file. Exists or not | `ERROR` |
|
31
|
+
| `PluginPubspecDescriptionCheck` | Check plugin description in pubspec file. Exists or not | `WARNING` |
|
32
|
+
| `PluginPubspecVersionCheck` | Check plugin version in pubspec. Exists or not | `ERROR` |
|
33
|
+
| `PluginPubspecAuthorCheck` | Check plugin author in pubspec. Exists or not. `author` section deprecated in `pubspec.yaml` | `WARNING` |
|
34
|
+
| `PluginPubspecHomepageCheck` | Check plugin homepage in pubspec. Exists or not | `ERROR` |
|
35
|
+
| `PluginPubspecEffectiveDartCheck` | Check Flutter plugin Effective Dart depencency in pubspec file. Exists or not | `ERROR` |
|
36
36
|
|
37
37
|
#### Android
|
38
38
|
|
39
|
-
| Check
|
40
|
-
|
41
|
-
| `PluginGradleAndroidPackageCheck` | Validate that \android\ package not exists in Gradle project config (build.gradle file)
|
42
|
-
| `PluginGradleVersionCheck`
|
39
|
+
| Check | Description | Level |
|
40
|
+
|-----------------------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------|
|
41
|
+
| `PluginGradleAndroidPackageCheck` | Validate that \android\ package not exists in Gradle project config (build.gradle file) | `ERROR` |
|
42
|
+
| `PluginGradleVersionCheck` | Check plugin version in Gradle project config (build.gradle file). Version must be the same as plugin version in pubspec file | `WARNING` |
|
43
43
|
|
44
44
|
#### iOS
|
45
45
|
|
46
|
-
| Check
|
47
|
-
|
48
|
-
| `PluginPodspecNameCheck`
|
49
|
-
| `PluginPodspecVersionCheck` | Check plugin version in podspec file. Exists or not
|
50
|
-
| `PluginPodspecAuthorsCheck` | Check plugin's authors in podspec file. Exists or not
|
51
|
-
| `PluginPodspecSourceCheck`
|
46
|
+
| Check | Description | Level |
|
47
|
+
|-----------------------------|------------------------------------------------------------------------------------------------------------------------------|-----------|
|
48
|
+
| `PluginPodspecNameCheck` | Check plugin name in podspec file. Exists or not | `WARNING` |
|
49
|
+
| `PluginPodspecVersionCheck` | Check plugin version in podspec file. Exists or not | `WARNING` |
|
50
|
+
| `PluginPodspecAuthorsCheck` | Check plugin's authors in podspec file. Exists or not | `ERROR` |
|
51
|
+
| `PluginPodspecSourceCheck` | Check plugin iOS source path in podspec file. If Flutter plugin cannot contains iOS specific code, source path must be `'.'` | `ERROR` |
|
52
52
|
|
53
53
|
## How to use
|
54
54
|
|
@@ -100,9 +100,9 @@ local_frb
|
|
100
100
|
|
101
101
|
### Arguments
|
102
102
|
|
103
|
-
| Argument
|
104
|
-
|
105
|
-
| `--help`
|
103
|
+
| Argument | Description |
|
104
|
+
|-----------------------|--------------------------------------|
|
105
|
+
| `--help` | Print help info |
|
106
106
|
| `--checkstyle-report` | Generate report in Checkstyle format |
|
107
107
|
|
108
108
|
|
data/bin/frb
CHANGED
@@ -27,7 +27,7 @@ module CheckstyleReport
|
|
27
27
|
checks.each do |check|
|
28
28
|
checkstyle_file = checkstyle_files[check.source]
|
29
29
|
checkstyle_files[check.source] = [] if checkstyle_file.nil?
|
30
|
-
checkstyle_files[check.source] += [check] if check.
|
30
|
+
checkstyle_files[check.source] += [check] if check.severity != CheckstyleError::SEVERITY_NORMAL
|
31
31
|
end
|
32
32
|
checkstyle_files
|
33
33
|
end
|
@@ -44,7 +44,7 @@ module CheckstyleReport
|
|
44
44
|
xml.error(
|
45
45
|
line: error.line,
|
46
46
|
column: error.column,
|
47
|
-
|
47
|
+
severity: error.severity,
|
48
48
|
message: error.message,
|
49
49
|
source: error.source
|
50
50
|
)
|
@@ -63,20 +63,20 @@ module CheckstyleReport
|
|
63
63
|
|
64
64
|
# Checkstyle error representation
|
65
65
|
class CheckstyleError
|
66
|
-
|
67
|
-
|
68
|
-
|
66
|
+
SEVERITY_NORMAL = 'normal'.freeze
|
67
|
+
SEVERITY_WARNING = 'warning'.freeze
|
68
|
+
SEVERITY_ERROR = 'error'.freeze
|
69
69
|
|
70
70
|
# rubocop:disable Metrics/ParameterLists
|
71
71
|
def initialize(
|
72
|
-
|
72
|
+
severity,
|
73
73
|
message,
|
74
74
|
source,
|
75
75
|
line,
|
76
76
|
column,
|
77
77
|
name
|
78
78
|
)
|
79
|
-
@
|
79
|
+
@severity = severity
|
80
80
|
@message = message
|
81
81
|
@source = source
|
82
82
|
@line = line
|
@@ -85,6 +85,6 @@ module CheckstyleReport
|
|
85
85
|
end
|
86
86
|
# rubocop:enable Metrics/ParameterLists
|
87
87
|
|
88
|
-
attr_reader :
|
88
|
+
attr_reader :severity, :message, :source, :line, :column, :name
|
89
89
|
end
|
90
90
|
end
|
@@ -3,14 +3,14 @@ module FlutterRb
|
|
3
3
|
# Class provides default methods structure
|
4
4
|
# All methods using for create reports
|
5
5
|
class Check
|
6
|
-
|
6
|
+
UNIMPLEMENTED_ERROR = 'Error: missing method'.freeze
|
7
7
|
|
8
8
|
def name
|
9
|
-
raise
|
9
|
+
raise UNIMPLEMENTED_ERROR
|
10
10
|
end
|
11
11
|
|
12
12
|
def summary
|
13
|
-
raise
|
13
|
+
raise UNIMPLEMENTED_ERROR
|
14
14
|
end
|
15
15
|
|
16
16
|
def description
|
@@ -18,7 +18,7 @@ module FlutterRb
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def check
|
21
|
-
raise
|
21
|
+
raise UNIMPLEMENTED_ERROR
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
data/lib/flutter_rb.rb
CHANGED
@@ -82,11 +82,13 @@ module FlutterRb
|
|
82
82
|
def level_for_report(check_report_status)
|
83
83
|
case check_report_status
|
84
84
|
when CheckReportStatus::NORMAL
|
85
|
-
CheckstyleReport::CheckstyleError::
|
85
|
+
CheckstyleReport::CheckstyleError::SEVERITY_NORMAL
|
86
86
|
when CheckReportStatus::WARNING
|
87
|
-
CheckstyleReport::CheckstyleError::
|
87
|
+
CheckstyleReport::CheckstyleError::SEVERITY_WARNING
|
88
88
|
when CheckReportStatus::ERROR
|
89
|
-
CheckstyleReport::CheckstyleError::
|
89
|
+
CheckstyleReport::CheckstyleError::SEVERITY_ERROR
|
90
|
+
else
|
91
|
+
throw 'Unknown CheckReportStatus'
|
90
92
|
end
|
91
93
|
end
|
92
94
|
end
|
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: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artem Fomchenkov
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|
@@ -94,7 +94,7 @@ dependencies:
|
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '1.7'
|
97
|
-
description:
|
97
|
+
description:
|
98
98
|
email: artem.fomchenkov@outlook.com
|
99
99
|
executables:
|
100
100
|
- frb
|
@@ -124,11 +124,11 @@ files:
|
|
124
124
|
- lib/flutter_rb/project/specs/ios/ios_folder.rb
|
125
125
|
- lib/flutter_rb/project/specs/ios/podspec.rb
|
126
126
|
- lib/flutter_rb/report/check_report.rb
|
127
|
-
homepage:
|
127
|
+
homepage: https://github.com/flutter-rb/flutter-rb
|
128
128
|
licenses:
|
129
129
|
- MIT
|
130
130
|
metadata: {}
|
131
|
-
post_install_message:
|
131
|
+
post_install_message:
|
132
132
|
rdoc_options: []
|
133
133
|
require_paths:
|
134
134
|
- lib
|
@@ -137,15 +137,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
137
137
|
requirements:
|
138
138
|
- - ">="
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version:
|
140
|
+
version: '3.0'
|
141
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
143
|
- - ">="
|
144
144
|
- !ruby/object:Gem::Version
|
145
145
|
version: '0'
|
146
146
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
148
|
-
signing_key:
|
147
|
+
rubygems_version: 3.4.10
|
148
|
+
signing_key:
|
149
149
|
specification_version: 4
|
150
150
|
summary: A Ruby tool for checking a Flutter plugin structure
|
151
151
|
test_files: []
|