19 lines
576 B
Ruby
19 lines
576 B
Ruby
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
# Maintain your gem's version:
|
|
require "health_check/version"
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |s|
|
|
s.name = "health_check"
|
|
s.version = HealthCheck::VERSION
|
|
s.authors = ["Orbitek"]
|
|
s.email = ["service@orbitek.co"]
|
|
s.homepage = "https://orbitek.co"
|
|
s.summary = "Health Check for orbitek"
|
|
s.description = "Health Check for orbitek"
|
|
s.license = "MIT"
|
|
|
|
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
|
|
end
|