Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update json requirement from ~> 1.8, >= 1.8.3 to >= 1.8.3, < 3.0 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
docusign_esign (2.0.0)
json (~> 1.8, >= 1.8.3)
json (>= 1.8.3, < 3.0)
jwt (~> 1.0, >= 1.5.2)
typhoeus (~> 1.0, >= 1.0.1)

Expand All @@ -25,7 +25,7 @@ GEM
ffi (>= 1.3.0)
ffi (1.11.1)
hashdiff (0.4.0)
json (1.8.6)
json (2.6.1)
jwt (1.5.6)
public_suffix (3.1.0)
rake (12.0.0)
Expand All @@ -45,7 +45,7 @@ GEM
safe_yaml (1.0.5)
sys-uname (1.0.4)
ffi (>= 1.0.0)
typhoeus (1.3.1)
typhoeus (1.4.0)
ethon (>= 0.9.0)
vcr (3.0.3)
webmock (1.24.6)
Expand Down
2 changes: 1 addition & 1 deletion docusign_esign.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |s|

s.add_runtime_dependency 'jwt', '~> 1.0', '>= 1.5.2'
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.3'
s.add_runtime_dependency 'json', '>= 1.8.3', '< 3.0'

s.add_development_dependency 'rspec-mocks', '~> 3.8', '>= 3.8.0'
s.add_development_dependency 'rspec-expectations', '~> 3.8', '>= 3.8.0'
Expand Down