bs2_api 0.3.2 → 1.0.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/.github/workflows/test.yml +34 -0
- data/CHANGELOG.md +12 -5
- data/Gemfile.lock +1 -1
- data/README.md +27 -20
- data/bs2_api.gemspec +2 -0
- data/lib/bs2_api.rb +4 -4
- data/lib/bs2_api/configuration.rb +2 -0
- data/lib/bs2_api/entities/payment.rb +13 -13
- data/lib/bs2_api/payment/base.rb +4 -19
- data/lib/bs2_api/payment/confirmation.rb +6 -6
- data/lib/bs2_api/request/auth.rb +2 -2
- data/lib/bs2_api/util/response.rb +20 -0
- data/lib/bs2_api/version.rb +1 -1
- metadata +6 -5
- data/lib/bs2_api/initializers/hash.rb +0 -9
- data/lib/bs2_api/initializers/object.rb +0 -11
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 0e4c949521f5aa35e0d70b1f60ecf2b2f564506624ed734119f60da621405ed0
         | 
| 4 | 
            +
              data.tar.gz: dcb26cdbc5609f26278c71da41c76506a6c3c3e4c8cffd1ecab462762a428a07
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: b8a5e2c6eff25d932b8ca1bd8645b41b1b3d5791e89d554c1d57494fa25d445f10f52fd056ef989a040fb9646e1d3aec0e8e83bc2674256423db0e4dac670d59
         | 
| 7 | 
            +
              data.tar.gz: 7e08dbc26de1e902aa9ead89c69669bb0b2d4b27bef863966abad162a64d01b0f1e621191e47797c34f9f7545fdde5131325a769ad2f3f6a3bf42562ad181557
         | 
| @@ -0,0 +1,34 @@ | |
| 1 | 
            +
            name: bs2_api test
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            on:
         | 
| 4 | 
            +
              push:
         | 
| 5 | 
            +
                branches: [ main ]
         | 
| 6 | 
            +
              pull_request:
         | 
| 7 | 
            +
                types: [ opened, synchronize, reopened ]
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            jobs:
         | 
| 10 | 
            +
              test:
         | 
| 11 | 
            +
                runs-on: ubuntu-latest
         | 
| 12 | 
            +
                env:
         | 
| 13 | 
            +
                  BS2_ENVIRONMENT: 'sandbox'
         | 
| 14 | 
            +
                  BS2_CLIENT_ID: '123'
         | 
| 15 | 
            +
                  BS2_CLIENT_SECRET: '123'
         | 
| 16 | 
            +
                  BS2_EVP_TEST_KEY: '123'
         | 
| 17 | 
            +
                
         | 
| 18 | 
            +
                strategy:
         | 
| 19 | 
            +
                  matrix:
         | 
| 20 | 
            +
                    ruby-version: ["2.7.2"]
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                steps:
         | 
| 23 | 
            +
                - uses: actions/checkout@v2
         | 
| 24 | 
            +
                
         | 
| 25 | 
            +
                - name: Set up Ruby
         | 
| 26 | 
            +
                  uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
         | 
| 27 | 
            +
                  with:
         | 
| 28 | 
            +
                    ruby-version: ${{ matrix.ruby-version }}
         | 
| 29 | 
            +
             | 
| 30 | 
            +
                - name: Install dependencies
         | 
| 31 | 
            +
                  run: bundle install
         | 
| 32 | 
            +
             | 
| 33 | 
            +
                - name: Run tests
         | 
| 34 | 
            +
                  run: bundle exec rspec spec/
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,16 +1,23 @@ | |
| 1 | 
            -
            ## [0. | 
| 1 | 
            +
            ## [1.0.1] - 2021-06-25
         | 
| 2 | 
            +
            - Adjust HTTP response code when create payments into BS2
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            ## [1.0.0] - 2021-06-18
         | 
| 5 | 
            +
            - Changed payment.id to payment.payment_id
         | 
| 6 | 
            +
            - Changed payment.merchant_id to payment.end_to_end_id
         | 
| 2 7 |  | 
| 8 | 
            +
            ## [0.4.0] - 2021-06-17
         | 
| 9 | 
            +
            - Configuration#valid? missing return true
         | 
| 10 | 
            +
            - Created Util::Response.parse_error
         | 
