-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#185829263 : remove rack depdency (#47)
* remove rack depdency up to user to install rack. * add dependency to moesifapi 2.0.2 and less restrictive * Update Gemfile.lock * Update Gemfile.lock
- Loading branch information
1 parent
aa229a6
commit a623c4d
Showing
3 changed files
with
12 additions
and
40 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,15 +1,14 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'moesif_rack' | ||
s.version = '2.0.1' | ||
s.version = '2.0.2' | ||
s.summary = 'moesif_rack' | ||
s.description = 'Rack/Rails middleware to log API calls to Moesif API analytics and monitoring' | ||
s.authors = ['Moesif, Inc', 'Xing Wang'] | ||
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('moesif_api', '~> 2.0.1') | ||
s.add_dependency('rack', '~> 3.0.8', '>= 2.0.0') | ||
s.add_dependency('moesif_api', '~> 2', '>= 2.0.2') | ||
s.required_ruby_version = '>= 2.6' | ||
s.files = Dir['{bin,lib,moesif_capture_outgoing,man,test,spec}/**/*', 'README*', 'LICENSE*'] | ||
s.require_paths = ['lib'] | ||
|