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.
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.