-
Notifications
You must be signed in to change notification settings - Fork 1
/
puma-stats.gemspec
28 lines (22 loc) · 1 KB
/
puma-stats.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
25
26
27
28
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'puma/stats/version'
Gem::Specification.new do |spec|
spec.authors = ['Tom Kishel']
spec.description = "A puma plugin to expose Puma's internal statistics"
spec.email = '[email protected]'
spec.homepage = 'https://github.com/tkishel/puma-stats'
spec.license = 'MIT'
spec.name = 'puma-stats'
spec.require_paths = ['lib']
spec.summary = "Expose Puma's internal statistics"
spec.version = Puma::Stats::VERSION
files = %w[CHANGELOG.md LICENSE README.md Rakefile lib]
spec.files = `git ls-files -z #{files.join(' ')}`.split("\0")
spec.add_runtime_dependency 'puma', '~> 3.0'
spec.add_development_dependency 'bundler', '~> 0'
spec.add_development_dependency 'minitest', '~> 0'
spec.add_development_dependency 'rake', '~> 0'
spec.add_development_dependency 'rubocop', '>= 0.49.0'
end