cobench 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: defa3e4cde7aac6bc7160fd2d7a36a536fa462942e55a6112d967022a3c957a6
4
- data.tar.gz: 7b8f61c26ab4409299ce0a115918c0ba14474e71af44b50366d6df745702588d
3
+ metadata.gz: 38f01cd16fd25848a82626c80951e7543c212bf831728b4aee76ccef53f07032
4
+ data.tar.gz: '08992ede6cd1bc4725e3864375401b98f5603a229be8972ca97a03a9d742967a'
5
5
  SHA512:
6
- metadata.gz: 65c63f32bf1b00544287310255c98f0ccc3bb914e617d752698061272e976bc32b311f78ece515515d9cb3db502ef035fe86c26b4d84a863e657afa0cbbec7c7
7
- data.tar.gz: be70f5224f7fc676efac529f84c0839408fa2182f1926e1fc9e168b1aa7beef252d0ab493f9e6766d34fbe7872bfa85ea1020128eaaf9f0bdf4fee8c022eb59f
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.array '--to', 'Directory where to save all files to', default: './cobench'
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
 
@@ -23,5 +23,5 @@
23
23
  # Copyright:: Copyright (c) 2022 Yegor Bugayenko
24
24
  # License:: MIT
25
25
  module Cobench
26
- VERSION = '0.0.1'.freeze
26
+ VERSION = '0.0.2'.freeze
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobench
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko