github_issue_stats 0.7.0 → 0.8.0

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
- SHA1:
3
- metadata.gz: 584023f0b309d682ce01d9eefc8c813a84e674a3
4
- data.tar.gz: a9e5debe40753e153a1d596320fb4b5077f2acd3
2
+ SHA256:
3
+ metadata.gz: d25cdfb7662608b213500671a85befa8a145bbb62329193046fc45c86a36bafe
4
+ data.tar.gz: e6d1bd9974d03410667862a2f7e149f1f624ac6eca137a3c1a17b99db091f0d5
5
5
  SHA512:
6
- metadata.gz: 4494ae87500a0ea1d8e57a839d23b2843b8387aa4af3292293b508addade3a0c03f63e4610ba9bea4e640b0964311bf9f5b76346e25ba946ec17d449d96cad35
7
- data.tar.gz: 3acf46b8732045a8f46b15b16543d0f8453593d0e205cac8e522603119cc628a3b743a7f147b381014d64f068ab70861908c53b959e3242578c7c8cfc1663c25
6
+ metadata.gz: 149cf84a3bd29c1a4c907b0d52490fd79bb27d6b727bc5ac2b1fe78f40820db0830c814ed8878aa44b5dee552bef9d05d88e3e76508a0cb4a64d5dafb77e0db8
7
+ data.tar.gz: '03752413094dcf9b997df108d0bf703d02ee76886d57398e9e23f84c860a8de28ebb22a7a209a9434957599d2bd804727eb78aac4565b608b0cdc01b0e4582a8'
@@ -40,7 +40,7 @@ Commander.configure do
40
40
  options.intervals = Array(options.intervals)
41
41
 
42
42
  raise ArgumentError.new("--token is required") if options.token.nil?
43
- raise ArgumentError.new("invalid --token format") unless /\A\h{40}\z/.match(options.token)
43
+ raise ArgumentError.new("invalid --token format") unless (/\A\h{40}\z/.match(options.token) || /\Agh(p|o|u|s|r)_[A-Za-z0-9]+\z/.match(options.token))
44
44
  raise ArgumentError.new("--scopes is required") if options.scopes.nil?
45
45
  raise ArgumentError.new("invalid --intervals format") if options.intervals.nil?
46
46
  raise ArgumentError.new("invalid --output_format") unless /\A(text)|(markdown)\z/.match(options.output_format)
@@ -86,7 +86,7 @@ Commander.configure do
86
86
  options.labels = Array(options.labels)
87
87
 
88
88
  raise ArgumentError.new("--token is required") if options.token.nil?
89
- raise ArgumentError.new("invalid --token format") unless /\A\h{40}\z/.match(options.token)
89
+ raise ArgumentError.new("invalid --token format") unless (/\A\h{40}\z/.match(options.token) || /\Agh(p|o|u|s|r)_[A-Za-z0-9]+\z/.match(options.token))
90
90
  raise ArgumentError.new("--scopes is required") if options.scopes.nil?
91
91
  raise ArgumentError.new("invalid --interval_length format") unless /\A\d[hdwmy]\z/.match(options.interval_length)
92
92
  raise ArgumentError.new("invalid --interval_count format") if options.interval_count.nil? || options.interval_count < 1
@@ -30,7 +30,7 @@ module Enumerable
30
30
  end
31
31
 
32
32
  class GitHubIssueStats
33
- VERSION = "0.7.0"
33
+ VERSION = "0.8.0"
34
34
 
35
35
  attr_accessor :client, # Octokit client for acesing the API
36
36
  :logger, # Logger for writing debugging info
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_issue_stats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Zuzak
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-21 00:00:00.000000000 Z
11
+ date: 2021-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
@@ -58,7 +58,7 @@ dependencies:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: 1.2.4
61
- description:
61
+ description:
62
62
  email: izuzak@gmail.com
63
63
  executables:
64
64
  - github_issue_stats
@@ -71,7 +71,7 @@ homepage: https://github.com/izuzak/github_issue_stats
71
71
  licenses:
72
72
  - MIT
73
73
  metadata: {}
74
- post_install_message:
74
+ post_install_message:
75
75
  rdoc_options: []
76
76
  require_paths:
77
77
  - lib
@@ -86,9 +86,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  - !ruby/object:Gem::Version
87
87
  version: '0'
88
88
  requirements: []
89
- rubyforge_project:
90
- rubygems_version: 2.5.1
91
- signing_key:
89
+ rubygems_version: 3.2.15
90
+ signing_key:
92
91
  specification_version: 4
93
92
  summary: Utility for collecting stats on number of open issues over time in GitHub
94
93
  repositories.