ghee 0.14.19 → 0.14.20
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/ghee.gemspec +2 -2
- data/lib/ghee/api/issues.rb +2 -2
- data/lib/ghee/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 159a60f71f17830d6f2db1b6d4eca19910cb1f19
|
|
4
|
+
data.tar.gz: 6bba5d09f642b3db0d9cd8e2bfd41457dfe945f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81cf9af3be3f3c7672972b5b34b1eea5f5bda7a6fbeb772e1b920fb01a25e9ea80e06110669c992954fd301429e198dc5513542e762f2a2adb4c7cab2bbfa1bd
|
|
7
|
+
data.tar.gz: 7124953aea1149c46c334c6e9e8f12c88c3d07d18748ed6ccecc99f61897cb7341b5822203ca5a07da3e333585775322e8e4f7da997b4e2605fe1ed8e269c5b0
|
data/ghee.gemspec
CHANGED
|
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.name = "ghee"
|
|
7
7
|
s.version = Ghee::VERSION
|
|
8
8
|
s.authors = ["Ryan Rauh","Jonathan Hoyt"]
|
|
9
|
-
s.email = ["
|
|
10
|
-
s.homepage = "
|
|
9
|
+
s.email = ["support@huboard.com"]
|
|
10
|
+
s.homepage = "https://github.com/huboard/ghee"
|
|
11
11
|
s.summary = %q{Access Github in ruby.}
|
|
12
12
|
s.description = %q{A complete, simple, and intuitive ruby API for all things Github.}
|
|
13
13
|
|
data/lib/ghee/api/issues.rb
CHANGED
|
@@ -136,9 +136,9 @@ class Ghee
|
|
|
136
136
|
#
|
|
137
137
|
# Returns json
|
|
138
138
|
#
|
|
139
|
-
def issues(number=nil)
|
|
139
|
+
def issues(number=nil, &block)
|
|
140
140
|
prefix = (!number.is_a?(Hash) and number) ? "#{path_prefix}/issues/#{number}" : "#{path_prefix}/issues"
|
|
141
|
-
issue = Ghee::API::Repos::Issues::Proxy.new(connection, prefix, number)
|
|
141
|
+
issue = Ghee::API::Repos::Issues::Proxy.new(connection, prefix, number, &block)
|
|
142
142
|
issue.repo = self
|
|
143
143
|
issue
|
|
144
144
|
end
|
data/lib/ghee/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ghee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Rauh
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2016-05-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: faraday
|
|
@@ -223,7 +223,7 @@ dependencies:
|
|
|
223
223
|
version: '0'
|
|
224
224
|
description: A complete, simple, and intuitive ruby API for all things Github.
|
|
225
225
|
email:
|
|
226
|
-
-
|
|
226
|
+
- support@huboard.com
|
|
227
227
|
executables:
|
|
228
228
|
- ghee
|
|
229
229
|
extensions: []
|
|
@@ -296,7 +296,7 @@ files:
|
|
|
296
296
|
- spec/settings.yml.sample
|
|
297
297
|
- spec/spec.opts
|
|
298
298
|
- spec/spec_helper.rb
|
|
299
|
-
homepage:
|
|
299
|
+
homepage: https://github.com/huboard/ghee
|
|
300
300
|
licenses: []
|
|
301
301
|
metadata: {}
|
|
302
302
|
post_install_message:
|