flutter_rb 1.0.1 → 1.1.1
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 +22 -16
- data/bin/frb +2 -0
- data/lib/checkstyle_report/checkstyle_report.rb +30 -4
- data/lib/flutter_rb/checks/check.rb +12 -2
- data/lib/flutter_rb/checks/plugin_directories_check.rb +7 -0
- data/lib/flutter_rb/checks/plugin_gradle_check.rb +12 -0
- data/lib/flutter_rb/checks/plugin_podspec_check.rb +37 -16
- data/lib/flutter_rb/checks/plugin_pubspec_check.rb +91 -28
- data/lib/flutter_rb/config/flutter_rb_config.rb +6 -5
- data/lib/flutter_rb/config/flutter_rb_config_initializer.rb +35 -13
- data/lib/flutter_rb/project/project.rb +10 -6
- data/lib/flutter_rb/project/specs/android/android_folder.rb +3 -0
- data/lib/flutter_rb/project/specs/android/gradle.rb +6 -0
- data/lib/flutter_rb/project/specs/flutter/dev_dependency.rb +4 -0
- data/lib/flutter_rb/project/specs/flutter/platform_plugin.rb +7 -2
- data/lib/flutter_rb/project/specs/flutter/pubspec.rb +16 -6
- data/lib/flutter_rb/project/specs/flutter/pubspec_info.rb +8 -7
- data/lib/flutter_rb/project/specs/ios/ios_folder.rb +4 -0
- data/lib/flutter_rb/project/specs/ios/podspec.rb +10 -7
- data/lib/flutter_rb/report/check_report.rb +16 -9
- data/lib/flutter_rb.rb +41 -11
- metadata +30 -4
- data/CODE_OF_CONDUCT.md +0 -76
- data/COMMIT_CONVENTION.md +0 -58
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.
|