Skip to content

Instantly share code, notes, and snippets.

@zmachuca
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zmachuca/34cc8bd2ecb38dcc9df4 to your computer and use it in GitHub Desktop.
Save zmachuca/34cc8bd2ecb38dcc9df4 to your computer and use it in GitHub Desktop.
def create
@user = User.new(user_params)
if @user.save
ExampleMailer.purchase_email(@user).deliver
ExampleMailer.sale_email(@user).deliver
begin
Rails.logger.error("STRIPE API KEY: #{Stripe.api_key.inspect}")
@amount = 999
customer = Stripe::Customer.create(
:email => 'example@stripe.com',
:card => params[:stripeToken]
)
charge = Stripe::Charge.create(
:customer => customer.id,
:amount => @amount,
:description => 'Rails Stripe Customer - TruthBecauseLove.com',
:currency => 'usd'
)
redirect_to root_path, notice: "Your Purchase Was Successful! You should recieve an email shortly."
end
else
render action: "new"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment