koudoku icon indicating copy to clipboard operation
koudoku copied to clipboard

Robust subscription support for Rails with Stripe.

Results 73 koudoku issues
Sort by recently updated
recently updated
newest added

Do you see any issues adding support for the quantity parameter? In addition to having a config default quantity per plan, I'd like to add a method to set the...

enhancement

I am submitting the payment-form which is being sent to Stripe, then this is being returned to SubscriptionsController#update: ``` { "utf8" => "✓", "authenticity_token" => "E5akFRcgxk/rU1AMKdmZXzVavtuBC48nIWHomLdYoeJrh6i8A21LKrTm81QRkhxXMOoVExUJ5/D7BljHp1E62w==", "subscription" => { "plan_id"...

I had to modify this line: `` to: `` In order for a plan_id to be submitted with the payment-form. How is this supposed to be set?

`undefined local variable or method`destroy_user_session_path' for # Did you mean? destroy_session_path` It works on every other page. Any ideas would be much appreciated! Thanks, Tim

Was wondering if you supported freemium - obviously with the idea that you don't need a CC number while on this plan but you would need one later. Would this...

Hi, I have implemented the Subscription(after over-riding couple of methods). I have implemented a Basic Plan, which is free, and every User on SignUp gets subscribed to it. After that,...

I've run into a few hiccups trying to install this. Coupon can't be blank for subscription, but `session[:koudoku_coupon_code]` isn't populated or mentioned as a part of setup. I'm under the...

i create a new user without credit card from devise registrationscontroller and i create new subscription with this code: subscription = Subscription.new subscription.plan_id = 1 subscription.user_id = @user.id subscription.save i...

Needs to change references of "cards" to "sources" and "default_card" to "default_source"

Hey, Not sure if this is because of I'm using a new API version, but the response does not include a card_type key, the card type is included in a...