soopr 0.2.0 → 0.2.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/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/bin/soopr +1 -1
- data/exe/soopr +1 -1
- data/lib/soopr/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb507808c662e8cb4f3d84e8c8413efc4cec2877
|
|
4
|
+
data.tar.gz: 7fe88fbf022009f9d3391dd365a431742635eaf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 625cd129c9cb8c73600c640c92e7f124997f32be3e94c81b13a37f5f704df43ae2f43a1e8d12b40d4434785889a6084f7c108b6eff4641c0f9c0d8cc0886a534
|
|
7
|
+
data.tar.gz: d39098543568843a941c5851ee0700e43b523d2217c80e237fbe3009343caef03252425f0d04d7d58ca62ada14a9bba4b3f1bf5ea377c134d2115800ba7b4ef3
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# SOOPR
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/soopr)
|
|
4
|
+
|
|
3
5
|
SOOPR offers open pull requests
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
@@ -14,7 +16,7 @@ machine api.github.com
|
|
|
14
16
|
password [password or oauth token]
|
|
15
17
|
```
|
|
16
18
|
|
|
17
|
-
You can create a personal token to be used at https://github.com/settings/tokens
|
|
19
|
+
You can create a personal token to be used at https://github.com/settings/tokens and the `repo` scope must be selected.
|
|
18
20
|
|
|
19
21
|
## Usage
|
|
20
22
|
|
data/bin/soopr
CHANGED
|
@@ -32,10 +32,10 @@ class App
|
|
|
32
32
|
main do |organisation, team|
|
|
33
33
|
Octokit.configure do |c|
|
|
34
34
|
c.netrc = true
|
|
35
|
+
c.auto_paginate = true
|
|
35
36
|
end
|
|
36
37
|
|
|
37
38
|
logger.debug "Starting to fetch teams for organisation '#{organisation}'"
|
|
38
|
-
|
|
39
39
|
teams = Octokit.organization_teams organisation
|
|
40
40
|
team_resource = teams.find{ |t| t.name == team}
|
|
41
41
|
if team_resource.nil?
|
data/exe/soopr
CHANGED
|
@@ -32,10 +32,10 @@ class App
|
|
|
32
32
|
main do |organisation, team|
|
|
33
33
|
Octokit.configure do |c|
|
|
34
34
|
c.netrc = true
|
|
35
|
+
c.auto_paginate = true
|
|
35
36
|
end
|
|
36
37
|
|
|
37
38
|
logger.debug "Starting to fetch teams for organisation '#{organisation}'"
|
|
38
|
-
|
|
39
39
|
teams = Octokit.organization_teams organisation
|
|
40
40
|
team_resource = teams.find{ |t| t.name == team}
|
|
41
41
|
if team_resource.nil?
|
data/lib/soopr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: soopr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nils Blum-Oeste
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-06-
|
|
11
|
+
date: 2016-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -169,3 +169,4 @@ signing_key:
|
|
|
169
169
|
specification_version: 4
|
|
170
170
|
summary: Simple CLI tool to list open pull requests of a Github team.
|
|
171
171
|
test_files: []
|
|
172
|
+
has_rdoc:
|