lita-github_pr_list 0.0.5 → 0.0.6
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/.travis.yml +3 -0
- data/lib/lita/github_pr_list/pull_request.rb +1 -1
- data/lib/lita/github_pr_list/version.rb +1 -1
- data/lita-github_pr_list.gemspec +1 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fe4341519d7307803860d6d266ec745118141a3
|
|
4
|
+
data.tar.gz: e044912b5ea54909f122a13277d8656529cdf926
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d90b5f7b60eecf53e9f864ea74ca367546f7b99aac21c3354a8d3616890958a07d08bf7b7ec371de040e4e34d18475bef538a93cd5f43dc630367e0d7826ab7
|
|
7
|
+
data.tar.gz: e6b6196cef179511b64a4cff1256017aaddc059bf7a21ced5df4a64660551177644a73776cf34f20e4a482774a3620c45160de29a2e2763fc36ef67c1ce35ab1
|
data/.travis.yml
ADDED
|
@@ -27,7 +27,7 @@ module Lita
|
|
|
27
27
|
private
|
|
28
28
|
def get_pull_requests
|
|
29
29
|
# Grab the issues and sort out the pull request issues by repos name
|
|
30
|
-
issues = github_client.org_issues(github_organization,
|
|
30
|
+
issues = github_client.org_issues(github_organization, filter: 'all')
|
|
31
31
|
issues.sort! { |a,b| a.repository.name.downcase <=> b.repository.name.downcase }
|
|
32
32
|
|
|
33
33
|
issues.each do |i|
|
data/lita-github_pr_list.gemspec
CHANGED
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = %q{List open pull requests for an organization.}
|
|
13
13
|
spec.homepage = "https://github.com/amaabca/lita-github_pr_list"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
+
spec.metadata = { "lita_plugin_type" => "handler" }
|
|
15
16
|
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0")
|
|
17
18
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lita-github_pr_list
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael van den Beuken
|
|
@@ -13,7 +13,7 @@ authors:
|
|
|
13
13
|
autorequire:
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
|
-
date: 2014-07-
|
|
16
|
+
date: 2014-07-22 00:00:00.000000000 Z
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: lita
|
|
@@ -144,6 +144,7 @@ files:
|
|
|
144
144
|
- ".gitignore"
|
|
145
145
|
- ".hound.yml"
|
|
146
146
|
- ".rspec"
|
|
147
|
+
- ".travis.yml"
|
|
147
148
|
- Gemfile
|
|
148
149
|
- LICENSE
|
|
149
150
|
- README.md
|
|
@@ -180,7 +181,8 @@ files:
|
|
|
180
181
|
homepage: https://github.com/amaabca/lita-github_pr_list
|
|
181
182
|
licenses:
|
|
182
183
|
- MIT
|
|
183
|
-
metadata:
|
|
184
|
+
metadata:
|
|
185
|
+
lita_plugin_type: handler
|
|
184
186
|
post_install_message:
|
|
185
187
|
rdoc_options: []
|
|
186
188
|
require_paths:
|