964915bc66
Fizzy is now free. Remove the entire Stripe billing system, subscription management, and card/storage limit enforcement. Removes from saas/: Plan model, Account::Billing, Account::Subscription, Account::Limited, Account::OverriddenLimits, Account::BillingWaiver, all subscription/billing controllers and views, Stripe webhook handler, card creation/publishing limit enforcement, admin account override UI, usage report rake task, and all related tests. Removes from main app: Fizzy.saas? guards for subscription panel, SaaS card footer override, near-limit notices, and saas.css stylesheet. Adds migration to drop billing tables from the SaaS database. Non-billing SaaS features (push notifications, signup, authorization, telemetry, console1984/audits1984) are preserved.
31 lines
1012 B
Plaintext
31 lines
1012 B
Plaintext
# This Gemfile extends the base Gemfile with SaaS-specific dependencies
|
|
eval_gemfile "Gemfile"
|
|
|
|
git_source(:bc) { |repo| "https://github.com/basecamp/#{repo}" }
|
|
|
|
gem "activeresource", require: "active_resource"
|
|
gem "actionpack-xml_parser" # needed by queenbee for XML request body parsing
|
|
gem "queenbee", bc: "queenbee-plugin"
|
|
gem "fizzy-saas", path: "saas"
|
|
gem "console1984", bc: "console1984"
|
|
gem "audits1984", bc: "audits1984", branch: "flavorjones/coworker-api"
|
|
|
|
# Native push notifications (iOS/Android)
|
|
gem "action_push_native"
|
|
|
|
# Telemetry
|
|
gem "rails_structured_logging", bc: "rails-structured-logging"
|
|
gem "sentry-ruby"
|
|
gem "sentry-rails"
|
|
gem "yabeda"
|
|
gem "yabeda-actioncable"
|
|
gem "yabeda-activejob", github: "basecamp/yabeda-activejob", branch: "bulk-and-scheduled-jobs"
|
|
gem "yabeda-gc"
|
|
gem "yabeda-http_requests"
|
|
gem "yabeda-prometheus-mmap"
|
|
gem "yabeda-puma-plugin"
|
|
gem "yabeda-rails"
|
|
gem "webrick" # required for yabeda-prometheus metrics server
|
|
gem "prometheus-client-mmap", "~> 1.3"
|
|
gem "gvltools"
|