-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#185829263 : Allow faraday from 1.x (#20)
* allow faraday from 1x * in faraday 1.0 retry and net_http_persistent is bundled in * bump version to minor 2.1.0 since supporting faraday 1.0 is adding new feature * remove uneeded if else * remove unneeded space * remove uneeded print * clarify comment
- Loading branch information
1 parent
9359b8d
commit 449eedf
Showing
3 changed files
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'moesif_api' | ||
s.version = '2.0.2' | ||
s.version = '2.1.0' | ||
s.summary = 'moesif_api' | ||
s.description = 'Collection/Data Ingestion API' | ||
s.authors = ['Moesif, Inc', 'Derric Gilling'] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://moesif.com' | ||
s.license = 'Apache-2.0' | ||
s.add_development_dependency('test-unit', '~> 3.5', '>= 3.5.0') | ||
s.add_dependency('faraday', '~> 2') | ||
s.add_dependency('faraday-net_http_persistent', '~> 2') | ||
s.add_dependency('faraday-retry', '~> 2') | ||
s.add_dependency('faraday', '>= 1.0', '< 3.0') | ||
s.add_dependency('faraday-net_http_persistent', '< 3.0') | ||
s.add_dependency('faraday-retry', '< 3.0') | ||
s.add_dependency('json_mapper', '~> 0') | ||
s.add_dependency('net-http-persistent', '~> 4') | ||
s.required_ruby_version = '>= 2.6' | ||
|