-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmoesif_rack.gemspec
executable file
·24 lines (24 loc) · 1.11 KB
/
moesif_rack.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
s.name = 'moesif_rack'
s.version = '2.2.3'
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', '>= 2.1.0')
s.required_ruby_version = '>= 2.6'
s.files = Dir['{bin,lib,moesif_capture_outgoing,man,test,spec}/**/*', 'README*', 'LICENSE*']
s.require_paths = ['lib']
s.metadata = {
"bug_tracker_uri" => "https://github.com/Moesif/moesif-rack/issues",
"changelog_uri" => "https://github.com/Moesif/moesif-rack/releases",
"documentation_uri" => "https://www.moesif.com/docs/server-integration/rack/",
"homepage_uri" => "https://www.moesif.com",
"mailing_list_uri" => "https://github.com/Moesif/moesif-rack",
"source_code_uri" => "https://github.com/Moesif/moesif-rack",
"wiki_uri" => "https://github.com/Moesif/moesif-rack"
}
end