qrcode_pix_ruby 0.3.1 → 0.3.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Dockerfile +8 -0
- data/README.md +15 -0
- data/lib/qrcode_pix_ruby/version.rb +1 -1
- data/qrcode_pix_ruby.gemspec +2 -2
- metadata +7 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84a357b21f2470212773cc92b26e4c6342e03ab211bc143890dd3f1d9d83fc12
|
|
4
|
+
data.tar.gz: ff3a3f5132cd865a342abab66622adeb4e1bdfc3d3b2f09cbfc045856a8b7a02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d07fafa359a2cc609e7eebd6518af234367e961b5cd427e0520ec15c0d920c5f5c236276157fd9bf73632e60c9543b3de682195cc5f6110790131a89920df49
|
|
7
|
+
data.tar.gz: 702724974cb6e1842d576977c7fa155528136b189c0751d022ae2b4f39fc055959b0a992d6fd42d561305763757d0be82367a15cc2dfedc14315f0bb6ce901f7
|
data/CHANGELOG.md
CHANGED
data/Dockerfile
ADDED
data/README.md
CHANGED
|
@@ -74,6 +74,21 @@ puts pix.base64
|
|
|
74
74
|
* https://gerencianet.com.br/blog/qr-code-estatico-qr-code-dinamico-no-pix
|
|
75
75
|
* https://blog.juno.com.br/pix-qr-code-estatico-x-qr-code-dinamico
|
|
76
76
|
|
|
77
|
+
## Execute tests/specs
|
|
78
|
+
|
|
79
|
+
To execute gem tests locally, use Docker with the commands below:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
git clone https://github.com/pedrofurtado/qrcode_pix_ruby
|
|
83
|
+
cd qrcode_pix_ruby/
|
|
84
|
+
docker build -t qrcode_pix_ruby_specs .
|
|
85
|
+
|
|
86
|
+
# Then, run this command how many times you want,
|
|
87
|
+
# after editing local files, and so on, to get
|
|
88
|
+
# feedback from test suite of gem.
|
|
89
|
+
docker run -v $(pwd):/app/ -it qrcode_pix_ruby_specs
|
|
90
|
+
```
|
|
91
|
+
|
|
77
92
|
## Contributing
|
|
78
93
|
|
|
79
94
|
Bug reports and pull requests are welcome on GitHub at https://github.com/pedrofurtado/qrcode_pix_ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/pedrofurtado/qrcode_pix_ruby/blob/master/CODE_OF_CONDUCT.md).
|
data/qrcode_pix_ruby.gemspec
CHANGED
|
@@ -5,8 +5,8 @@ require_relative 'lib/qrcode_pix_ruby/version'
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'qrcode_pix_ruby'
|
|
7
7
|
spec.version = QrcodePixRuby::VERSION
|
|
8
|
-
spec.authors = ["Pedro Furtado", "Marcio de Jesus"]
|
|
9
|
-
spec.email = ["pedro.felipe.azevedo.furtado@gmail.com", "marciodejesusrj@gmail.com"]
|
|
8
|
+
spec.authors = ["Pedro Furtado", "Marcio de Jesus", "William Radi", "Leonardo Comar"]
|
|
9
|
+
spec.email = ["pedro.felipe.azevedo.furtado@gmail.com", "marciodejesusrj@gmail.com", "williamw@lbv.org.br", "lfcomar@lbv.org.br"]
|
|
10
10
|
spec.summary = "Ruby gem for Qrcode generation of Pix (Pagamento Instantâneo Brasileiro - Banco Central do Brasil)"
|
|
11
11
|
spec.description = "Ruby gem for Qrcode generation of Pix (Pagamento Instantâneo Brasileiro - Banco Central do Brasil)"
|
|
12
12
|
spec.homepage = "https://github.com/pedrofurtado/qrcode_pix_ruby"
|
metadata
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Furtado
|
|
8
8
|
- Marcio de Jesus
|
|
9
|
+
- William Radi
|
|
10
|
+
- Leonardo Comar
|
|
9
11
|
autorequire:
|
|
10
12
|
bindir: exe
|
|
11
13
|
cert_chain: []
|
|
12
|
-
date: 2021-06-
|
|
14
|
+
date: 2021-06-25 00:00:00.000000000 Z
|
|
13
15
|
dependencies:
|
|
14
16
|
- !ruby/object:Gem::Dependency
|
|
15
17
|
name: rake
|
|
@@ -58,6 +60,8 @@ description: Ruby gem for Qrcode generation of Pix (Pagamento Instantâneo Brasi
|
|
|
58
60
|
email:
|
|
59
61
|
- pedro.felipe.azevedo.furtado@gmail.com
|
|
60
62
|
- marciodejesusrj@gmail.com
|
|
63
|
+
- williamw@lbv.org.br
|
|
64
|
+
- lfcomar@lbv.org.br
|
|
61
65
|
executables: []
|
|
62
66
|
extensions: []
|
|
63
67
|
extra_rdoc_files: []
|
|
@@ -68,6 +72,7 @@ files:
|
|
|
68
72
|
- ".rspec"
|
|
69
73
|
- CHANGELOG.md
|
|
70
74
|
- CODE_OF_CONDUCT.md
|
|
75
|
+
- Dockerfile
|
|
71
76
|
- Gemfile
|
|
72
77
|
- LICENSE.txt
|
|
73
78
|
- README.md
|