You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a scaled-back implementation of binks. Not all features
were brought forward.
Checks for dirty tree, and version tag existence. This version
does not validate version format.
id "com.github.mxenabled.binks" version "[VERSION]"
10
+
}
31
11
```
32
12
33
13
### Usage
34
14
35
-
#### As a rake task
36
-
37
-
Regular release (from master)
38
-
```shell
39
-
rake release
40
-
```
41
-
42
-
Force retag
43
-
```shell
44
-
rake release -- -f
45
-
```
46
-
47
-
#### As a binary
48
-
49
-
Regular release (from master)
50
-
```shell
51
-
binks release
52
15
```
53
-
54
-
Force retag
55
-
```shell
56
-
binks release -f
16
+
./gradlew release
57
17
```
58
18
59
-
### Contributing
60
-
61
-
See [process wiki page](https://gitlab.mx.com/mx/io/wikis/Gems) for details on updating a gem.
62
-
63
-
1. Create your feature branch (`git checkout -b my-new-feature`)
64
-
3. Commit your changes (`git commit -am 'Add some feature'`)
65
-
4. Push to the branch (`git push origin my-new-feature`)
66
-
5. Create new Pull Request
67
-
68
-
### Versioning
69
-
70
-
Clone the repo and create a topic branch. Generate a merge request. Once approved, merge to master. In master bump the gem version. To maintain some semblance of sanity, slight modifications should result in point bump (e.g. 0.1.0 to 0.1.1) and more significant changes like new messages or endpoints should result in a minor bump (e.g. 0.1.1 to 0.2.0).
71
-
72
-
**Please commit your version bump separately from your other changes.** It makes it much easier to track down when versions changed and what changes are in each version.
73
-
74
-
After committing and pushing the version change, run:
75
-
76
-
```shell
77
-
rake release
19
+
Just run validation on current version
78
20
```
79
-
80
-
If prompted for an `Email` and `Password`, use your `username` and `api_key`
0 commit comments