cobregratis 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0d6622e24bc92652f9b597b2a6e87c50878b6fc
4
- data.tar.gz: 3c69ebd7debcaa43eb6b791c3402da2ba1629021
3
+ metadata.gz: eb3ed161552586fb8efb3c1d595bb82e624816a3
4
+ data.tar.gz: 0dce4defe50fcadd9e5301375974ec2d051c25de
5
5
  SHA512:
6
- metadata.gz: b6b4f6cd02a5314a35f97d99a02feed40a612ce95e77422aad28eec329e95752ca7c0cf501121244b7b5523318fa4671398baea2d2f9768ee433a3153cbc4c18
7
- data.tar.gz: a6b4736d705914040a212f5de1e5a7399475c93e06a47da848eb89cb301d0331fa4c69cbff4fe72a44e2d6277f62cda6fde8d2e01519f5920d76fdf22f31b536
6
+ metadata.gz: c9655bece7b621ca1f14381c7c62bee5882d09a9c9cb948f3b40ae09a7cf3019862097aa79a59847061e1fa88141c882951f5a42926064d541c07fbccae0baab
7
+ data.tar.gz: 7dd41b911073599a1fab4897b0f89078ea99cfcf232d73e78d4e4c8675103941876ff485444238bced1fc2718399d6ec7fea9be770f91b371bd0a5357c305f02
data/examples/example.rb CHANGED
@@ -2,23 +2,57 @@ $: << File.expand_path('../../lib', __FILE__)
2
2
  require 'cobregratis'
3
3
  require 'pp'
4
4
 
5
- Cobregratis::Base.site = 'https://app.cobregratis.com.br'
6
- Cobregratis::Base.user = 'token-do-usuario'
5
+ # Cobregratis::Base.site = 'http://staging.cobregratis.com.br'
6
+ Cobregratis::Base.user = 'uiF3x9JuMFMBMasanVPo'
7
7
  Cobregratis::Base.password = 'X'
8
+
8
9
 
9
- @bank_billet = Cobregratis::BankBillet.create({
10
- :amount => 230.50,
11
- :expire_at => '2015-07-22',
12
- :name => 'Rafael Lima',
13
- })
10
+ # Criando um boleto
11
+ # bank_billet = Cobregratis::BankBillet.create({
12
+ # :name => 'Cliente',
13
+ # :cnpj_cpf => '34458851179',
14
+ # :amount => 13.50,
15
+ # :expire_at => '2015-07-30',
16
+ # :parcels => 1, # Número de parcelas
17
+ # :generate_on_creation => true,
18
+ # :save_customer => true, # salvar cliente
19
+ # :service_id => '46270',
20
+ # email: { # para onde o boleto será enviado
21
+ # name: 'Cliente',
22
+ # address: 'cliente@example.com.br'
23
+ # }
24
+ # })
25
+ # pp bank_billet
14
26
 
15
- @bank_billets = Cobregratis::BankBillet.find(:all)
27
+ # Lista de boletos
28
+ # bank_billets = Cobregratis::BankBillet.find(:all)
29
+ #
30
+ # bank_billets.each do |bank_billet|
31
+ # puts "Nosso Número: #{bank_billet.our_number}\n";
32
+ # puts "Vencimento: #{bank_billet.expire_at}\n";
33
+ # puts "Valor: #{bank_billet.amount}\n";
34
+ # puts "Sacado: #{bank_billet.name}\n";
35
+ # puts "URL: #{bank_billet.external_link}\n";
36
+ # puts "=================================\n";
37
+ # end
16
38
 
