28 lines
1.1 KiB
Ruby
28 lines
1.1 KiB
Ruby
require_relative "lib/fizzy/saas/version"
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "fizzy-saas"
|
|
spec.version = Fizzy::Saas::VERSION
|
|
spec.authors = [ "Mike Dalessio" ]
|
|
spec.email = [ "mike@37signals.com" ]
|
|
spec.homepage = "TODO"
|
|
spec.summary = "TODO: Summary of Fizzy::Saas."
|
|
spec.description = "TODO: Description of Fizzy::Saas."
|
|
|
|
# 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.
|
|
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
|
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
|
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
Dir["{app,config,db,lib,test}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
|
|
end
|
|
|
|
spec.add_dependency "rails", ">= 8.1.0.beta1"
|
|
spec.add_dependency "queenbee"
|
|
spec.add_dependency "rails_structured_logging"
|
|
end
|