docusign_esign 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/docusign_esign.gemspec +3 -3
- data/lib/docusign_esign/version.rb +1 -1
- data/tests/Gemfile +1 -1
- data/tests/Gemfile.lock +5 -9
- data/tests/spec/unit_tests_using_jwt_spec.rb +7 -7
- metadata +4 -5
- data/docusign_esign-1.0.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46e686798b1d6ea187e72ca60a25a21dafb04ed9
|
4
|
+
data.tar.gz: 67196887f2fa606a0d538a54638dafec6f8f193d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15fbef465ced195900ec1de43bc2060b2f0acfa7e5ef0eb44713c297395cec8c746924aad060894d0594469ccc87c5ae52dbb249ae5665993f879ba8b4eff171
|
7
|
+
data.tar.gz: 9449527671ec7b1ec679eacb642a6bacc0644801c31d100053ba2145eb0275e21d728f7971729166b3b53976948152a154801757dfa56843bdb778dc9a46ebc9
|
data/README.md
CHANGED
data/docusign_esign.gemspec
CHANGED
@@ -18,14 +18,14 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.name = "docusign_esign"
|
19
19
|
s.version = DocuSign_eSign::VERSION
|
20
20
|
s.platform = Gem::Platform::RUBY
|
21
|
-
s.authors = ["
|
21
|
+
s.authors = ["DocuSign"]
|
22
22
|
s.email = ["devcenter@docusign.com"]
|
23
|
-
s.homepage = "https://github.com/
|
23
|
+
s.homepage = "https://github.com/docusign/docusign-ruby-client"
|
24
24
|
s.summary = "DocuSign REST API Ruby Gem"
|
25
25
|
s.description = "The DocuSign package makes integrating DocuSign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-ruby-client repository. Join the eSign revolution!"
|
26
26
|
# TODO uncommnet and update below with a proper license
|
27
27
|
#s.license = "Apache 2.0"
|
28
|
-
s.required_ruby_version = ">= 1
|
28
|
+
s.required_ruby_version = ">= 2.1"
|
29
29
|
|
30
30
|
s.add_dependency 'jwt', '~> 2.0', '>= 2.0.0'
|
31
31
|
|
data/tests/Gemfile
CHANGED
data/tests/Gemfile.lock
CHANGED
@@ -1,15 +1,11 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../
|
3
|
-
specs:
|
4
|
-
docusign_esign (1.0.0)
|
5
|
-
json (~> 1.8, >= 1.8.3)
|
6
|
-
jwt (~> 2.0, >= 2.0.0)
|
7
|
-
typhoeus (~> 1.0, >= 1.0.1)
|
8
|
-
|
9
1
|
GEM
|
10
2
|
remote: https://rubygems.org/
|
11
3
|
specs:
|
12
4
|
diff-lcs (1.3)
|
5
|
+
docusign_esign (0.0.1)
|
6
|
+
json (~> 1.8, >= 1.8.3)
|
7
|
+
jwt (~> 2.0, >= 2.0.0)
|
8
|
+
typhoeus (~> 1.0, >= 1.0.1)
|
13
9
|
ethon (0.10.1)
|
14
10
|
ffi (>= 1.3.0)
|
15
11
|
ffi (1.9.18)
|
@@ -35,7 +31,7 @@ PLATFORMS
|
|
35
31
|
ruby
|
36
32
|
|
37
33
|
DEPENDENCIES
|
38
|
-
docusign_esign
|
34
|
+
docusign_esign
|
39
35
|
rspec
|
40
36
|
|
41
37
|
BUNDLED WITH
|
@@ -107,18 +107,18 @@ describe 'DocuSign Ruby Client Tests' do
|
|
107
107
|
# run before each test
|
108
108
|
$host = "https://demo.docusign.net/restapi"
|
109
109
|
|
110
|
-
$integrator_key = '
|
111
|
-
$user_id = '
|
112
|
-
$expires_in_seconds = 3600
|
110
|
+
$integrator_key = '[REQUIRED]'
|
111
|
+
$user_id = '[REQUIRED]'
|
112
|
+
$expires_in_seconds = [REQUIRED] #3600 - 1 hour
|
113
113
|
$auth_server = 'account-d.docusign.com'
|
114
|
-
$private_key_filename = '
|
114
|
+
$private_key_filename = '[REQUIRED]'
|
115
115
|
|
116
116
|
|
117
|
-
$recipient_email = "
|
118
|
-
$recipient_name = "
|
117
|
+
$recipient_email = "[REQUIRED]"
|
118
|
+
$recipient_name = "[REQUIRED]"
|
119
119
|
|
120
120
|
# Required for embedded signing url
|
121
|
-
$client_user_id = '
|
121
|
+
$client_user_id = '[REQUIRED]'
|
122
122
|
$return_url = 'https://www.docusign.com/devcenter'
|
123
123
|
$authentication_method = 'email'
|
124
124
|
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docusign_esign
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- DocuSign
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -545,7 +545,6 @@ files:
|
|
545
545
|
- docs/WorkspaceUserAuthorization.md
|
546
546
|
- docs/WorkspacesApi.md
|
547
547
|
- docs/Zip.md
|
548
|
-
- docusign_esign-1.0.0.gem
|
549
548
|
- docusign_esign.gemspec
|
550
549
|
- git_push.sh
|
551
550
|
- lib/docusign_esign.rb
|
@@ -1209,7 +1208,7 @@ files:
|
|
1209
1208
|
- tests/rsa_keys/public.pem
|
1210
1209
|
- tests/spec/unit_tests_spec.rb
|
1211
1210
|
- tests/spec/unit_tests_using_jwt_spec.rb
|
1212
|
-
homepage: https://github.com/
|
1211
|
+
homepage: https://github.com/docusign/docusign-ruby-client
|
1213
1212
|
licenses: []
|
1214
1213
|
metadata: {}
|
1215
1214
|
post_install_message:
|
@@ -1220,7 +1219,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1220
1219
|
requirements:
|
1221
1220
|
- - ">="
|
1222
1221
|
- !ruby/object:Gem::Version
|
1223
|
-
version: '1
|
1222
|
+
version: '2.1'
|
1224
1223
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1225
1224
|
requirements:
|
1226
1225
|
- - ">="
|
data/docusign_esign-1.0.0.gem
DELETED
Binary file
|