17
- @bank_billets.each do |bank_billet|
18
- puts "Nosso Número: #{bank_billet.our_number}\n";
19
- puts "Vencimento: #{bank_billet.expire_at}\n";
20
- puts "Valor: #{bank_billet.amount}\n";
21
- puts "Sacado: #{bank_billet.name}\n";
22
- puts "URL: #{bank_billet.external_link}\n";
23
- puts "=================================\n";
24
- end
39
+ # Criando um WebHook
40
+ # web_hook = Cobregratis::WebHook.create({
41
+ # :event => 'paid',
42
+ # :url => 'http://meusite.com.br/cobregratis',
43
+ # :code => 'codesecret'
44
+ # })
45
+ #
46
+ # pp web_hook
47
+
48
+ # Lista de WebHooks
49
+ # web_hooks = Cobregratis::WebHook.find(:all)
50
+ #
51
+ # web_hooks.each do |web_hook|
52
+ # puts "ID: #{web_hook.id}\n";
53
+ # puts "URL: #{web_hook.url}\n";
54
+ # puts "Código Secreto: #{web_hook.code}\n";
55
+ # puts "Evento: #{web_hook.formatted_event}\n";
56
+ # puts "Status: #{web_hook.formatted_status}\n";
57
+ # puts "=================================\n";
58
+ # end
@@ -0,0 +1,4 @@
1
+ module Cobregratis
2
+ class BankBilletSubscription < Base
3
+ end
4
+ end
@@ -1,3 +1,3 @@
1
1
  module Cobregratis
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
@@ -0,0 +1,4 @@
1
+ module Cobregratis
2
+ class WebHook < Base
3
+ end
4
+ end
data/lib/cobregratis.rb CHANGED
@@ -5,8 +5,10 @@ module Cobregratis
5
5
  require 'cobregratis/base'
6
6
  require 'cobregratis/bank_billet_account'
7
7
  require 'cobregratis/bank_billet'
8
+ require 'cobregratis/bank_billet_subscription'
8
9
  require 'cobregratis/customer'
9
10
  require 'cobregratis/service'
11
+ require 'cobregratis/web_hook'
10
12
  end
11
13
 
12
14
  def gem_path
@@ -0,0 +1,12 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe Cobregratis::BankBilletSubscription do
4
+ before(:each) do
5
+ @subscription = Cobregratis::BankBilletSubscription.new
6
+ end
7
+
8
+ it "should be instance of Cobregratis::Base" do
9
+ @subscription.kind_of?(Cobregratis::Base).should be_true
10
+ end
11
+
12
+ end
@@ -0,0 +1,12 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe Cobregratis::Service do
4
+ before(:each) do
5
+ @webhook = Cobregratis::WebHook.new
6
+ end
7
+
8
+ it "should be instance of Cobregratis::Base" do
9
+ @webhook.kind_of?(Cobregratis::Base).should be_true
10
+ end
11
+
12
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobregratis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Lima
@@ -118,15 +118,19 @@ files:
118
118
  - lib/cobregratis.rb
119
119
  - lib/cobregratis/bank_billet.rb
120
120
  - lib/cobregratis/bank_billet_account.rb
121
+ - lib/cobregratis/bank_billet_subscription.rb
121
122
  - lib/cobregratis/base.rb
122
123
  - lib/cobregratis/customer.rb
123
124
  - lib/cobregratis/service.rb
124
125
  - lib/cobregratis/version.rb
126
+ - lib/cobregratis/web_hook.rb
125
127
  - spec/cobregratis/bank_billet_account_spec.rb
126
128
  - spec/cobregratis/bank_billet_spec.rb
129
+ - spec/cobregratis/bank_billet_subscription_spec.rb
127
130
  - spec/cobregratis/base_spec.rb
128
131
  - spec/cobregratis/customer_spec.rb
129
132
  - spec/cobregratis/service_spec.rb
133
+ - spec/cobregratis/web_hook_spec.rb
130
134
  - spec/spec.opts
131
135
  - spec/spec_helper.rb
132
136
  homepage: http://github.com/BielSystems/cobregratis-ruby
@@ -156,8 +160,11 @@ summary: Ruby Wrapper around Cobre Grátis API
156
160
  test_files:
157
161
  - spec/cobregratis/bank_billet_account_spec.rb
158
162
  - spec/cobregratis/bank_billet_spec.rb
163
+ - spec/cobregratis/bank_billet_subscription_spec.rb
159
164
  - spec/cobregratis/base_spec.rb
160
165
  - spec/cobregratis/customer_spec.rb
161
166
  - spec/cobregratis/service_spec.rb
167
+ - spec/cobregratis/web_hook_spec.rb
162
168
  - spec/spec.opts
163
169
  - spec/spec_helper.rb
170
+ has_rdoc: