-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeekapi.gemspec
More file actions
28 lines (22 loc) · 1.02 KB
/
peekapi.gemspec
File metadata and controls
28 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
require_relative 'lib/peekapi/version'
Gem::Specification.new do |spec|
spec.name = 'peekapi'
spec.version = PeekApi::VERSION
spec.authors = ['PeekAPI']
spec.license = 'MIT'
spec.summary = 'Zero-dependency Ruby SDK for PeekAPI'
spec.description = 'Rack middleware and client for tracking API usage analytics. ' \
'Works with Rails, Sinatra, Hanami, and any Rack-compatible framework.'
spec.homepage = 'https://github.com/peekapi-dev/sdk-ruby'
spec.required_ruby_version = '>= 3.1'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['bug_tracker_uri'] = 'https://github.com/peekapi-dev/community/issues'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['lib/**/*.rb', 'LICENSE', 'README.md']
spec.require_paths = ['lib']
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'webrick', '~> 1.8'
end