rubhub 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/github/issues/issues.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e188090e94b9df32b4131d737a4d80279b9ff4af
|
4
|
+
data.tar.gz: cac3ec2feaa8cbb150a141ddd5600f89ef9efe4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e58d3b8457bcda9e23d8e76da147defa79da2a7c116d018f2f5398673853d85f771529ae9ff266b420b49f553bc2aca7291a61dc67e03df87f12214b110517b4
|
7
|
+
data.tar.gz: 2f479303173c0f1be3d6b53c87ec23c1af27399d233fdbd33bb98c359b9260d8c4128269eb4a6e763a5e607cb0faff63120f0e6624eaace1a19e93f5bd3e509f
|
data/lib/github/issues/issues.rb
CHANGED
@@ -37,9 +37,10 @@ class Issues
|
|
37
37
|
:sort => sort,
|
38
38
|
:direction => direction,
|
39
39
|
:since => since,
|
40
|
-
:milestone => milestone
|
41
|
-
:user => user
|
40
|
+
:milestone => milestone
|
42
41
|
}
|
42
|
+
puts "user: #{user}\n"
|
43
|
+
puts "repo: #{repo}\n"
|
43
44
|
params = @github.removeEmptyParams(params)
|
44
45
|
url = 'repos/%s/%s/issues?%s' % [user, repo, @github.parameterize(params)]
|
45
46
|
@github.get(url)
|