Sha256: 8dcf927e5f1c2e67cded705ab7107fdfd8bbefbd6166ee6ad3c01d49c1cfbc38

Contents?: true

Size: 792 Bytes

Versions: 1

Compression:

Stored size: 792 Bytes

Contents

$: << File.expand_path('../../lib', __FILE__)
require 'cobregratis'
require 'pp'

Cobregratis::Base.site = 'https://app.cobregratis.com.br'
Cobregratis::Base.user = 'minha_chave'
Cobregratis::Base.password = 'X'
 

# Criando uma Notificação
notification = Cobregratis::WebHook.create({
  :event => 'paid',
  :url => 'http://meusite.com.br/cobregratis',
  :code => 'codesecret'
})

pp notification

# Lista de notificações
notifications = Cobregratis::WebHook.find(:all)

notifications.each do |notification|
  puts "ID: #{notification.id}\n";
  puts "URL: #{notification.url}\n";
  puts "Código Secreto: #{notification.code}\n";
  puts "Evento: #{notification.formatted_event}\n";
  puts "Situação: #{notification.formatted_status}\n";
  puts "=================================\n";
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cobregratis-0.4.4 examples/web_hook.rb