jira-ruby 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/jira/client.rb +8 -2
- data/lib/jira/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 541b1fe24d3e52142ac5d00e028cc7a378e396b7ae4b3fb279959d4d65ceb855
|
4
|
+
data.tar.gz: 2800df3cd3d0cf68e55ad789872fd6bc261a1134b44a66c796a48c5d018072a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 218b645e82b788254576bb925fa2061a5f023484be5100e67622a0072edd03b6dabda04206ea394a06e630cb918f98bb74d39fc2e99245d64c71cc42b160043d
|
7
|
+
data.tar.gz: 88d34f8904a0f1954981ca75b2dae6475c2159d373f384b7cba32a2bd7988070cf9b9ba286975882b652d56c5fbab7b36373d8edd5633e6056a903ac54d50838
|
data/lib/jira/client.rb
CHANGED
@@ -14,6 +14,7 @@ module JIRA
|
|
14
14
|
# :request_token_path => "/plugins/servlet/oauth/request-token",
|
15
15
|
# :authorize_path => "/plugins/servlet/oauth/authorize",
|
16
16
|
# :access_token_path => "/plugins/servlet/oauth/access-token",
|
17
|
+
# :private_key => nil,
|
17
18
|
# :private_key_file => "rsakey.pem",
|
18
19
|
# :rest_base_path => "/rest/api/2",
|
19
20
|
# :consumer_key => nil,
|
@@ -33,7 +34,9 @@ module JIRA
|
|
33
34
|
# :use_client_cert => false,
|
34
35
|
# :read_timeout => nil,
|
35
36
|
# :http_debug => false,
|
36
|
-
# :shared_secret => nil
|
37
|
+
# :shared_secret => nil,
|
38
|
+
# :cert_path => nil,
|
39
|
+
# :key_path => nil
|
37
40
|
#
|
38
41
|
# See the JIRA::Base class methods for all of the available methods on these accessor
|
39
42
|
# objects.
|
@@ -59,6 +62,7 @@ module JIRA
|
|
59
62
|
:request_token_path,
|
60
63
|
:authorize_path,
|
61
64
|
:access_token_path,
|
65
|
+
:private_key,
|
62
66
|
:private_key_file,
|
63
67
|
:rest_base_path,
|
64
68
|
:consumer_key,
|
@@ -80,7 +84,9 @@ module JIRA
|
|
80
84
|
:http_debug,
|
81
85
|
:issuer,
|
82
86
|
:base_url,
|
83
|
-
:shared_secret
|
87
|
+
:shared_secret,
|
88
|
+
:cert_path,
|
89
|
+
:key_path
|
84
90
|
].freeze
|
85
91
|
|
86
92
|
DEFAULT_OPTIONS = {
|
data/lib/jira/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jira-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SUMO Heavy Industries
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-07-
|
12
|
+
date: 2020-07-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|