d1500ad4ec
- Rename script from apns-dev to push-dev (handles both APNs and FCM) - Fetch credentials from Deploy/Fizzy Production (same as Kamal) - Use _B64 env vars to avoid escaping issues with multiline keys - Update bin/dev flag from --apns to --push Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1.7 KiB
Ruby
44 lines
1.7 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 = "https://github.com/basecamp/fizzy-saas"
|
|
spec.summary = "37signals SaaS companion for Fizzy"
|
|
spec.description = "Rails engine that bundles with Fizzy to offer the hosted version at https://app.fizzy.do"
|
|
spec.license = "O'Saasy"
|
|
|
|
# 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"] = "https://rubygems.org"
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
spec.metadata["source_code_uri"] = "https://github.com/basecamp/fizzy-saas"
|
|
|
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
Dir["{app,config,db,lib,exe}/**/*", "test/fixtures/**/*", "LICENSE.md", "Rakefile", "README.md"]
|
|
end
|
|
|
|
spec.bindir = "exe"
|
|
spec.executables = [ "push-dev", "stripe-dev" ]
|
|
|
|
spec.add_dependency "rails", ">= 8.1.0.beta1"
|
|
spec.add_dependency "queenbee"
|
|
spec.add_dependency "rails_structured_logging"
|
|
spec.add_dependency "sentry-ruby"
|
|
spec.add_dependency "sentry-rails"
|
|
spec.add_dependency "yabeda"
|
|
spec.add_dependency "yabeda-actioncable"
|
|
spec.add_dependency "yabeda-activejob"
|
|
spec.add_dependency "yabeda-gc"
|
|
spec.add_dependency "yabeda-http_requests"
|
|
spec.add_dependency "yabeda-prometheus-mmap"
|
|
spec.add_dependency "yabeda-puma-plugin"
|
|
spec.add_dependency "yabeda-rails", ">= 0.10"
|
|
spec.add_dependency "prometheus-client-mmap", "~> 1.4.0"
|
|
spec.add_dependency "console1984"
|
|
spec.add_dependency "audits1984"
|
|
end
|