Created
January 3, 2012 21:10
-
-
Save fellix/1556950 to your computer and use it in GitHub Desktop.
Cielo Config Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Payment | |
| def initialize cliente | |
| @cliente = cliente | |
| end | |
| def checkout order | |
| Cielo.numero_afiliacao = @cliente.numero_afiliacao | |
| Cielo.chave_acesso = @cliente.chave_acesso | |
| transaction = Cielo::Transaction.new | |
| transcation.create! order.attributes | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment