git_pr 0.0.10 → 0.0.11
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/bin/git-pr +1 -1
- data/lib/git_pr/github.rb +1 -1
- data/lib/git_pr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d3e86479d7a378c82490d876c0de563037ed4b5
|
|
4
|
+
data.tar.gz: a200d1f0ca414a3c01aea0dcee796f66789f3ae1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 721c45f6720dd9fe61c72516e5a4b84af815ff7881da3793b35f743b19eb9dc87f490900321270159fc5866362b15acebf2098588ba5beb21afc0360f0a6adb8
|
|
7
|
+
data.tar.gz: 2fc9eb10f1251f4c6843e86751f5bd86a66e6e5e1ec58ff7b9c6dbc518f75523f9e3e059881863c1f6ba637704f681f4110a47d8786facea9f8a654a02be2be6
|
data/bin/git-pr
CHANGED
|
@@ -217,7 +217,7 @@ when "merge"
|
|
|
217
217
|
GitPr::merge_pull_cleanly git, pull
|
|
218
218
|
|
|
219
219
|
when "list"
|
|
220
|
-
pulls = Octokit.pulls "#{github_project}
|
|
220
|
+
pulls = Octokit.pulls "#{github_project}"
|
|
221
221
|
if options.list.user
|
|
222
222
|
pulls = pulls.select { |p| p[:user][:login] == options.list.user }
|
|
223
223
|
end
|
data/lib/git_pr/github.rb
CHANGED
|
@@ -140,7 +140,7 @@ module GitPr
|
|
|
140
140
|
end
|
|
141
141
|
|
|
142
142
|
def self.find_or_prompt_for_pull_request github_project, pull_request
|
|
143
|
-
pulls = Octokit.pulls "#{github_project}
|
|
143
|
+
pulls = Octokit.pulls "#{github_project}"
|
|
144
144
|
unless pulls.length > 0
|
|
145
145
|
puts "No open pull requests found for '#{github_project}'.".yellow
|
|
146
146
|
exit
|
data/lib/git_pr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git_pr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Sharon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|