qrcode_pix_ruby 0.3.0 → 0.3.1
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/CHANGELOG.md +4 -0
- data/README.md +7 -1
- data/lib/qrcode_pix_ruby/version.rb +1 -1
- data/pix_logo.png +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a89f4f771eb92afd1e79e80a77e8e840f6a6153b3a1eaa87817cf7f55b6c5fe
|
|
4
|
+
data.tar.gz: aa32079cb5ec5e062c7c44bbfefa923be294bd77555663b8a9fd70e00145ffb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e3dbb3cc8dcc29581a23dd8c6fce4675f4a931ffbf9d08db0c9680e81a43e9085611713e1c5f69b97cd67b6f730634d4021d437a062040ce1365a5a52488f07
|
|
7
|
+
data.tar.gz: 22cc6f095f9efc972c243280ff25fb249c69caa46fa33dbdd99ec71323ba285df069ee11f620ee6e71f9601908954fabebf6bf947c4b853addc82596d8818aeb
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
[]()
|
|
9
9
|
[](https://github.com/pedrofurtado/qrcode_pix_ruby)
|
|
10
10
|
|
|
11
|
-
Ruby gem for Qrcode generation of Pix (Pagamento Instantâneo Brasileiro - Banco Central do Brasil)
|
|
11
|
+
Ruby gem for Qrcode generation of Pix (Pagamento Instantâneo Brasileiro - Banco Central do Brasil).
|
|
12
|
+
|
|
13
|
+
<img src="https://github.com/pedrofurtado/qrcode_pix_ruby/blob/master/pix_logo.png?raw=true" height="100px" />
|
|
12
14
|
|
|
13
15
|
## Installation
|
|
14
16
|
|
|
@@ -51,6 +53,8 @@ puts pix.payload
|
|
|
51
53
|
puts pix.base64
|
|
52
54
|
```
|
|
53
55
|
|
|
56
|
+
🚨 Important note: BACEN (Banco Central do Brasil) sets a variety of rules for each field in QRCode Payload (maximum number of characters, invalid values, mandatory and optional fields, and so on). So, pay attention that a QRCode payload+base64 generated by the gem can be valid, theorically, but may not be accepted in banking apps because of these restrictions (that are out of scope of gem).
|
|
57
|
+
|
|
54
58
|
## Useful links
|
|
55
59
|
|
|
56
60
|
* https://github.com/joseviniciusnunes/qrcode-pix
|
|
@@ -67,6 +71,8 @@ puts pix.base64
|
|
|
67
71
|
* https://qrcodepix.dinheiro.tech
|
|
68
72
|
* http://decoder.qrcodepix.dinheiro.tech
|
|
69
73
|
* https://www.bcb.gov.br/estabilidadefinanceira/pix
|
|
74
|
+
* https://gerencianet.com.br/blog/qr-code-estatico-qr-code-dinamico-no-pix
|
|
75
|
+
* https://blog.juno.com.br/pix-qr-code-estatico-x-qr-code-dinamico
|
|
70
76
|
|
|
71
77
|
## Contributing
|
|
72
78
|
|
data/pix_logo.png
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qrcode_pix_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Furtado
|
|
@@ -77,6 +77,7 @@ files:
|
|
|
77
77
|
- lib/qrcode_pix_ruby.rb
|
|
78
78
|
- lib/qrcode_pix_ruby/payload.rb
|
|
79
79
|
- lib/qrcode_pix_ruby/version.rb
|
|
80
|
+
- pix_logo.png
|
|
80
81
|
- qrcode_pix_ruby.gemspec
|
|
81
82
|
homepage: https://github.com/pedrofurtado/qrcode_pix_ruby
|
|
82
83
|
licenses:
|