Sha256: f2dfb5e3881f6646cf396daaa3c4d94c75cdc044ef553e44e368b6f5d27cbe76
Contents?: true
Size: 555 Bytes
Versions: 20
Compression:
Stored size: 555 Bytes
Contents
module PaidUp def self.configure(configuration = PaidUp::Configuration.new) if block_given? yield configuration end @@configuration = configuration end def self.configuration @@configuration ||= PaidUp::Configuration.new end class Configuration attr_accessor :anonymous_customer_stripe_id, :anonymous_plan_stripe_id, :free_plan_stripe_id def initialize self.anonymous_customer_stripe_id = "TODO" self.anonymous_plan_stripe_id = "TODO" self.free_plan_stripe_id = "TODO" end end end
Version data entries
20 entries across 20 versions & 1 rubygems