-
Notifications
You must be signed in to change notification settings - Fork 0
/
is_it_up.gemspec
29 lines (24 loc) · 1.01 KB
/
is_it_up.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
require_relative 'lib/is_it_up/version'
require 'pathname'
Gem::Specification.new do |spec|
spec.name = "is_it_up"
spec.version = IsItUp::VERSION
spec.authors = ["Christopher R. Murphy"]
spec.email = ["cmurphy@customink.com"]
spec.summary = %q{A Ruby gem for adding a simple endpoint to see if your application "is up".}
spec.description = spec.summary
spec.homepage = "https://github.com/customink/is_it_up"
spec.license = "MIT"
spec.files = ::Dir.glob(::Pathname.new(__dir__).join("lib/**/**")).reject do |file|
file.match(%r{^(test|spec|features)/}) || ::File.directory?(file)
end
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.bindir = ["bin"]
spec.add_dependency "rack"
spec.add_development_dependency "rake"
spec.add_development_dependency "json"
spec.add_development_dependency "bundler"
spec.add_development_dependency "minitest"
spec.add_development_dependency "rails"
end