cobench 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/cobench +1 -1
- data/features/cli.feature +1 -1
- data/lib/cobench/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38f01cd16fd25848a82626c80951e7543c212bf831728b4aee76ccef53f07032
|
4
|
+
data.tar.gz: '08992ede6cd1bc4725e3864375401b98f5603a229be8972ca97a03a9d742967a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cff4c50d7159dc08ea5b66c241b65345b75ac035ae5bd9c73383af3583652fa9158e62e644d2ec8342793a744527ec5b4b660b24a87a371c0223fc473d39a24b
|
7
|
+
data.tar.gz: b59e54a85681d024634479b19d42264b49f732d04f93588e8a0209b3a5002501215b08d356981abc9b749505a55aa3da50fb5c023715e12f3d8319d3c20eec1e
|
data/bin/cobench
CHANGED
@@ -47,7 +47,7 @@ opts = Slop.parse(args, strict: true, help: true) do |o|
|
|
47
47
|
o.bool '--verbose', 'Print as much log messages as possible'
|
48
48
|
o.bool '--dry', 'Make no real round trips to GitHub'
|
49
49
|
o.integer '--days', 'How many days to measure', default: 7
|
50
|
-
o.
|
50
|
+
o.string '--to', 'Directory where to save all files to', default: './cobench'
|
51
51
|
o.array '--token', 'GitHub authentication token'
|
52
52
|
o.array '--coder', 'GitHub nickname of a coder to track'
|
53
53
|
o.array '--include', 'Mask of GitHub repo to include, e.g. yegor256/*'
|
data/features/cli.feature
CHANGED
@@ -11,7 +11,7 @@ Feature: Simple Reporting
|
|
11
11
|
Then Exit code is zero
|
12
12
|
|
13
13
|
Scenario: Simple report
|
14
|
-
When I run bin/cobench with "--coder yegor256 --verbose --dry"
|
14
|
+
When I run bin/cobench with "--coder yegor256 --verbose --dry --to foo"
|
15
15
|
Then Stdout contains "XML saved to"
|
16
16
|
And Exit code is zero
|
17
17
|
|
data/lib/cobench/version.rb
CHANGED