Skip to content

Commit 0b5986f

Browse files
committed
Updated version of octokit to 1.22 and upped proj version to 1.0.10.
1 parent 33478a1 commit 0b5986f

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source "http://rubygems.org"
22

33
group :default do
4-
gem "octokit", "~> 1.4.0" # GitHub API
4+
gem "octokit", "~> 1.22" # GitHub API
55
gem "json", "~> 1.7.3"
66
gem "trollop", "~> 1.16.2" # CLI options parser
77
gem "highline", "1.6.13" # user CLI interaction. There is a bug in 1.6.14

Gemfile.lock

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
GEM
22
remote: http://rubygems.org/
33
specs:
4-
addressable (2.2.8)
5-
crack (0.3.1)
4+
addressable (2.3.2)
5+
crack (0.3.2)
66
diff-lcs (1.1.3)
7-
faraday (0.8.1)
7+
faraday (0.8.5)
88
multipart-post (~> 1.1)
9-
faraday_middleware (0.8.8)
9+
faraday_middleware (0.9.0)
1010
faraday (>= 0.7.4, < 0.9)
1111
hashie (1.2.0)
1212
highline (1.6.13)
13-
json (1.7.3)
14-
multi_json (1.3.6)
13+
json (1.7.6)
14+
multi_json (1.5.0)
1515
multipart-post (1.1.5)
16-
octokit (1.4.0)
16+
netrc (0.7.7)
17+
octokit (1.22.0)
1718
addressable (~> 2.2)
1819
faraday (~> 0.8)
19-
faraday_middleware (~> 0.8)
20+
faraday_middleware (~> 0.9)
2021
hashie (~> 1.2)
2122
multi_json (~> 1.3)
22-
rake (0.9.2.2)
23+
netrc (~> 0.7.7)
24+
rake (0.9.6)
2325
redcarpet (2.1.1)
2426
rspec (2.10.0)
2527
rspec-core (~> 2.10.0)
@@ -30,7 +32,7 @@ GEM
3032
diff-lcs (~> 1.1.3)
3133
rspec-mocks (2.10.1)
3234
trollop (1.16.2)
33-
webmock (1.8.7)
35+
webmock (1.8.11)
3436
addressable (>= 2.2.7)
3537
crack (>= 0.1.7)
3638
yard (0.8.2.1)
@@ -41,7 +43,7 @@ PLATFORMS
4143
DEPENDENCIES
4244
highline (= 1.6.13)
4345
json (~> 1.7.3)
44-
octokit (~> 1.4.0)
46+
octokit (~> 1.22)
4547
rake (~> 0.9.2)
4648
redcarpet (~> 2.1.1)
4749
rspec (~> 2.10.0)

lib/git-process/github_client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ def site=(new_site)
7373
alias :old_request :request
7474

7575

76-
def request(method, path, options, version, authenticate, raw, force_urlencoded)
76+
def request(method, path, options={})
7777
if /api.github.com/ !~ site
7878
path = "/api/v3/#{path}"
7979
end
80-
old_request(method, path, options, version, authenticate, raw, force_urlencoded)
80+
old_request(method, path, options)
8181
end
8282

8383
end

lib/git-process/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module GitProc
1414
module Version
1515
MAJOR = 1
1616
MINOR = 0
17-
PATCH = 9
17+
PATCH = 10
1818
BUILD = nil
1919

2020
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')

0 commit comments

Comments
 (0)