28 lines
1020 B
Ruby
28 lines
1020 B
Ruby
$:.push File.expand_path("lib", __dir__)
|
|
|
|
# Maintain your gem's version:
|
|
require "ruling_timer/version"
|
|
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "ruling_timer"
|
|
spec.version = RulingTimer::VERSION
|
|
spec.authors = ["Bohung Chiu"]
|
|
spec.email = ["bohung@rulingcom.com"]
|
|
spec.homepage = "https://w3.rulingcom.com/"
|
|
spec.summary = "Ruling Timer for users"
|
|
spec.description = "Ruling Timer for users"
|
|
spec.license = "MIT"
|
|
|
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
if spec.respond_to?(:metadata)
|
|
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
|
else
|
|
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
"public gem pushes."
|
|
end
|
|
|
|
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
|
|
|
|
end
|