Sha256: 5a2793aec3046aef5ff0e2fd3fd4e2d50e00abdbead70b1b2cbfeb0b8fbd04ba
Contents?: true
Size: 855 Bytes
Versions: 2
Compression:
Stored size: 855 Bytes
Contents
module Stripe module Plans include ConfigurationBuilder configuration_for :plan do attr_accessor :name, :amount, :interval, :interval_count, :trial_period_days, :currency, :metadata validates_presence_of :id, :name, :amount validates_inclusion_of :interval, :in => %w(week month year), :message => "'%{value}' is not one of 'week', 'month' or 'year'" def initialize(*args) super(*args) @currency = 'usd' @interval_count = 1 @trial_period_days = 0 end def create_options { :currency => @currency, :name => @name, :amount => @amount, :interval => @interval, :interval_count => @interval_count, :trial_period_days => @trial_period_days, :metadata => @metadata } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stripe-rails-0.4.1 | lib/stripe/plans.rb |
stripe-rails-0.4.0 | lib/stripe/plans.rb |