github_informer 0.0.2 → 0.0.3
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 +13 -0
- data/bin/gh_execute +2 -0
- 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: df033d14444202d8cd205ab23e8d88b1211acf0a
|
|
4
|
+
data.tar.gz: 0f5928bf4067148e292457b3fd48e359a474f496
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 562ac448c035d462e242008dbb6e0e0a82ff89e36672d85c111a0d681c28f4cc09b49b85fb1a7b0c007c45f6ed02d8e58a998a8c06e935d6c8e19cfb662d5a0f
|
|
7
|
+
data.tar.gz: 95833ce6a3849a8694badf8cd5658e888d901a89f22feac674859818548b2d866dde29a36fbbe317bb610ddd1a0f2b9b6ce6141535ed11dcb53b7085e937f1bc
|
data/README.md
CHANGED
|
@@ -9,6 +9,12 @@ hooks to let you add CI status check information to your commits. These status
|
|
|
9
9
|
checks appear alongside your pull request discussion in github and help with the
|
|
10
10
|
conversation.
|
|
11
11
|
|
|
12
|
+
### Authentication
|
|
13
|
+
|
|
14
|
+
github_informer uses OAuth access tokens to manage access. You should set the
|
|
15
|
+
```GITHUB_AUTH``` environment variable to make the auth token available to the
|
|
16
|
+
gem.
|
|
17
|
+
|
|
12
18
|
### Using the CLI
|
|
13
19
|
|
|
14
20
|
The CLI is the easiest method of capturing your status checks. Simply install
|
|
@@ -49,3 +55,10 @@ script gives comprehensive failure messages:
|
|
|
49
55
|
g.report_end( 0 => [:pass, 'Unit tests were fine: good to merge'],
|
|
50
56
|
1 => [:pending, 'Tests are re-running. Hold off merge.'],
|
|
51
57
|
2..200 => [:fail, 'Unit test failure. Do not merge'] )
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
GithubInformer is available to everyone under the terms of the MIT open source licence.
|
|
62
|
+
Take a look at the LICENSE file in the code.
|
|
63
|
+
|
|
64
|
+
Copyright (c) 2015 BBC
|
data/bin/gh_execute
CHANGED