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
data/lib/flutter_rb.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative './flutter_rb/project/project'
|
2
4
|
require_relative './flutter_rb/checks/plugin_directories_check'
|
3
5
|
require_relative './flutter_rb/checks/plugin_pubspec_check'
|
@@ -8,12 +10,19 @@ require_relative './flutter_rb/config/flutter_rb_config_initializer'
|
|
8
10
|
require_relative './checkstyle_report/checkstyle_report'
|
9
11
|
|
10
12
|
module FlutterRb
|
11
|
-
#
|
12
|
-
# @param {String} path
|
13
|
-
# @param {Bool} with_report
|
13
|
+
# FlutterRb entry
|
14
14
|
class FlutterRb
|
15
|
+
# This class is the entry point for FlutterRb checks.
|
16
|
+
# It provides methods to start the checks, handle project parsing,
|
17
|
+
# explore project directories, create reports, and handle exit codes.
|
18
|
+
|
19
|
+
# Start FlutterRb checks
|
20
|
+
#
|
21
|
+
# @param path [String] The path to the Flutter project directory
|
22
|
+
# @param with_report [Boolean] Whether to generate a report or not
|
15
23
|
def start(path, with_report)
|
16
24
|
project = ProjectParser.new(path).project
|
25
|
+
|
17
26
|
if project.nil?
|
18
27
|
exit_with_no_project
|
19
28
|
else
|
@@ -25,15 +34,21 @@ module FlutterRb
|
|
25
34
|
end
|
26
35
|
end
|
27
36
|
|
37
|
+
# Exit the program with a message indicating no project found
|
38
|
+
#
|
39
|
+
# @return [Void]
|
28
40
|
def exit_with_no_project
|
29
41
|
puts 'No project'
|
42
|
+
|
30
43
|
exit(-1)
|
31
44
|
end
|
32
45
|
|
33
|
-
#
|
34
|
-
#
|
35
|
-
# @param
|
36
|
-
# @param
|
46
|
+
# Check the Flutter project
|
47
|
+
#
|
48
|
+
# @param project [Project] The parsed Flutter project
|
49
|
+
# @param path [String] The path to the Flutter project directory
|
50
|
+
# @param with_report [Boolean] Whether to generate a report or not
|
51
|
+
# @return [Void]
|
37
52
|
def check_project(project, path, with_report)
|
38
53
|
config_initializer = FlutterRbConfigInitializer.new
|
39
54
|
config_path = "#{path}/.flutter_rb.yaml"
|
@@ -44,45 +59,36 @@ module FlutterRb
|
|
44
59
|
config.android_checks,
|
45
60
|
config.ios_checks
|
46
61
|
)
|
62
|
+
|
47
63
|
checks.each { |check| puts check.print }
|
48
|
-
errors = checks.reject
|
49
|
-
|
50
|
-
end
|
64
|
+
errors = checks.reject { |check| check.check_report_status == CheckReportStatus::NORMAL }
|
65
|
+
|
51
66
|
create_report(path, checks) if with_report
|
67
|
+
|
52
68
|
exit(errors.empty? ? 0 : -1)
|
53
69
|
end
|
54
70
|
|
55
|
-
#
|
56
|
-
|
57
|
-
#
|
58
|
-
# @param
|
59
|
-
# @param
|
60
|
-
# @param
|
61
|
-
# @
|
71
|
+
# Explore the Flutter project directories and perform checks
|
72
|
+
#
|
73
|
+
# @param project [Project] The parsed Flutter project
|
74
|
+
# @param flutter_checks [Check[]] The checks to perform on the Flutter project
|
75
|
+
# @param android_checks [Check[]] The checks to perform on the Android project
|
76
|
+
# @param ios_checks [Check[]] The checks to perform on the iOS project
|
77
|
+
# @return [Check[]] The results of the performed checks
|
62
78
|
def explore_project(project, flutter_checks, android_checks, ios_checks)
|
63
79
|
result = []
|
64
|
-
result += flutter_checks.map
|
65
|
-
|
66
|
-
|
67
|
-
|
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
|
80
|
+
result += flutter_checks.map { |check| check.check(project) }
|
81
|
+
result += android_checks.map { |check| check.check(project) } unless project.android_folder.nil?
|
82
|
+
result += ios_checks.map { |check| check.check(project) } unless project.ios_folder.nil?
|
83
|
+
|
77
84
|
result
|
78
85
|
end
|
79
86
|
|
80
|
-
#
|
81
|
-
|
82
|
-
#
|
83
|
-
# @param
|
84
|
-
# @
|
85
|
-
# @return {CheckstyleReport}
|
87
|
+
# Create a report based on the performed checks
|
88
|
+
#
|
89
|
+
# @param path [String] The path to the Flutter project directory
|
90
|
+
# @param checks [Check[]] The results of the performed checks
|
91
|
+
# @return [CheckstyleReport] The created report
|
86
92
|
def create_report(path, checks)
|
87
93
|
errors = checks.map do |check|
|
88
94
|
CheckstyleReport::CheckstyleError.new(
|
@@ -101,10 +107,10 @@ module FlutterRb
|
|
101
107
|
).create_report
|
102
108
|
end
|
103
109
|
|
104
|
-
#
|
105
|
-
|
106
|
-
# @param
|
107
|
-
# @return
|
110
|
+
# Determine the severity level for a check report status
|
111
|
+
#
|
112
|
+
# @param check_report_status [CheckReportStatus] The status of the check report
|
113
|
+
# @return [String] The severity level for the report
|
108
114
|
def level_for_report(check_report_status)
|
109
115
|
case check_report_status
|
110
116
|
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
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artem Fomchenkov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.8.1
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: dry-cli
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.0.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.0.0
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: nokogiri
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,6 +94,20 @@ dependencies:
|
|
80
94
|
- - '='
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: 12.3.3
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rdoc
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 6.6.2
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 6.6.2
|
83
111
|
- !ruby/object:Gem::Dependency
|
84
112
|
name: rubocop
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,8 +144,6 @@ extensions: []
|
|
116
144
|
extra_rdoc_files:
|
117
145
|
- README.md
|
118
146
|
files:
|
119
|
-
- CODE_OF_CONDUCT.md
|
120
|
-
- COMMIT_CONVENTION.md
|
121
147
|
- LICENSE
|
122
148
|
- README.md
|
123
149
|
- bin/frb
|
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,76 +0,0 @@
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
2
|
-
|
3
|
-
## Our Pledge
|
4
|
-
|
5
|
-
In the interest of fostering an open and welcoming environment, we as
|
6
|
-
contributors and maintainers pledge to making participation in our project and
|
7
|
-
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
-
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
9
|
-
level of experience, education, socio-economic status, nationality, personal
|
10
|
-
appearance, race, religion, or sexual identity and orientation.
|
11
|
-
|
12
|
-
## Our Standards
|
13
|
-
|
14
|
-
Examples of behavior that contributes to creating a positive environment
|
15
|
-
include:
|
16
|
-
|
17
|
-
* Using welcoming and inclusive language
|
18
|
-
* Being respectful of differing viewpoints and experiences
|
19
|
-
* Gracefully accepting constructive criticism
|
20
|
-
* Focusing on what is best for the community
|
21
|
-
* Showing empathy towards other community members
|
22
|
-
|
23
|
-
Examples of unacceptable behavior by participants include:
|
24
|
-
|
25
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
-
advances
|
27
|
-
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
-
* Public or private harassment
|
29
|
-
* Publishing others' private information, such as a physical or electronic
|
30
|
-
address, without explicit permission
|
31
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
-
professional setting
|
33
|
-
|
34
|
-
## Our Responsibilities
|
35
|
-
|
36
|
-
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
-
behavior and are expected to take appropriate and fair corrective action in
|
38
|
-
response to any instances of unacceptable behavior.
|
39
|
-
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
-
threatening, offensive, or harmful.
|
45
|
-
|
46
|
-
## Scope
|
47
|
-
|
48
|
-
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
-
when an individual is representing the project or its community. Examples of
|
50
|
-
representing a project or community include using an official project e-mail
|
51
|
-
address, posting via an official social media account, or acting as an appointed
|
52
|
-
representative at an online or offline event. Representation of a project may be
|
53
|
-
further defined and clarified by project maintainers.
|
54
|
-
|
55
|
-
## Enforcement
|
56
|
-
|
57
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported by contacting the project team at jaman.smlnsk@gmail.com. All
|
59
|
-
complaints will be reviewed and investigated and will result in a response that
|
60
|
-
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
-
Further details of specific enforcement policies may be posted separately.
|
63
|
-
|
64
|
-
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
-
faith may face temporary or permanent repercussions as determined by other
|
66
|
-
members of the project's leadership.
|
67
|
-
|
68
|
-
## Attribution
|
69
|
-
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
72
|
-
|
73
|
-
[homepage]: https://www.contributor-covenant.org
|
74
|
-
|
75
|
-
For answers to common questions about this code of conduct, see
|
76
|
-
https://www.contributor-covenant.org/faq
|
data/COMMIT_CONVENTION.md
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
# Commit Convention
|
2
|
-
|
3
|
-
## How to work with a project
|
4
|
-
|
5
|
-
### As a repository maintainer
|
6
|
-
|
7
|
-
#### New update
|
8
|
-
|
9
|
-
1. clone a project from a repository to local workspace;
|
10
|
-
2. create a new branch for an update;
|
11
|
-
3. complete the update;
|
12
|
-
4. perform a Code Review;
|
13
|
-
5. merge your branch with `master`;
|
14
|
-
6. delete your branch.
|
15
|
-
|
16
|
-
#### Notes
|
17
|
-
|
18
|
-
1. always delete development branches;
|
19
|
-
2. always push squashed commit to `master`.
|
20
|
-
|
21
|
-
### As a contributor
|
22
|
-
|
23
|
-
1. clone a project from a repository to local workspace;
|
24
|
-
2. create a new branch for an update;
|
25
|
-
3. complete the update;
|
26
|
-
4. perform a Code Review;
|
27
|
-
5. create a Pull Request to the original repository.
|
28
|
-
|
29
|
-
## Branches
|
30
|
-
|
31
|
-
### In projects using next types of branches
|
32
|
-
|
33
|
-
* `master` - master branch. Contains a production version of the project. Don't push working changes to `master`!
|
34
|
-
* `version` - branch for a specific version.
|
35
|
-
* `issue` - branch for a specific issue.
|
36
|
-
|
37
|
-
## Commit message structure
|
38
|
-
|
39
|
-
### Template
|
40
|
-
|
41
|
-
```text
|
42
|
-
[DATE] [VERSION]: [MESSAGE]
|
43
|
-
```
|
44
|
-
|
45
|
-
### Example
|
46
|
-
|
47
|
-
```text
|
48
|
-
2019-05-12 v. 2.1.3: fixed bugs in History screen
|
49
|
-
```
|
50
|
-
|
51
|
-
#### Commit body sections order
|
52
|
-
|
53
|
-
1. `added` - what was added in the commit;
|
54
|
-
2. `closed` - what issues closed in the commit;
|
55
|
-
3. `fixed` - what was fixed in the commit;
|
56
|
-
4. `updated` - what was updated in the commit;
|
57
|
-
5. `deleted` - what was deleted in the commit;
|
58
|
-
6. `refactored` - what was refactored in the commit.
|