git-process 1.0.9 → 1.0.10
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.
- data/Gemfile +1 -1
- data/Gemfile.lock +13 -11
- data/lib/git-process/github_client.rb +2 -2
- data/lib/git-process/version.rb +1 -1
- metadata +4 -4
data/Gemfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
source "http://rubygems.org"
|
|
2
2
|
|
|
3
3
|
group :default do
|
|
4
|
-
gem "octokit", "~> 1.
|
|
4
|
+
gem "octokit", "~> 1.22" # GitHub API
|
|
5
5
|
gem "json", "~> 1.7.3"
|
|
6
6
|
gem "trollop", "~> 1.16.2" # CLI options parser
|
|
7
7
|
gem "highline", "1.6.13" # user CLI interaction. There is a bug in 1.6.14
|
data/Gemfile.lock
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: http://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
addressable (2.2
|
|
5
|
-
crack (0.3.
|
|
4
|
+
addressable (2.3.2)
|
|
5
|
+
crack (0.3.2)
|
|
6
6
|
diff-lcs (1.1.3)
|
|
7
|
-
faraday (0.8.
|
|
7
|
+
faraday (0.8.5)
|
|
8
8
|
multipart-post (~> 1.1)
|
|
9
|
-
faraday_middleware (0.
|
|
9
|
+
faraday_middleware (0.9.0)
|
|
10
10
|
faraday (>= 0.7.4, < 0.9)
|
|
11
11
|
hashie (1.2.0)
|
|
12
12
|
highline (1.6.13)
|
|
13
|
-
json (1.7.
|
|
14
|
-
multi_json (1.
|
|
13
|
+
json (1.7.6)
|
|
14
|
+
multi_json (1.5.0)
|
|
15
15
|
multipart-post (1.1.5)
|
|
16
|
-
|
|
16
|
+
netrc (0.7.7)
|
|
17
|
+
octokit (1.22.0)
|
|
17
18
|
addressable (~> 2.2)
|
|
18
19
|
faraday (~> 0.8)
|
|
19
|
-
faraday_middleware (~> 0.
|
|
20
|
+
faraday_middleware (~> 0.9)
|
|
20
21
|
hashie (~> 1.2)
|
|
21
22
|
multi_json (~> 1.3)
|
|
22
|
-
|
|
23
|
+
netrc (~> 0.7.7)
|
|
24
|
+
rake (0.9.6)
|
|
23
25
|
redcarpet (2.1.1)
|
|
24
26
|
rspec (2.10.0)
|
|
25
27
|
rspec-core (~> 2.10.0)
|
|
@@ -30,7 +32,7 @@ GEM
|
|
|
30
32
|
diff-lcs (~> 1.1.3)
|
|
31
33
|
rspec-mocks (2.10.1)
|
|
32
34
|
trollop (1.16.2)
|
|
33
|
-
webmock (1.8.
|
|
35
|
+
webmock (1.8.11)
|
|
34
36
|
addressable (>= 2.2.7)
|
|
35
37
|
crack (>= 0.1.7)
|
|
36
38
|
yard (0.8.2.1)
|
|
@@ -41,7 +43,7 @@ PLATFORMS
|
|
|
41
43
|
DEPENDENCIES
|
|
42
44
|
highline (= 1.6.13)
|
|
43
45
|
json (~> 1.7.3)
|
|
44
|
-
octokit (~> 1.
|
|
46
|
+
octokit (~> 1.22)
|
|
45
47
|
rake (~> 0.9.2)
|
|
46
48
|
redcarpet (~> 2.1.1)
|
|
47
49
|
rspec (~> 2.10.0)
|
|
@@ -73,11 +73,11 @@ class GitHubClient < Octokit::Client
|
|
|
73
73
|
alias :old_request :request
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
def request(method, path, options
|
|
76
|
+
def request(method, path, options={})
|
|
77
77
|
if /api.github.com/ !~ site
|
|
78
78
|
path = "/api/v3/#{path}"
|
|
79
79
|
end
|
|
80
|
-
old_request(method, path, options
|
|
80
|
+
old_request(method, path, options)
|
|
81
81
|
end
|
|
82
82
|
|
|
83
83
|
end
|
data/lib/git-process/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-process
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 10
|
|
10
|
+
version: 1.0.10
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jim Moore
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2013-
|
|
18
|
+
date: 2013-02-06 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|