Skip to content

Instantly share code, notes, and snippets.

@fellix
Created January 3, 2012 21:10
Show Gist options
  • Select an option

  • Save fellix/1556950 to your computer and use it in GitHub Desktop.

Select an option

Save fellix/1556950 to your computer and use it in GitHub Desktop.
Cielo Config Sample
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