-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrack-server_status.gemspec
30 lines (24 loc) · 1.18 KB
/
rack-server_status.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
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rack/server_status/version'
Gem::Specification.new do |spec|
spec.name = "rack-server_status"
spec.version = Rack::ServerStatus::VERSION
spec.authors = ["SpringMT"]
spec.email = ["[email protected]"]
#spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
spec.required_rubygems_version = ">= 2.0"
spec.summary = %q{Show server status}
spec.description = %q{Show server status}
spec.homepage = "https://github.com/SpringMT/rack-server_status"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features|examples)/})
spec.require_paths = ["lib"]
spec.add_dependency "worker_scoreboard"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec"
end