c6_bank 0.2.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.
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: c6_bank
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Gabriel Fontoura Dos Santos
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: faraday
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.7'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.7'
26
+ - !ruby/object:Gem::Dependency
27
+ name: faraday-retry
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: base64
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.2'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.2'
54
+ description: |-
55
+ Ruby client for C6 Bank BaaS. Issues Bolepix charges (boleto + Pix QR),
56
+ Pix cob/cobv, and related queries over mTLS + OAuth2 client credentials.
57
+ email:
58
+ - byellokore@users.noreply.github.com
59
+ executables:
60
+ - c6_bank
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - ".env.example"
65
+ - ".ruby-version"
66
+ - CHANGELOG.md
67
+ - CODE_OF_CONDUCT.md
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - docs/NEXT_STEPS.md
72
+ - docs/openapi/bolepix.yaml
73
+ - docs/openapi/pix-api.yaml
74
+ - docs/rails_initializer_example.rb
75
+ - docs/roteiro_mapping.md
76
+ - examples/auth_probe.rb
77
+ - examples/boleto_cases.rb
78
+ - examples/env.rb
79
+ - examples/live_sandbox.rb
80
+ - examples/pix_cases.rb
81
+ - exe/c6_bank
82
+ - lib/c6_bank.rb
83
+ - lib/c6_bank/boleto/request.rb
84
+ - lib/c6_bank/client.rb
85
+ - lib/c6_bank/configuration.rb
86
+ - lib/c6_bank/errors.rb
87
+ - lib/c6_bank/pix.rb
88
+ - lib/c6_bank/pix/payload.rb
89
+ - lib/c6_bank/resources.rb
90
+ - lib/c6_bank/resources/base.rb
91
+ - lib/c6_bank/resources/boleto.rb
92
+ - lib/c6_bank/resources/dda.rb
93
+ - lib/c6_bank/resources/pix.rb
94
+ - lib/c6_bank/version.rb
95
+ - sig/c6_bank.rbs
96
+ homepage: https://github.com/byellokore/c6_bank
97
+ licenses:
98
+ - MIT
99
+ metadata:
100
+ allowed_push_host: https://rubygems.org
101
+ homepage_uri: https://github.com/byellokore/c6_bank
102
+ source_code_uri: https://github.com/byellokore/c6_bank
103
+ changelog_uri: https://github.com/byellokore/c6_bank/blob/main/CHANGELOG.md
104
+ rubygems_mfa_required: 'true'
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 3.2.0
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubygems_version: 3.6.9
120
+ specification_version: 4
121
+ summary: Ruby client for C6 Bank BaaS (Bolepix, Pix, Payments)
122
+ test_files: []