| 11 | 
            +
            - Bs2Api::Payment::Confirmation#success? was private, moved it to public
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            ## [0.3.1] - 2021-06-16
         | 
| 3 14 | 
             
            - Method Hash#to_query conflicting with Rails
         | 
| 4 15 |  | 
| 5 16 | 
             
            ## [0.3.0] - 2021-06-16
         | 
| 6 | 
            -
             | 
| 7 17 | 
             
            - Confirmation, Adjust README.md
         | 
| 8 18 |  | 
| 9 19 | 
             
            ## [0.2.0] - 2021-06-15
         | 
| 10 | 
            -
             | 
| 11 20 | 
             
            - Entities, Auth, Create Pix Key Payment
         | 
| 12 21 |  | 
| 13 | 
            -
             | 
| 14 22 | 
             
            ## [0.1.0] - 2021-06-11
         | 
| 15 | 
            -
             | 
| 16 23 | 
             
            - Initial release
         | 
    
        data/Gemfile.lock
    CHANGED
    
    
    
        data/README.md
    CHANGED
    
    | @@ -1,3 +1,8 @@ | |
| 1 | 
            +
            [](https://github.com/latamgateway/bs2_api/actions/workflows/test.yml)
         | 
| 2 | 
            +
            [](http://github.com/latamgateway/bs2_api/releases)
         | 
| 3 | 
            +
            [](https://rubygems.org/gems/bs2_api)
         | 
| 4 | 
            +
            [](https://github.com/latamgateway/bs2_api/blob/main/LICENSE)
         | 
| 5 | 
            +
             | 
| 1 6 | 
             
            # Bs2Api
         | 
| 2 7 |  | 
| 3 8 | 
             
            Integração com a API do Banco BS2: https://devs.bs2.com/manual/pix-clientes
         | 
| @@ -61,10 +66,10 @@ pix_key = Bs2Api::Entities::PixKey.new( | |
| 61 66 | 
             
            # Veja abaixo (Classes de errors) quais erros que podem ser lançados
         | 
| 62 67 | 
             
            pay_key = Bs2Api::Payment::Key.new(pix_key).call
         | 
| 63 68 |  | 
| 64 | 
            -
            pay_key.payment. | 
| 69 | 
            +
            pay_key.payment.payment_idid
         | 
| 65 70 | 
             
            => "96f0b3c4-4c76-4a7a-9933-9c9f86df7490" # pagamentoId gerado no BS2
         | 
| 66 71 |  | 
| 67 | 
            -
            pay_key.payment. | 
| 72 | 
            +
            pay_key.payment.end_to_end_id
         | 
| 68 73 | 
             
            => "E710278662021061618144401750781P" # endToEndId gerado no BS2
         | 
| 69 74 |  | 
| 70 75 | 
             
            ```
         | 
| @@ -93,40 +98,41 @@ receiver_bank = Bs2Api::Entities::Bank.new( | |
| 93 98 |  | 
| 94 99 | 
             
            pay_manual = Bs2Api::Payment::Manual.new(receiver_bank).call
         | 
| 95 100 |  | 
| 96 | 
            -
            pay_manual.payment. | 
| 101 | 
            +
            pay_manual.payment.payment_id
         | 
| 97 102 | 
             
            => "96f0b3c4-4c76-4a7a-9933-9c9f86df7490" # UUID gerado no BS2
         | 
| 98 103 |  | 
| 99 | 
            -
            pay_manual.payment. | 
| 104 | 
            +
            pay_manual.payment.end_to_end_id
         | 
| 100 105 | 
             
            => "E710278662021061618144401750781P" # endToEndId gerado no BS2
         | 
| 101 106 | 
             
            ```
         | 
| 102 107 |  | 
| 103 108 | 
             
            ### Confirmar ordem de transferência
         | 
| 104 | 
            -
             | 
| 105 | 
            -
             | 
| 106 | 
            -
            # Nessa etapa o dinheiro é de fato transferido
         | 
| 109 | 
            +
            Após criar um Payment é necessário confirmar, nessa etapa o dinheiro é de fato transferido.
         | 
| 110 | 
            +
            Nessa etapa é necessário **informar o valor** que deseja ser transferido.
         | 
| 107 111 |  | 
| 108 | 
            -
             | 
| 109 | 
            -
            # Caso tenha criado via chave no passo anterior:
         | 
| 110 | 
            -
            payment = pay_key.payment
         | 
| 112 | 
            +
            ```ruby
         | 
| 111 113 |  | 
| 112 | 
            -
            #  | 
| 113 | 
            -
             | 
| 114 | 
            +
            # Ambos modelos de criação da ordem de pagamento possuem o mesmo objeto payment
         | 
| 115 | 
            +
            # podendo ser utilizado da mesma forma nos dois casos:
         | 
| 116 | 
            +
            # pay_key.payment ou pay_manual.payment
         | 
| 114 117 |  | 
| 118 | 
            +
            payment = pay_key.payment
         | 
| 115 119 | 
             
            amount = 10.50
         | 
| 120 | 
            +
             | 
| 116 121 | 
             
            confirmation = Bs2Api::Payment::Confirmation.new(payment, value: amount).call
         | 
| 117 122 |  | 
| 118 | 
            -
            # Caso a confirmação  | 
| 123 | 
            +
            # Caso a confirmação dê problema, um erro será lançado.
         | 
| 119 124 | 
             
            raise Bs2Api::Errors::ConfirmationError
         | 
| 120 125 |  | 
| 121 | 
            -
            # Caso nenhum erro seja lançado  | 
| 126 | 
            +
            # Caso nenhum erro seja lançado significa que foi sucesso. Você pode ter certeza com
         | 
| 122 127 | 
             
            confirmation.success?
         | 
| 123 128 | 
             
            ```
         | 
| 124 | 
            -
             | 
| 129 | 
            +
             | 
| 125 130 | 
             
            ### Classes de erros:
         | 
| 126 131 | 
             
            ```ruby
         | 
| 127 132 | 
             
            # Todos erros herdam de:
         | 
| 128 133 | 
             
            Bs2Api::Errors::Base
         | 
| 129 134 |  | 
| 135 | 
            +
            # Errors possíveis de serem lançados
         | 
| 130 136 | 
             
            Bs2Api::Errors::BadRequest
         | 
| 131 137 | 
             
            Bs2Api::Errors::ConfirmationError
         | 
| 132 138 | 
             
            Bs2Api::Errors::InvalidCustomer
         | 
| @@ -134,9 +140,10 @@ Bs2Api::Errors::InvalidPixKey | |
| 134 140 | 
             
            Bs2Api::Errors::MissingConfiguration
         | 
| 135 141 | 
             
            Bs2Api::Errors::ServerError
         | 
| 136 142 | 
             
            Bs2Api::Errors::Unauthorized
         | 
| 137 | 
            -
             | 
| 138 | 
            -
            # Caso não queira tratar um erro em específico basta fazer rescue do Base
         | 
| 139 | 
            -
            rescue Bs2Api::Errors::Base => e
         | 
| 140 | 
            -
              puts "Erro: #{e.message}"
         | 
| 141 | 
            -
            end
         | 
| 142 143 | 
             
            ```
         | 
| 144 | 
            +
             | 
| 145 | 
            +
            ---
         | 
| 146 | 
            +
             | 
| 147 | 
            +
            ### Observações
         | 
| 148 | 
            +
            - Método `call` retorna o próprio objeto
         | 
| 149 | 
            +
            - Em caso de retorno diferente de sucesso na comunicação com a API do Bs2, um erro sempre será lançado.
         | 
    
        data/bs2_api.gemspec
    CHANGED
    
    | @@ -13,6 +13,8 @@ Gem::Specification.new do |spec| | |
| 13 13 | 
             
              spec.homepage      = "https://github.com/latamgateway/bs2_api"
         | 
| 14 14 | 
             
              spec.required_ruby_version = "~> 2.7", "< 3"
         | 
| 15 15 |  | 
| 16 | 
            +
              spec.license = "MIT"
         | 
| 17 | 
            +
             | 
| 16 18 | 
             
              spec.metadata["homepage_uri"] = spec.homepage
         | 
| 17 19 | 
             
              spec.metadata["source_code_uri"] = "https://github.com/latamgateway/bs2_api"
         | 
| 18 20 | 
             
              spec.metadata["changelog_uri"] = "https://github.com/latamgateway/bs2_api/blob/main/CHANGELOG.md"
         | 
    
        data/lib/bs2_api.rb
    CHANGED
    
    | @@ -2,12 +2,14 @@ | |
| 2 2 | 
             
            require "httparty"
         | 
| 3 3 | 
             
            require "active_support/core_ext/hash/indifferent_access"
         | 
| 4 4 | 
             
            require "active_support/core_ext/hash/except"
         | 
| 5 | 
            +
            require "active_support/core_ext/object/to_query"
         | 
| 6 | 
            +
            require "active_support/core_ext/object/blank"
         | 
| 5 7 |  | 
| 6 8 | 
             
            require 'bs2_api/version'
         | 
| 7 9 | 
             
            require 'bs2_api/configuration'
         | 
| 8 10 |  | 
| 9 | 
            -
            require 'bs2_api/ | 
| 10 | 
            -
            require 'bs2_api/ | 
| 11 | 
            +
            require 'bs2_api/util/bank_service'
         | 
| 12 | 
            +
            require 'bs2_api/util/response'
         | 
| 11 13 |  | 
| 12 14 | 
             
            require 'bs2_api/errors/base'
         | 
| 13 15 | 
             
            require 'bs2_api/errors/invalid_pix_key'
         | 
| @@ -33,8 +35,6 @@ require 'bs2_api/payment/confirmation' | |
| 33 35 |  | 
| 34 36 | 
             
            require 'bs2_api/request/auth'
         | 
| 35 37 |  | 
| 36 | 
            -
            require 'bs2_api/util/bank_service'
         | 
| 37 | 
            -
             | 
| 38 38 | 
             
            module Bs2Api
         | 
| 39 39 | 
             
              ENDPOINT = {
         | 
| 40 40 | 
             
                production: 'https://api.bs2.com',
         | 
| @@ -3,22 +3,22 @@ | |
| 3 3 | 
             
            module Bs2Api
         | 
| 4 4 | 
             
              module Entities
         | 
| 5 5 | 
             
                class Payment
         | 
| 6 | 
            -
                  attr_accessor : | 
| 6 | 
            +
                  attr_accessor :payment_id, :end_to_end_id, :receiver, :payer
         | 
| 7 7 |  | 
| 8 8 | 
             
                  def initialize(args = {})
         | 
| 9 | 
            -
                    @ | 
| 10 | 
            -
                    @ | 
| 11 | 
            -
                    @receiver | 
| 12 | 
            -
                    @payer | 
| 9 | 
            +
                    @payment_id    = args.fetch(:payment_id, nil)
         | 
| 10 | 
            +
                    @end_to_end_id = args.fetch(:end_to_end_id, nil)
         | 
| 11 | 
            +
                    @receiver      = args.fetch(:receiver, nil)
         | 
| 12 | 
            +
                    @payer         = args.fetch(:payer, nil)
         | 
| 13 13 | 
             
                  end
         | 
| 14 14 |  | 
| 15 15 | 
             
                  def to_hash
         | 
| 16 16 | 
             
                    ActiveSupport::HashWithIndifferentAccess.new(
         | 
| 17 17 | 
             
                      {
         | 
| 18 | 
            -
                        "pagamentoId": @ | 
| 19 | 
            -
                        "endToEndId": | 
| 20 | 
            -
                        "recebedor": | 
| 21 | 
            -
                        "pagador": | 
| 18 | 
            +
                        "pagamentoId": @payment_id,
         | 
| 19 | 
            +
                        "endToEndId":  @end_to_end_id,
         | 
| 20 | 
            +
                        "recebedor":   @receiver.to_hash,
         | 
| 21 | 
            +
                        "pagador":     @payer.to_hash
         | 
| 22 22 | 
             
                      }
         | 
| 23 23 | 
             
                    )
         | 
| 24 24 | 
             
                  end
         | 
| @@ -27,10 +27,10 @@ module Bs2Api | |
| 27 27 | 
             
                    hash = ActiveSupport::HashWithIndifferentAccess.new(hash_payload)
         | 
| 28 28 |  | 
| 29 29 | 
             
                    Bs2Api::Entities::Payment.new(
         | 
| 30 | 
            -
                       | 
| 31 | 
            -
                       | 
| 32 | 
            -
                      receiver: | 
| 33 | 
            -
                      payer: | 
| 30 | 
            +
                      payment_id:    hash["pagamentoId"],
         | 
| 31 | 
            +
                      end_to_end_id: hash["endToEndId"],
         | 
| 32 | 
            +
                      receiver:      Bs2Api::Entities::Bank.from_response(hash["recebedor"]),
         | 
| 33 | 
            +
                      payer:         Bs2Api::Entities::Bank.from_response(hash["pagador"])
         | 
| 34 34 | 
             
                    )
         | 
| 35 35 | 
             
                  end
         | 
| 36 36 | 
             
                end
         | 
    
        data/lib/bs2_api/payment/base.rb
    CHANGED
    
    | @@ -9,8 +9,8 @@ module Bs2Api | |
| 9 9 |  | 
| 10 10 | 
             
                  def call
         | 
| 11 11 | 
             
                    response = post_request
         | 
| 12 | 
            -
                    raise Bs2Api::Errors::BadRequest, parse_error(response) unless response. | 
| 13 | 
            -
             | 
| 12 | 
            +
                    raise Bs2Api::Errors::BadRequest, ::Util::Response.parse_error(response) unless response.ok?
         | 
| 13 | 
            +
             | 
| 14 14 | 
             
                    @payment = Bs2Api::Entities::Payment.from_response(response)
         | 
| 15 15 | 
             
                    self
         | 
| 16 16 | 
             
                  end
         | 
| @@ -32,28 +32,13 @@ module Bs2Api | |
| 32 32 | 
             
                      Bs2Api::Request::Auth.token
         | 
| 33 33 | 
             
                    end
         | 
| 34 34 |  | 
| 35 | 
            -
                    def parse_error(response)
         | 
| 36 | 
            -
                      hash    = JSON.parse(response.body)
         | 
| 37 | 
            -
                      message = "#{response.code}: "
         | 
| 38 | 
            -
             | 
| 39 | 
            -
                      if hash.is_a?(Array)
         | 
| 40 | 
            -
                        message << hash[0]["descricao"]
         | 
| 41 | 
            -
                      elsif hash.key?("error_description")
         | 
| 42 | 
            -
                        message << hash["error_description"]
         | 
| 43 | 
            -
                      else 
         | 
| 44 | 
            -
                        message << hash.to_s
         | 
| 45 | 
            -
                      end
         | 
| 46 | 
            -
             | 
| 47 | 
            -
                      message
         | 
| 48 | 
            -
                    end
         | 
| 49 | 
            -
             | 
| 50 35 | 
             
                    def payload
         | 
| 51 36 | 
             
                      raise NoMethodError, "Missing #{__method__} to #{self.class}"
         | 
| 52 37 | 
             
                    end
         | 
| 53 | 
            -
             | 
| 38 | 
            +
             | 
| 54 39 | 
             
                    def url
         | 
| 55 40 | 
             
                      raise NoMethodError, "Missing #{__method__} to #{self.class}"
         | 
| 56 41 | 
             
                    end
         | 
| 57 42 | 
             
                end
         | 
| 58 43 | 
             
              end
         | 
| 59 | 
            -
            end
         | 
| 44 | 
            +
            end
         | 
| @@ -13,12 +13,16 @@ module Bs2Api | |
| 13 13 |  | 
| 14 14 | 
             
                  def call
         | 
| 15 15 | 
             
                    response = post_request
         | 
| 16 | 
            -
                    raise Bs2Api::Errors::ConfirmationError, parse_error(response) unless response.accepted?
         | 
| 16 | 
            +
                    raise Bs2Api::Errors::ConfirmationError, ::Util::Response.parse_error(response) unless response.accepted?
         | 
| 17 17 |  | 
| 18 18 | 
             
                    @success = true
         | 
| 19 19 | 
             
                    self
         | 
| 20 20 | 
             
                  end
         | 
| 21 21 |  | 
| 22 | 
            +
                  def success?
         | 
| 23 | 
            +
                    !!@success
         | 
| 24 | 
            +
                  end
         | 
| 25 | 
            +
             | 
| 22 26 | 
             
                  private
         | 
| 23 27 | 
             
                    def payload
         | 
| 24 28 | 
             
                      @payment.to_hash
         | 
| @@ -27,11 +31,7 @@ module Bs2Api | |
| 27 31 | 
             
                    end
         | 
| 28 32 |  | 
| 29 33 | 
             
                    def url
         | 
| 30 | 
            -
                      "#{Bs2Api.endpoint}/pix/direto/forintegration/v1/pagamentos/#{@payment. | 
| 31 | 
            -
                    end
         | 
| 32 | 
            -
             | 
| 33 | 
            -
                    def success?
         | 
| 34 | 
            -
                      !!@success
         | 
| 34 | 
            +
                      "#{Bs2Api.endpoint}/pix/direto/forintegration/v1/pagamentos/#{@payment.payment_id}/confirmacao"
         | 
| 35 35 | 
             
                    end
         | 
| 36 36 | 
             
                end
         | 
| 37 37 | 
             
              end
         | 
    
        data/lib/bs2_api/request/auth.rb
    CHANGED
    
    
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            module Util
         | 
| 2 | 
            +
              class Response
         | 
| 3 | 
            +
                class << self
         | 
| 4 | 
            +
                  def parse_error res
         | 
| 5 | 
            +
                    hash    = JSON.parse(res.body)
         | 
| 6 | 
            +
                    message = "#{res.code}: "
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                    if hash.is_a?(Array)
         | 
| 9 | 
            +
                      message << hash[0]["descricao"]
         | 
| 10 | 
            +
                    elsif hash.key?("error_description")
         | 
| 11 | 
            +
                      message << hash["error_description"]
         | 
| 12 | 
            +
                    else 
         | 
| 13 | 
            +
                      message << hash.to_s
         | 
| 14 | 
            +
                    end
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                    message
         | 
| 17 | 
            +
                  end
         | 
| 18 | 
            +
                end
         | 
| 19 | 
            +
              end
         | 
| 20 | 
            +
            end
         | 
    
        data/lib/bs2_api/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: bs2_api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 1.0.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Kim Pastro
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2021-06- | 
| 11 | 
            +
            date: 2021-06-25 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: builder
         | 
| @@ -184,6 +184,7 @@ extensions: [] | |
| 184 184 | 
             
            extra_rdoc_files: []
         | 
| 185 185 | 
             
            files:
         | 
| 186 186 | 
             
            - ".env.example"
         | 
| 187 | 
            +
            - ".github/workflows/test.yml"
         | 
| 187 188 | 
             
            - ".gitignore"
         | 
| 188 189 | 
             
            - ".rspec"
         | 
| 189 190 | 
             
            - ".ruby-version"
         | 
| @@ -214,8 +215,6 @@ files: | |
| 214 215 | 
             
            - lib/bs2_api/errors/missing_configuration.rb
         | 
| 215 216 | 
             
            - lib/bs2_api/errors/server_error.rb
         | 
| 216 217 | 
             
            - lib/bs2_api/errors/unauthorized.rb
         | 
| 217 | 
            -
            - lib/bs2_api/initializers/hash.rb
         | 
| 218 | 
            -
            - lib/bs2_api/initializers/object.rb
         | 
| 219 218 | 
             
            - lib/bs2_api/payment/base.rb
         | 
| 220 219 | 
             
            - lib/bs2_api/payment/confirmation.rb
         | 
| 221 220 | 
             
            - lib/bs2_api/payment/key.rb
         | 
| @@ -223,9 +222,11 @@ files: | |
| 223 222 | 
             
            - lib/bs2_api/request/auth.rb
         | 
| 224 223 | 
             
            - lib/bs2_api/util/bank_service.rb
         | 
| 225 224 | 
             
            - lib/bs2_api/util/banks.yml
         | 
| 225 | 
            +
            - lib/bs2_api/util/response.rb
         | 
| 226 226 | 
             
            - lib/bs2_api/version.rb
         | 
| 227 227 | 
             
            homepage: https://github.com/latamgateway/bs2_api
         | 
| 228 | 
            -
            licenses: | 
| 228 | 
            +
            licenses:
         | 
| 229 | 
            +
            - MIT
         | 
| 229 230 | 
             
            metadata:
         | 
| 230 231 | 
             
              homepage_uri: https://github.com/latamgateway/bs2_api
         | 
| 231 232 | 
             
              source_code_uri: https://github.com/latamgateway/bs2_api
         |