Skip to content

Commit

Permalink
Update mailosaur.gemspec
Browse files Browse the repository at this point in the history
This restructures the version requirements of the runtime dependencies. It permits a more looser version-set for both the native json and faraday gems.
  • Loading branch information
luke-hill authored and jm-mailosaur committed Aug 10, 2021
1 parent 3d125f4 commit 8a0bea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mailosaur.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Gem::Specification.new do |s|
}

s.files = Dir['LICENSE', 'README.md', 'lib/mailosaur.rb', 'lib/**/*']
s.add_dependency 'faraday', '<= 1.0', '>= 0.9.0'
s.add_dependency 'json', '<= 3.0', '>= 1.7.5'
s.add_dependency 'faraday', '>= 0.9', '< 2'
s.add_dependency 'json', '>= 1.7.5', '< 4'

s.add_development_dependency 'mail', '~> 2.6', '>= 2.6.1'
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3.0'
Expand Down

0 comments on commit 8a0bea5

Please sign in to comment.