br_boleto 2.0.1 → 2.1.0
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 +4 -4
- data/.gitignore +2 -1
- data/.travis.yml +1 -1
- data/Gemfile.lock +2 -2
- data/br_boleto.gemspec +2 -3
- data/lib/br_boleto/association/have_conta.rb +27 -25
- data/lib/br_boleto/association/have_pagador.rb +2 -0
- data/lib/br_boleto/boleto/base.rb +0 -4
- data/lib/br_boleto/boleto/bradesco.rb +80 -0
- data/lib/br_boleto/boleto/caixa.rb +10 -12
- data/lib/br_boleto/boleto/cecred.rb +76 -0
- data/lib/br_boleto/boleto/itau.rb +114 -0
- data/lib/br_boleto/boleto/sicredi.rb +101 -0
- data/lib/br_boleto/boleto/unicred.rb +21 -0
- data/lib/br_boleto/conta/base.rb +28 -3
- data/lib/br_boleto/conta/bradesco.rb +120 -0
- data/lib/br_boleto/conta/caixa.rb +22 -12
- data/lib/br_boleto/conta/cecred.rb +67 -0
- data/lib/br_boleto/conta/itau.rb +199 -0
- data/lib/br_boleto/conta/sicoob.rb +40 -11
- data/lib/br_boleto/conta/sicredi.rb +171 -0
- data/lib/br_boleto/conta/unicred.rb +38 -0
- data/lib/br_boleto/helper/default_codes.rb +535 -26
- data/lib/br_boleto/pagador.rb +4 -0
- data/lib/br_boleto/remessa/base.rb +2 -0
- data/lib/br_boleto/remessa/cnab240/base.rb +21 -6
- data/lib/br_boleto/remessa/cnab240/bradesco.rb +141 -0
- data/lib/br_boleto/remessa/cnab240/caixa.rb +8 -1
- data/lib/br_boleto/remessa/cnab240/cecred.rb +169 -0
- data/lib/br_boleto/remessa/cnab240/helper/segmento_p.rb +29 -21
- data/lib/br_boleto/remessa/cnab240/helper/segmento_q.rb +4 -3
- data/lib/br_boleto/remessa/cnab240/helper/segmento_r.rb +5 -5
- data/lib/br_boleto/remessa/cnab240/helper/segmento_s.rb +4 -3
- data/lib/br_boleto/remessa/cnab240/itau.rb +186 -0
- data/lib/br_boleto/remessa/cnab240/sicoob.rb +4 -16
- data/lib/br_boleto/remessa/cnab240/sicredi.rb +205 -0
- data/lib/br_boleto/remessa/cnab240/unicred.rb +40 -0
- data/lib/br_boleto/remessa/cnab400/bradesco.rb +235 -0
- data/lib/br_boleto/remessa/cnab400/helper/detalhe.rb +6 -5
- data/lib/br_boleto/remessa/cnab400/itau.rb +190 -0
- data/lib/br_boleto/remessa/cnab400/sicoob.rb +3 -3
- data/lib/br_boleto/remessa/cnab400/sicredi.rb +276 -0
- data/lib/br_boleto/remessa/cnab400/unicred.rb +62 -0
- data/lib/br_boleto/remessa/pagamento.rb +93 -43
- data/lib/br_boleto/retorno/cnab240/base.rb +13 -12
- data/lib/br_boleto/retorno/cnab240/bradesco.rb +10 -0
- data/lib/br_boleto/retorno/cnab240/caixa.rb +2 -3
- data/lib/br_boleto/retorno/cnab240/cecred.rb +10 -0
- data/lib/br_boleto/retorno/cnab240/itau.rb +24 -0
- data/lib/br_boleto/retorno/cnab240/sicredi.rb +10 -0
- data/lib/br_boleto/retorno/cnab240/unicred.rb +10 -0
- data/lib/br_boleto/retorno/cnab400/bradesco.rb +42 -0
- data/lib/br_boleto/retorno/cnab400/itau.rb +43 -0
- data/lib/br_boleto/retorno/cnab400/sicoob.rb +2 -2
- data/lib/br_boleto/retorno/cnab400/sicredi.rb +43 -0
- data/lib/br_boleto/retorno/cnab400/unicred.rb +10 -0
- data/lib/br_boleto/retorno/pagamento.rb +18 -4
- data/lib/br_boleto/version.rb +2 -2
- data/lib/br_boleto.rb +28 -0
- data/lib/config/locales/br-boleto-en.yml +1 -0
- data/lib/config/locales/br-boleto-pt-BR.yml +1 -0
- data/test/br_boleto/association/have_pagador_test.rb +24 -0
- data/test/br_boleto/boleto/bradesco_test.rb +125 -0
- data/test/br_boleto/boleto/caixa_test.rb +18 -18
- data/test/br_boleto/boleto/cecred_test.rb +115 -0
- data/test/br_boleto/boleto/itau_test.rb +160 -0
- data/test/br_boleto/boleto/sicredi_test.rb +136 -0
- data/test/br_boleto/boleto/unicred_test.rb +128 -0
- data/test/br_boleto/conta/base_test.rb +298 -3
- data/test/br_boleto/conta/bradesco_test.rb +142 -0
- data/test/br_boleto/conta/caixa_test.rb +7 -6
- data/test/br_boleto/conta/cecred_test.rb +119 -0
- data/test/br_boleto/conta/itau_test.rb +189 -0
- data/test/br_boleto/conta/sicoob_test.rb +32 -2
- data/test/br_boleto/conta/sicredi_test.rb +180 -0
- data/test/br_boleto/conta/unicred_test.rb +154 -0
- data/test/br_boleto/pagador_test.rb +22 -2
- data/test/br_boleto/remessa/cnab240/base_test.rb +24 -12
- data/test/br_boleto/remessa/cnab240/bradesco_test.rb +196 -0
- data/test/br_boleto/remessa/cnab240/caixa_test.rb +51 -0
- data/test/br_boleto/remessa/cnab240/cecred_test.rb +242 -0
- data/test/br_boleto/remessa/cnab240/helper/segmento_p_test.rb +78 -71
- data/test/br_boleto/remessa/cnab240/helper/segmento_q_test.rb +4 -3
- data/test/br_boleto/remessa/cnab240/helper/segmento_r_test.rb +10 -18
- data/test/br_boleto/remessa/cnab240/helper/segmento_s_test.rb +6 -5
- data/test/br_boleto/remessa/cnab240/itau_test.rb +201 -0
- data/test/br_boleto/remessa/cnab240/sicoob_test.rb +1 -58
- data/test/br_boleto/remessa/cnab240/sicredi_test.rb +207 -0
- data/test/br_boleto/remessa/cnab240/unicred_test.rb +250 -0
- data/test/br_boleto/remessa/cnab400/base_test.rb +4 -4
- data/test/br_boleto/remessa/cnab400/bradesco_test.rb +164 -0
- data/test/br_boleto/remessa/cnab400/itau_test.rb +173 -0
- data/test/br_boleto/remessa/cnab400/sicoob_test.rb +2 -2
- data/test/br_boleto/remessa/cnab400/sicredi_test.rb +241 -0
- data/test/br_boleto/remessa/cnab400/unicred_test.rb +169 -0
- data/test/br_boleto/retorno/cnab240/base_test.rb +20 -10
- data/test/br_boleto/retorno/cnab240/bradesco_test.rb +228 -0
- data/test/br_boleto/retorno/cnab240/caixa_test.rb +20 -10
- data/test/br_boleto/retorno/cnab240/cecred_test.rb +228 -0
- data/test/br_boleto/retorno/cnab240/itau_test.rb +228 -0
- data/test/br_boleto/retorno/cnab240/sicoob_test.rb +20 -10
- data/test/br_boleto/retorno/cnab240/sicredi_test.rb +228 -0
- data/test/br_boleto/retorno/cnab240/unicred_test.rb +228 -0
- data/test/br_boleto/retorno/cnab400/bradesco_test.rb +255 -0
- data/test/br_boleto/retorno/cnab400/itau_test.rb +96 -0
- data/test/br_boleto/retorno/cnab400/sicoob_test.rb +10 -5
- data/test/br_boleto/retorno/cnab400/sicredi_test.rb +7 -0
- data/test/br_boleto/retorno/cnab400/unicred.rb +255 -0
- data/test/br_boleto/retorno/pagamento_test.rb +7 -0
- data/test/factories/boleto/boleto_bradesco.rb +18 -0
- data/test/factories/boleto/boleto_cecred.rb +18 -0
- data/test/factories/boleto/boleto_itau.rb +18 -0
- data/test/factories/boleto/boleto_sicredi.rb +18 -0
- data/test/factories/boleto/boleto_unicred.rb +18 -0
- data/test/factories/conta/bradesco.rb +16 -0
- data/test/factories/conta/caixa.rb +2 -1
- data/test/factories/conta/cecred.rb +15 -0
- data/test/factories/conta/itau.rb +15 -0
- data/test/factories/conta/sicoob.rb +2 -1
- data/test/factories/conta/sicredi.rb +15 -0
- data/test/factories/conta/unicred.rb +15 -0
- data/test/factories/remessa/cnab240/bradesco.rb +9 -0
- data/test/factories/remessa/cnab240/cecred.rb +9 -0
- data/test/factories/remessa/cnab240/itau.rb +9 -0
- data/test/factories/remessa/cnab240/sicredi.rb +9 -0
- data/test/factories/remessa/cnab240/unicred.rb +9 -0
- data/test/factories/remessa/cnab400/bradesco.rb +8 -0
- data/test/factories/remessa/cnab400/itau.rb +8 -0
- data/test/factories/remessa/cnab400/sicredi.rb +8 -0
- data/test/factories/remessa/cnab400/unicred.rb +8 -0
- data/test/fixtures/remessa/cnab240/caixa.rem +8 -0
- data/test/fixtures/remessa/cnab240/cecred.rem +8 -0
- data/test/fixtures/remessa/cnab240/sicoob.rem +8 -8
- data/test/fixtures/remessa/cnab240/unicred.rem +7 -0
- data/test/fixtures/retorno/cnab400/bradesco.ret +8 -0
- data/test/fixtures/retorno/cnab400/itau.ret +54 -0
- metadata +138 -3
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
02RETORNO01COBRANCA 073000035110 PLUTO ALTO ELENTAS LTDA ME 341BANCO ITAU S.A.20051301600BPI00025210513 000001
|
|
2
|
+
10216733872000107073000035110 00000011 109000000114 I06200513 00000011 000000000000000400010418739 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000002
|
|
3
|
+
10216733872000107073000035110 00000035 109000000353 I06200513 00000035 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000003
|
|
4
|
+
10216733872000107073000035110 00000052 109000000528 I06200513 00000052 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000004
|
|
5
|
+
10216733872000107073000035110 00000107 109000001070 I06200513 00000107 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000005
|
|
6
|
+
10216733872000107073000035110 00000139 109000001393 I06200513 00000139 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000006
|
|
7
|
+
10216733872000107073000035110 00000195 109000001955 I06200513 00000195 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000007
|
|
8
|
+
10216733872000107073000035110 00000267 109000002672 I06200513 00000267 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000008
|
|
9
|
+
10216733872000107073000035110 00000331 109000003316 I06200513 00000331 000000000000000400010404085 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000009
|
|
10
|
+
10216733872000107073000035110 00000541 109000005410 I06200513 00000541 000000000000001050010417848 000000000021000000000000000000000000000000000000000000000000000000000000000000000000001029000000000000000000000000000 21051300000000000000000000000 B5000010
|
|
11
|
+
10216733872000107073000035110 00000890 109000008901 I06200513 00000890 000000000000000400010418754 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000011
|
|
12
|
+
10216733872000107073000035110 00000956 109000009560 I06200513 00000956 000000000000000750010417848 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000729000000000000000000000000000 21051300000000000000000000000 B5000012
|
|
13
|
+
10216733872000107073000035110 00000975 109000009750 I06200513 00000975 000000000000000750010417848 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000729000000000000000000000000000 21051300000000000000000000000 B2000013
|
|
14
|
+
10216733872000107073000035110 00001036 109000010360 I06200513 00001036 000000000000000210034178584 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000189000000000000000000000000000 21051300000000000000000000000 CP000014
|
|
15
|
+
10216733872000107073000035110 00001052 109000010527 I06200513 00001052 000000000000000840010417848 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000819000000000000000000000000000 21051300000000000000000000000 B5000015
|
|
16
|
+
10216733872000107073000035110 00001109 109000011095 I06200513 00001109 000000000000000460010436921 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000439000000000000000000000000000 21051300000000000000000000000 B5000016
|
|
17
|
+
10216733872000107073000035110 00001123 109000011236 I06200513 00001123 000000000000000400010418754 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000017
|
|
18
|
+
10216733872000107073000035110 00001206 109000012069 I06200513 00001206 000000000000000400010418754 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000018
|
|
19
|
+
10216733872000107073000035110 00001324 109000013240 I06200513 00001324 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000019
|
|
20
|
+
10216733872000107073000035110 00001351 109000013513 I06200513 00001351 000000000000000400023729371 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B2000020
|
|
21
|
+
10216733872000107073000035110 00001372 109000013729 I06200513 00001372 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000021
|
|
22
|
+
10216733872000107073000035110 00001373 109000013737 I06200513 00001373 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000022
|
|
23
|
+
10216733872000107073000035110 00001380 109000013802 I06200513 00001380 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000023
|
|
24
|
+
10216733872000107073000035110 00001458 109000014586 I06200513 00001458 000000000000000400000152480 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000024
|
|
25
|
+
10216733872000107073000035110 00001498 109000014982 I06200513 00001498 000000000000000400034102899 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 AA000025
|
|
26
|
+
10216733872000107073000035110 00001698 109000016987 I06200513 00001698 000000000000000191010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000 21051300000000000000000000000 B5000026
|
|
27
|
+
10216733872000107073000035110 00002129 109000021292 I06200513 00002129 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000027
|
|
28
|
+
10216733872000107073000035110 00002236 109000022365 I06200513 00002236 000000000000000400010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000028
|
|
29
|
+
10216733872000107073000035110 00002260 109000022605 I06200513 00002260 000000000000000400010436921 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B2000029
|
|
30
|
+
10216733872000107073000035110 00002274 109000022746 I06200513 00002274 000000000000000400034186686 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 CP000030
|
|
31
|
+
10216733872000107073000035110 00002286 109000022860 I06200513 00002286 000000000000000400010436921 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000031
|
|
32
|
+
10216733872000107073000035110 00002311 109000023116 I06200513 00002311 000000000000000400010418770 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000379000000000000000000000000000 21051300000000000000000000000 B5000032
|
|
33
|
+
10216733872000107073000035110 00002586 109000025863 I06200513 00002586 000000000000000640010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000619000000000000000000000000000 21051300000000000000000000000 B5000033
|
|
34
|
+
10216733872000107073000035110 00002597 109000025970 I06200513 00002597 000000000000000440000126385 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B5000034
|
|
35
|
+
10216733872000107073000035110 00002601 109000026010 I06200513 00002601 000000000000000440010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B5000035
|
|
36
|
+
10216733872000107073000035110 00002607 109000026077 I06200513 00002607 000000000000000440010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B5000036
|
|
37
|
+
10216733872000107073000035110 00002617 109000026176 I06200513 00002617 000000000000000440000148322 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B1000037
|
|
38
|
+
10216733872000107073000035110 00002627 109000026275 I06200513 00002627 000000000000000440000148298 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B1000038
|
|
39
|
+
10216733872000107073000035110 00002668 109000026689 I06200513 00002668 000000000000000440023729371 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B3000039
|
|
40
|
+
10216733872000107073000035110 00002674 109000026747 I06200513 00002674 000000000000000440010404085 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B5000040
|
|
41
|
+
10216733872000107073000035110 00002721 109000027216 I06200513 00002721 000000000000000440010415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B5000041
|
|
42
|
+
10216733872000107073000035110 00003136 109000031366 I06200513 00003136 000000000000000487534148272 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000476700000000001020000000000000 21051300000000000000000000000 CP000042
|
|
43
|
+
10216733872000107073000035110 00003238 109000032380 I06200513 00003238 000000000000003500000130478 000000000021000000000000000000000000000000000000000000000000000000000000000000000000003479000000000000000000000000000 21051300000000000000000000000 B2000043
|
|
44
|
+
10216733872000107073000035110 00003344 109000033446 I06200513 00003344 000000000000000440000148298 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 B1000044
|
|
45
|
+
10216733872000107073000035110 00003391 109000033917 I06200513 00003391 000000000000000440034186132 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000419000000000000000000000000000 21051300000000000000000000000 BL000045
|
|
46
|
+
10216733872000107073000035110 00003456 109000034568 I06200513 00003456 000000000000000571534102899 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000562200000000001170000000000000 21051300000000000000000000000 CP000046
|
|
47
|
+
10216733872000107073000035110 00003505 109000035052 I06200513 00003505 000000000000000457100148322 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000436100000000000000000000000000 21051300000000000000000000000 B1000047
|
|
48
|
+
10216733872000107073000035110 00003925 109000039252 I06200513 00003925 000000000000000571034165466 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000561900000000001190000000000000 21051300000000000000000000000 CP000048
|
|
49
|
+
10216733872000107073000035110 00004012 109000040128 I06200513 00004012 000000000000000500010430783 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000479000000000000000000000000000 21051300000000000000000000000 B5000049
|
|
50
|
+
10216733872000107073000035110 00004019 109000040193 I06200513 00004019 000000000000000571510415552 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000550500000000000000000000000000 21051300000000000000000000000 B5000050
|
|
51
|
+
10216733872000107073000035110 00004026 109000040268 I06200513 00004026 000000000000000500039913003 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000479000000000000000000000000000 21051300000000000000000000000 B3000051
|
|
52
|
+
10216733872000107073000035110 27615123 157276151236 I06200513000000108927615123 100513000000000440034165466 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000428800000000000980000000000000 21051300000000000000000000000DIVA LOUZAMARA DO CASTO BLITTO CP000052
|
|
53
|
+
10216733872000107073000035110 27714592 157277145922 I09200513000000206827714592 100513000000000400034177099 000000000021000000000000000000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000 00000000000000000000000MIRCALO TIADORO 000053
|
|
54
|
+
9201341 000000000000000000000000000000 000000000000000000000000000000 000000000000000000000000000000 0000003200000000148705 21/05S000250000005200000000268896 000054
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: br_boleto
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruno M. Mergen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -88,8 +88,13 @@ files:
|
|
|
88
88
|
- lib/br_boleto/association/have_pagador.rb
|
|
89
89
|
- lib/br_boleto/association/have_pagamentos.rb
|
|
90
90
|
- lib/br_boleto/boleto/base.rb
|
|
91
|
+
- lib/br_boleto/boleto/bradesco.rb
|
|
91
92
|
- lib/br_boleto/boleto/caixa.rb
|
|
93
|
+
- lib/br_boleto/boleto/cecred.rb
|
|
94
|
+
- lib/br_boleto/boleto/itau.rb
|
|
92
95
|
- lib/br_boleto/boleto/sicoob.rb
|
|
96
|
+
- lib/br_boleto/boleto/sicredi.rb
|
|
97
|
+
- lib/br_boleto/boleto/unicred.rb
|
|
93
98
|
- lib/br_boleto/calculos/digitos.rb
|
|
94
99
|
- lib/br_boleto/calculos/fator_vencimento.rb
|
|
95
100
|
- lib/br_boleto/calculos/fatores_de_multiplicacao.rb
|
|
@@ -104,8 +109,13 @@ files:
|
|
|
104
109
|
- lib/br_boleto/calculos/modulo11_fator_de9a2_resto_x.rb
|
|
105
110
|
- lib/br_boleto/calculos/modulo_numero_de_controle.rb
|
|
106
111
|
- lib/br_boleto/conta/base.rb
|
|
112
|
+
- lib/br_boleto/conta/bradesco.rb
|
|
107
113
|
- lib/br_boleto/conta/caixa.rb
|
|
114
|
+
- lib/br_boleto/conta/cecred.rb
|
|
115
|
+
- lib/br_boleto/conta/itau.rb
|
|
108
116
|
- lib/br_boleto/conta/sicoob.rb
|
|
117
|
+
- lib/br_boleto/conta/sicredi.rb
|
|
118
|
+
- lib/br_boleto/conta/unicred.rb
|
|
109
119
|
- lib/br_boleto/helper/cpf_cnpj.rb
|
|
110
120
|
- lib/br_boleto/helper/default_codes.rb
|
|
111
121
|
- lib/br_boleto/helper/format_value.rb
|
|
@@ -113,7 +123,9 @@ files:
|
|
|
113
123
|
- lib/br_boleto/pagador.rb
|
|
114
124
|
- lib/br_boleto/remessa/base.rb
|
|
115
125
|
- lib/br_boleto/remessa/cnab240/base.rb
|
|
126
|
+
- lib/br_boleto/remessa/cnab240/bradesco.rb
|
|
116
127
|
- lib/br_boleto/remessa/cnab240/caixa.rb
|
|
128
|
+
- lib/br_boleto/remessa/cnab240/cecred.rb
|
|
117
129
|
- lib/br_boleto/remessa/cnab240/helper/header_arquivo.rb
|
|
118
130
|
- lib/br_boleto/remessa/cnab240/helper/header_lote.rb
|
|
119
131
|
- lib/br_boleto/remessa/cnab240/helper/segmento_p.rb
|
|
@@ -122,20 +134,36 @@ files:
|
|
|
122
134
|
- lib/br_boleto/remessa/cnab240/helper/segmento_s.rb
|
|
123
135
|
- lib/br_boleto/remessa/cnab240/helper/trailer_arquivo.rb
|
|
124
136
|
- lib/br_boleto/remessa/cnab240/helper/trailer_lote.rb
|
|
137
|
+
- lib/br_boleto/remessa/cnab240/itau.rb
|
|
125
138
|
- lib/br_boleto/remessa/cnab240/sicoob.rb
|
|
139
|
+
- lib/br_boleto/remessa/cnab240/sicredi.rb
|
|
140
|
+
- lib/br_boleto/remessa/cnab240/unicred.rb
|
|
126
141
|
- lib/br_boleto/remessa/cnab400/base.rb
|
|
142
|
+
- lib/br_boleto/remessa/cnab400/bradesco.rb
|
|
127
143
|
- lib/br_boleto/remessa/cnab400/helper/detalhe.rb
|
|
128
144
|
- lib/br_boleto/remessa/cnab400/helper/header.rb
|
|
129
145
|
- lib/br_boleto/remessa/cnab400/helper/trailer.rb
|
|
146
|
+
- lib/br_boleto/remessa/cnab400/itau.rb
|
|
130
147
|
- lib/br_boleto/remessa/cnab400/sicoob.rb
|
|
148
|
+
- lib/br_boleto/remessa/cnab400/sicredi.rb
|
|
149
|
+
- lib/br_boleto/remessa/cnab400/unicred.rb
|
|
131
150
|
- lib/br_boleto/remessa/lote.rb
|
|
132
151
|
- lib/br_boleto/remessa/pagamento.rb
|
|
133
152
|
- lib/br_boleto/retorno/base.rb
|
|
134
153
|
- lib/br_boleto/retorno/cnab240/base.rb
|
|
154
|
+
- lib/br_boleto/retorno/cnab240/bradesco.rb
|
|
135
155
|
- lib/br_boleto/retorno/cnab240/caixa.rb
|
|
156
|
+
- lib/br_boleto/retorno/cnab240/cecred.rb
|
|
157
|
+
- lib/br_boleto/retorno/cnab240/itau.rb
|
|
136
158
|
- lib/br_boleto/retorno/cnab240/sicoob.rb
|
|
159
|
+
- lib/br_boleto/retorno/cnab240/sicredi.rb
|
|
160
|
+
- lib/br_boleto/retorno/cnab240/unicred.rb
|
|
137
161
|
- lib/br_boleto/retorno/cnab400/base.rb
|
|
162
|
+
- lib/br_boleto/retorno/cnab400/bradesco.rb
|
|
163
|
+
- lib/br_boleto/retorno/cnab400/itau.rb
|
|
138
164
|
- lib/br_boleto/retorno/cnab400/sicoob.rb
|
|
165
|
+
- lib/br_boleto/retorno/cnab400/sicredi.rb
|
|
166
|
+
- lib/br_boleto/retorno/cnab400/unicred.rb
|
|
139
167
|
- lib/br_boleto/retorno/pagamento.rb
|
|
140
168
|
- lib/br_boleto/string_methods.rb
|
|
141
169
|
- lib/br_boleto/validations.rb
|
|
@@ -146,8 +174,13 @@ files:
|
|
|
146
174
|
- test/br_boleto/association/have_pagador_test.rb
|
|
147
175
|
- test/br_boleto/association/have_pagamentos_test.rb
|
|
148
176
|
- test/br_boleto/boleto/base_test.rb
|
|
177
|
+
- test/br_boleto/boleto/bradesco_test.rb
|
|
149
178
|
- test/br_boleto/boleto/caixa_test.rb
|
|
179
|
+
- test/br_boleto/boleto/cecred_test.rb
|
|
180
|
+
- test/br_boleto/boleto/itau_test.rb
|
|
150
181
|
- test/br_boleto/boleto/sicoob_test.rb
|
|
182
|
+
- test/br_boleto/boleto/sicredi_test.rb
|
|
183
|
+
- test/br_boleto/boleto/unicred_test.rb
|
|
151
184
|
- test/br_boleto/calculos/digitos_test.rb
|
|
152
185
|
- test/br_boleto/calculos/fator_vencimento_test.rb
|
|
153
186
|
- test/br_boleto/calculos/fatores_de_multiplicacao_test.rb
|
|
@@ -162,13 +195,20 @@ files:
|
|
|
162
195
|
- test/br_boleto/calculos/modulo11_test.rb
|
|
163
196
|
- test/br_boleto/calculos/modulo_numero_de_controle_test.rb
|
|
164
197
|
- test/br_boleto/conta/base_test.rb
|
|
198
|
+
- test/br_boleto/conta/bradesco_test.rb
|
|
165
199
|
- test/br_boleto/conta/caixa_test.rb
|
|
200
|
+
- test/br_boleto/conta/cecred_test.rb
|
|
201
|
+
- test/br_boleto/conta/itau_test.rb
|
|
166
202
|
- test/br_boleto/conta/sicoob_test.rb
|
|
203
|
+
- test/br_boleto/conta/sicredi_test.rb
|
|
204
|
+
- test/br_boleto/conta/unicred_test.rb
|
|
167
205
|
- test/br_boleto/helper/number_test.rb
|
|
168
206
|
- test/br_boleto/pagador_test.rb
|
|
169
207
|
- test/br_boleto/remessa/base_test.rb
|
|
170
208
|
- test/br_boleto/remessa/cnab240/base_test.rb
|
|
209
|
+
- test/br_boleto/remessa/cnab240/bradesco_test.rb
|
|
171
210
|
- test/br_boleto/remessa/cnab240/caixa_test.rb
|
|
211
|
+
- test/br_boleto/remessa/cnab240/cecred_test.rb
|
|
172
212
|
- test/br_boleto/remessa/cnab240/helper/header_arquivo_test.rb
|
|
173
213
|
- test/br_boleto/remessa/cnab240/helper/header_lote_test.rb
|
|
174
214
|
- test/br_boleto/remessa/cnab240/helper/segmento_p_test.rb
|
|
@@ -177,36 +217,76 @@ files:
|
|
|
177
217
|
- test/br_boleto/remessa/cnab240/helper/segmento_s_test.rb
|
|
178
218
|
- test/br_boleto/remessa/cnab240/helper/trailer_arquivo_test.rb
|
|
179
219
|
- test/br_boleto/remessa/cnab240/helper/trailer_lote_test.rb
|
|
220
|
+
- test/br_boleto/remessa/cnab240/itau_test.rb
|
|
180
221
|
- test/br_boleto/remessa/cnab240/sicoob_test.rb
|
|
222
|
+
- test/br_boleto/remessa/cnab240/sicredi_test.rb
|
|
223
|
+
- test/br_boleto/remessa/cnab240/unicred_test.rb
|
|
181
224
|
- test/br_boleto/remessa/cnab400/base_test.rb
|
|
225
|
+
- test/br_boleto/remessa/cnab400/bradesco_test.rb
|
|
226
|
+
- test/br_boleto/remessa/cnab400/itau_test.rb
|
|
182
227
|
- test/br_boleto/remessa/cnab400/sicoob_test.rb
|
|
228
|
+
- test/br_boleto/remessa/cnab400/sicredi_test.rb
|
|
229
|
+
- test/br_boleto/remessa/cnab400/unicred_test.rb
|
|
183
230
|
- test/br_boleto/remessa/lote_test.rb
|
|
184
231
|
- test/br_boleto/remessa/pagamento_test.rb
|
|
185
232
|
- test/br_boleto/retorno/base_test.rb
|
|
186
233
|
- test/br_boleto/retorno/cnab240/base_test.rb
|
|
234
|
+
- test/br_boleto/retorno/cnab240/bradesco_test.rb
|
|
187
235
|
- test/br_boleto/retorno/cnab240/caixa_test.rb
|
|
236
|
+
- test/br_boleto/retorno/cnab240/cecred_test.rb
|
|
237
|
+
- test/br_boleto/retorno/cnab240/itau_test.rb
|
|
188
238
|
- test/br_boleto/retorno/cnab240/sicoob_test.rb
|
|
239
|
+
- test/br_boleto/retorno/cnab240/sicredi_test.rb
|
|
240
|
+
- test/br_boleto/retorno/cnab240/unicred_test.rb
|
|
241
|
+
- test/br_boleto/retorno/cnab400/bradesco_test.rb
|
|
242
|
+
- test/br_boleto/retorno/cnab400/itau_test.rb
|
|
189
243
|
- test/br_boleto/retorno/cnab400/sicoob_test.rb
|
|
244
|
+
- test/br_boleto/retorno/cnab400/sicredi_test.rb
|
|
245
|
+
- test/br_boleto/retorno/cnab400/unicred.rb
|
|
190
246
|
- test/br_boleto/retorno/pagamento_test.rb
|
|
191
247
|
- test/factories/boleto/base.rb
|
|
248
|
+
- test/factories/boleto/boleto_bradesco.rb
|
|
192
249
|
- test/factories/boleto/boleto_caixa.rb
|
|
250
|
+
- test/factories/boleto/boleto_cecred.rb
|
|
251
|
+
- test/factories/boleto/boleto_itau.rb
|
|
193
252
|
- test/factories/boleto/boleto_sicoob.rb
|
|
253
|
+
- test/factories/boleto/boleto_sicredi.rb
|
|
254
|
+
- test/factories/boleto/boleto_unicred.rb
|
|
194
255
|
- test/factories/conta/base.rb
|
|
256
|
+
- test/factories/conta/bradesco.rb
|
|
195
257
|
- test/factories/conta/caixa.rb
|
|
258
|
+
- test/factories/conta/cecred.rb
|
|
259
|
+
- test/factories/conta/itau.rb
|
|
196
260
|
- test/factories/conta/sicoob.rb
|
|
261
|
+
- test/factories/conta/sicredi.rb
|
|
262
|
+
- test/factories/conta/unicred.rb
|
|
197
263
|
- test/factories/pagador.rb
|
|
198
264
|
- test/factories/remessa/base.rb
|
|
199
265
|
- test/factories/remessa/cnab240/base.rb
|
|
266
|
+
- test/factories/remessa/cnab240/bradesco.rb
|
|
200
267
|
- test/factories/remessa/cnab240/caixa.rb
|
|
268
|
+
- test/factories/remessa/cnab240/cecred.rb
|
|
269
|
+
- test/factories/remessa/cnab240/itau.rb
|
|
201
270
|
- test/factories/remessa/cnab240/sicoob.rb
|
|
271
|
+
- test/factories/remessa/cnab240/sicredi.rb
|
|
272
|
+
- test/factories/remessa/cnab240/unicred.rb
|
|
202
273
|
- test/factories/remessa/cnab400/base.rb
|
|
274
|
+
- test/factories/remessa/cnab400/bradesco.rb
|
|
275
|
+
- test/factories/remessa/cnab400/itau.rb
|
|
203
276
|
- test/factories/remessa/cnab400/sicoob.rb
|
|
277
|
+
- test/factories/remessa/cnab400/sicredi.rb
|
|
278
|
+
- test/factories/remessa/cnab400/unicred.rb
|
|
204
279
|
- test/factories/remessa/lote.rb
|
|
205
280
|
- test/factories/remessa/pagamento.rb
|
|
206
281
|
- test/factories/retorno/pagamento.rb
|
|
282
|
+
- test/fixtures/remessa/cnab240/caixa.rem
|
|
283
|
+
- test/fixtures/remessa/cnab240/cecred.rem
|
|
207
284
|
- test/fixtures/remessa/cnab240/sicoob.rem
|
|
285
|
+
- test/fixtures/remessa/cnab240/unicred.rem
|
|
208
286
|
- test/fixtures/retorno/cnab240/caixa.ret
|
|
209
287
|
- test/fixtures/retorno/cnab240/padrao240.ret
|
|
288
|
+
- test/fixtures/retorno/cnab400/bradesco.ret
|
|
289
|
+
- test/fixtures/retorno/cnab400/itau.ret
|
|
210
290
|
- test/fixtures/retorno/cnab400/sicoob.ret
|
|
211
291
|
- test/inheritance/boleto_test.rb
|
|
212
292
|
- test/inheritance/sicoob_test.rb
|
|
@@ -223,7 +303,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
223
303
|
requirements:
|
|
224
304
|
- - "~>"
|
|
225
305
|
- !ruby/object:Gem::Version
|
|
226
|
-
version: '2.
|
|
306
|
+
version: '2.2'
|
|
307
|
+
- - "~>"
|
|
308
|
+
- !ruby/object:Gem::Version
|
|
309
|
+
version: '2.3'
|
|
227
310
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
311
|
requirements:
|
|
229
312
|
- - ">="
|
|
@@ -240,8 +323,13 @@ test_files:
|
|
|
240
323
|
- test/br_boleto/association/have_pagador_test.rb
|
|
241
324
|
- test/br_boleto/association/have_pagamentos_test.rb
|
|
242
325
|
- test/br_boleto/boleto/base_test.rb
|
|
326
|
+
- test/br_boleto/boleto/bradesco_test.rb
|
|
243
327
|
- test/br_boleto/boleto/caixa_test.rb
|
|
328
|
+
- test/br_boleto/boleto/cecred_test.rb
|
|
329
|
+
- test/br_boleto/boleto/itau_test.rb
|
|
244
330
|
- test/br_boleto/boleto/sicoob_test.rb
|
|
331
|
+
- test/br_boleto/boleto/sicredi_test.rb
|
|
332
|
+
- test/br_boleto/boleto/unicred_test.rb
|
|
245
333
|
- test/br_boleto/calculos/digitos_test.rb
|
|
246
334
|
- test/br_boleto/calculos/fator_vencimento_test.rb
|
|
247
335
|
- test/br_boleto/calculos/fatores_de_multiplicacao_test.rb
|
|
@@ -256,13 +344,20 @@ test_files:
|
|
|
256
344
|
- test/br_boleto/calculos/modulo11_test.rb
|
|
257
345
|
- test/br_boleto/calculos/modulo_numero_de_controle_test.rb
|
|
258
346
|
- test/br_boleto/conta/base_test.rb
|
|
347
|
+
- test/br_boleto/conta/bradesco_test.rb
|
|
259
348
|
- test/br_boleto/conta/caixa_test.rb
|
|
349
|
+
- test/br_boleto/conta/cecred_test.rb
|
|
350
|
+
- test/br_boleto/conta/itau_test.rb
|
|
260
351
|
- test/br_boleto/conta/sicoob_test.rb
|
|
352
|
+
- test/br_boleto/conta/sicredi_test.rb
|
|
353
|
+
- test/br_boleto/conta/unicred_test.rb
|
|
261
354
|
- test/br_boleto/helper/number_test.rb
|
|
262
355
|
- test/br_boleto/pagador_test.rb
|
|
263
356
|
- test/br_boleto/remessa/base_test.rb
|
|
264
357
|
- test/br_boleto/remessa/cnab240/base_test.rb
|
|
358
|
+
- test/br_boleto/remessa/cnab240/bradesco_test.rb
|
|
265
359
|
- test/br_boleto/remessa/cnab240/caixa_test.rb
|
|
360
|
+
- test/br_boleto/remessa/cnab240/cecred_test.rb
|
|
266
361
|
- test/br_boleto/remessa/cnab240/helper/header_arquivo_test.rb
|
|
267
362
|
- test/br_boleto/remessa/cnab240/helper/header_lote_test.rb
|
|
268
363
|
- test/br_boleto/remessa/cnab240/helper/segmento_p_test.rb
|
|
@@ -271,36 +366,76 @@ test_files:
|
|
|
271
366
|
- test/br_boleto/remessa/cnab240/helper/segmento_s_test.rb
|
|
272
367
|
- test/br_boleto/remessa/cnab240/helper/trailer_arquivo_test.rb
|
|
273
368
|
- test/br_boleto/remessa/cnab240/helper/trailer_lote_test.rb
|
|
369
|
+
- test/br_boleto/remessa/cnab240/itau_test.rb
|
|
274
370
|
- test/br_boleto/remessa/cnab240/sicoob_test.rb
|
|
371
|
+
- test/br_boleto/remessa/cnab240/sicredi_test.rb
|
|
372
|
+
- test/br_boleto/remessa/cnab240/unicred_test.rb
|
|
275
373
|
- test/br_boleto/remessa/cnab400/base_test.rb
|
|
374
|
+
- test/br_boleto/remessa/cnab400/bradesco_test.rb
|
|
375
|
+
- test/br_boleto/remessa/cnab400/itau_test.rb
|
|
276
376
|
- test/br_boleto/remessa/cnab400/sicoob_test.rb
|
|
377
|
+
- test/br_boleto/remessa/cnab400/sicredi_test.rb
|
|
378
|
+
- test/br_boleto/remessa/cnab400/unicred_test.rb
|
|
277
379
|
- test/br_boleto/remessa/lote_test.rb
|
|
278
380
|
- test/br_boleto/remessa/pagamento_test.rb
|
|
279
381
|
- test/br_boleto/retorno/base_test.rb
|
|
280
382
|
- test/br_boleto/retorno/cnab240/base_test.rb
|
|
383
|
+
- test/br_boleto/retorno/cnab240/bradesco_test.rb
|
|
281
384
|
- test/br_boleto/retorno/cnab240/caixa_test.rb
|
|
385
|
+
- test/br_boleto/retorno/cnab240/cecred_test.rb
|
|
386
|
+
- test/br_boleto/retorno/cnab240/itau_test.rb
|
|
282
387
|
- test/br_boleto/retorno/cnab240/sicoob_test.rb
|
|
388
|
+
- test/br_boleto/retorno/cnab240/sicredi_test.rb
|
|
389
|
+
- test/br_boleto/retorno/cnab240/unicred_test.rb
|
|
390
|
+
- test/br_boleto/retorno/cnab400/bradesco_test.rb
|
|
391
|
+
- test/br_boleto/retorno/cnab400/itau_test.rb
|
|
283
392
|
- test/br_boleto/retorno/cnab400/sicoob_test.rb
|
|
393
|
+
- test/br_boleto/retorno/cnab400/sicredi_test.rb
|
|
394
|
+
- test/br_boleto/retorno/cnab400/unicred.rb
|
|
284
395
|
- test/br_boleto/retorno/pagamento_test.rb
|
|
285
396
|
- test/factories/boleto/base.rb
|
|
397
|
+
- test/factories/boleto/boleto_bradesco.rb
|
|
286
398
|
- test/factories/boleto/boleto_caixa.rb
|
|
399
|
+
- test/factories/boleto/boleto_cecred.rb
|
|
400
|
+
- test/factories/boleto/boleto_itau.rb
|
|
287
401
|
- test/factories/boleto/boleto_sicoob.rb
|
|
402
|
+
- test/factories/boleto/boleto_sicredi.rb
|
|
403
|
+
- test/factories/boleto/boleto_unicred.rb
|
|
288
404
|
- test/factories/conta/base.rb
|
|
405
|
+
- test/factories/conta/bradesco.rb
|
|
289
406
|
- test/factories/conta/caixa.rb
|
|
407
|
+
- test/factories/conta/cecred.rb
|
|
408
|
+
- test/factories/conta/itau.rb
|
|
290
409
|
- test/factories/conta/sicoob.rb
|
|
410
|
+
- test/factories/conta/sicredi.rb
|
|
411
|
+
- test/factories/conta/unicred.rb
|
|
291
412
|
- test/factories/pagador.rb
|
|
292
413
|
- test/factories/remessa/base.rb
|
|
293
414
|
- test/factories/remessa/cnab240/base.rb
|
|
415
|
+
- test/factories/remessa/cnab240/bradesco.rb
|
|
294
416
|
- test/factories/remessa/cnab240/caixa.rb
|
|
417
|
+
- test/factories/remessa/cnab240/cecred.rb
|
|
418
|
+
- test/factories/remessa/cnab240/itau.rb
|
|
295
419
|
- test/factories/remessa/cnab240/sicoob.rb
|
|
420
|
+
- test/factories/remessa/cnab240/sicredi.rb
|
|
421
|
+
- test/factories/remessa/cnab240/unicred.rb
|
|
296
422
|
- test/factories/remessa/cnab400/base.rb
|
|
423
|
+
- test/factories/remessa/cnab400/bradesco.rb
|
|
424
|
+
- test/factories/remessa/cnab400/itau.rb
|
|
297
425
|
- test/factories/remessa/cnab400/sicoob.rb
|
|
426
|
+
- test/factories/remessa/cnab400/sicredi.rb
|
|
427
|
+
- test/factories/remessa/cnab400/unicred.rb
|
|
298
428
|
- test/factories/remessa/lote.rb
|
|
299
429
|
- test/factories/remessa/pagamento.rb
|
|
300
430
|
- test/factories/retorno/pagamento.rb
|
|
431
|
+
- test/fixtures/remessa/cnab240/caixa.rem
|
|
432
|
+
- test/fixtures/remessa/cnab240/cecred.rem
|
|
301
433
|
- test/fixtures/remessa/cnab240/sicoob.rem
|
|
434
|
+
- test/fixtures/remessa/cnab240/unicred.rem
|
|
302
435
|
- test/fixtures/retorno/cnab240/caixa.ret
|
|
303
436
|
- test/fixtures/retorno/cnab240/padrao240.ret
|
|
437
|
+
- test/fixtures/retorno/cnab400/bradesco.ret
|
|
438
|
+
- test/fixtures/retorno/cnab400/itau.ret
|
|
304
439
|
- test/fixtures/retorno/cnab400/sicoob.ret
|
|
305
440
|
- test/inheritance/boleto_test.rb
|
|
306
441
|
- test/inheritance/sicoob_test.rb
|