drone-builds 0.1.0 → 0.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 +35 -15
- data/lib/drone/builds/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00bec511998882e4975969ef7e061f75fa904686
|
4
|
+
data.tar.gz: '008340a25198fd865f99ceff3cd3ef5d573181f6'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d937fcf5e0423f804f5ba232d5f1317fd48757317bc9d44d7e98ecc08cb9be68baf754a732251961cd692accf3252bae79f7f02aaf67cd48218deaf9344f1ee9
|
7
|
+
data.tar.gz: 87dacab23688ee7b6d3876d78a346614ae5e7d3b85601cbc1caa3eb19aa54166e0c5bee14c7ce56865fa5dcc66280dcab54c90125b395e0cb74d63744288ec54
|
data/README.md
CHANGED
@@ -1,28 +1,49 @@
|
|
1
|
-
#
|
1
|
+
# `drone-builds`
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Read your drone builds from the terminal
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
7
|
+
$ gem install drone-builds
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
In your `~/.env` file:
|
12
|
+
|
13
|
+
```
|
14
|
+
DRONECI_TOKEN=YoUrdRoneTOkEN
|
15
|
+
DRONECI_DOMAIN=your.ci.server.com
|
16
|
+
DRONECI_OWNER=org-name
|
17
|
+
DRONECI_NAME=repo-name
|
18
|
+
```
|
10
19
|
|
11
|
-
```
|
12
|
-
|
20
|
+
```
|
21
|
+
drone-builds commands:
|
22
|
+
drone-builds help [COMMAND] # Describe available commands or one specific command
|
23
|
+
drone-builds list # list last builds
|
24
|
+
drone-builds show # show a build
|
13
25
|
```
|
14
26
|
|
15
|
-
|
27
|
+
```
|
28
|
+
Usage:
|
29
|
+
drone-builds list
|
16
30
|
|
17
|
-
|
31
|
+
Options:
|
32
|
+
-l, [--limit=N] # number of builds shown
|
33
|
+
# Default: 10
|
18
34
|
|
19
|
-
|
35
|
+
list last builds
|
36
|
+
```
|
20
37
|
|
21
|
-
|
38
|
+
```
|
39
|
+
Usage:
|
40
|
+
drone-builds show
|
22
41
|
|
23
|
-
|
42
|
+
Options:
|
43
|
+
-f, [--filter=FILTER] # filter builds output lines
|
24
44
|
|
25
|
-
|
45
|
+
show a build
|
46
|
+
```
|
26
47
|
|
27
48
|
## Development
|
28
49
|
|
@@ -32,8 +53,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
53
|
|
33
54
|
## Contributing
|
34
55
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
36
|
-
|
56
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Dorian/drone-builds. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
37
57
|
|
38
58
|
## License
|
39
59
|
|
data/lib/drone/builds/version.rb
CHANGED