No commit activity in last 3 years
No release in over 3 years
Merb Slice that allows you to process stuff with braintree, without storing credit cards and shit
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme
BraintreeTransparentRedirectSlice
=================================

A slice for the Merb framework that lets you store shit securely in Braintree's
vault (http://dev.braintreepaymentsolutions.com/vault/transparent-redirect/).
You get tokens for user's sensitive info and you can charge against those
tokens.  The information is securely stored in Braintree's vault to allow you
to charge against credit cards without having ANY sensitive information pass
through your controller actions or logs.  It's quite cool.

------------------------------------------------------------------------------

Installation
------------
% grep braintree_transparent_redirect config/*.rb
dependency "braintree_transparent_redirect_slice", "=1.0.7.1"

------------------------------------------------------------------------------
# example: /:controller/:action/:id
slice(:BraintreeTransparentRedirectSlice)

# example: /billing/controller/:action/:id
add_slice(:braintree_transparent_redirect_slice, :name_prefix => nil, :path_prefix => "billing")

Normally you should also run the following rake task:
rake slices:braintree_transparent_redirect_slice:install
------------------------------------------------------------------------------

Goals
-----
* actually work, as in all specs passing
* sanitize and abstract the braintree models into a gem you can use outside of merb
* hook into merb-auth so you can associate vault items into more than just the user.
  i.e. instance method on the session perhaps
* support bank account info, not just credit cards

Developing
----------
% thor merb:gem:install
% cp config/braintree.yml-example config/braintree.yml
% bin/rake