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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a89f4f771eb92afd1e79e80a77e8e840f6a6153b3a1eaa87817cf7f55b6c5fe
4
- data.tar.gz: aa32079cb5ec5e062c7c44bbfefa923be294bd77555663b8a9fd70e00145ffb5
3
+ metadata.gz: 84a357b21f2470212773cc92b26e4c6342e03ab211bc143890dd3f1d9d83fc12
4
+ data.tar.gz: ff3a3f5132cd865a342abab66622adeb4e1bdfc3d3b2f09cbfc045856a8b7a02
5
5
  SHA512:
6
- metadata.gz: 8e3dbb3cc8dcc29581a23dd8c6fce4675f4a931ffbf9d08db0c9680e81a43e9085611713e1c5f69b97cd67b6f730634d4021d437a062040ce1365a5a52488f07
7
- data.tar.gz: 22cc6f095f9efc972c243280ff25fb249c69caa46fa33dbdd99ec71323ba285df069ee11f620ee6e71f9601908954fabebf6bf947c4b853addc82596d8818aeb
6
+ metadata.gz: 4d07fafa359a2cc609e7eebd6518af234367e961b5cd427e0520ec15c0d920c5f5c236276157fd9bf73632e60c9543b3de682195cc5f6110790131a89920df49
7
+ data.tar.gz: 702724974cb6e1842d576977c7fa155528136b189c0751d022ae2b4f39fc055959b0a992d6fd42d561305763757d0be82367a15cc2dfedc14315f0bb6ce901f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.2] - 2021-06-24
4
+
5
+ - Setup for run tests/specs locally with Docker
6
+
3
7
  ## [0.3.1] - 2021-06-24
4
8
 
5
9
  - More documentation
data/Dockerfile ADDED
@@ -0,0 +1,8 @@
1
+ FROM ruby:3.0.0-alpine
2
+ RUN apk update && apk add git
3
+ RUN mkdir -p /app/
4
+ WORKDIR /app/
5
+ VOLUME /app/
6
+ COPY . /app/
7
+ RUN bundle install
8
+ CMD bundle exec rake
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).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QrcodePixRuby
4
- VERSION = '0.3.1'.freeze
4
+ VERSION = '0.3.2'.freeze
5
5
  end
@@ -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.1
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-24 00:00:00.000000000 Z
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