trellish 0.0.11 → 0.0.12
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/lib/trellish/git.rb +14 -9
- data/lib/trellish/version.rb +1 -1
- metadata +2 -2
data/lib/trellish/git.rb
CHANGED
|
@@ -13,15 +13,20 @@ module Trellish
|
|
|
13
13
|
faraday.request :url_encoded
|
|
14
14
|
faraday.adapter ::Faraday.default_adapter
|
|
15
15
|
end
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
begin
|
|
17
|
+
response = conn.post do |req|
|
|
18
|
+
req.url "/repos/#{git_repository_owner}/#{git_repository_name}/pulls"
|
|
19
|
+
req.headers['Content-Type'] = 'application/json'
|
|
20
|
+
req.headers['Authorization'] = "token #{Trellish.config[:github_oauth_token]}"
|
|
21
|
+
req.body = {
|
|
22
|
+
title: @card.name,
|
|
23
|
+
base: Trellish.config[:git_base_branch],
|
|
24
|
+
head: "#{git_repository_owner}:#{current_git_branch}"
|
|
25
|
+
}.to_json
|
|
26
|
+
end
|
|
27
|
+
rescue Faraday::Error::ConnectionFailed => e
|
|
28
|
+
Trellish.logger.error "Failed to connect to Github. Please check your github_oauth_token parameter in trellish.yml, or regenerate it if you continue to have problems. Original error: #{e.message}"
|
|
29
|
+
exit
|
|
25
30
|
end
|
|
26
31
|
@github_pull_request_url = JSON.parse(response.body)["html_url"]
|
|
27
32
|
end
|
data/lib/trellish/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trellish
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-11-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: oauth2
|