fintoc 0.1.0 → 1.0.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.
- checksums.yaml +4 -4
- data/.github/pull_request_template.md +47 -0
- data/.github/workflows/ci.yml +46 -0
- data/.rubocop.yml +14 -7
- data/CHANGELOG.md +40 -0
- data/Gemfile +20 -1
- data/Gemfile.lock +237 -61
- data/README.md +286 -42
- data/Rakefile +3 -3
- data/fintoc.gemspec +3 -7
- data/lib/config/initializers/money.rb +5 -0
- data/lib/fintoc/base_client.rb +150 -0
- data/lib/fintoc/client.rb +14 -123
- data/lib/fintoc/constants.rb +4 -3
- data/lib/fintoc/errors.rb +139 -15
- data/lib/fintoc/jws.rb +83 -0
- data/lib/fintoc/utils.rb +2 -2
- data/lib/fintoc/v1/client/client.rb +12 -0
- data/lib/fintoc/v1/managers/links_manager.rb +46 -0
- data/lib/fintoc/v1/resources/account.rb +95 -0
- data/lib/fintoc/v1/resources/balance.rb +27 -0
- data/lib/fintoc/v1/resources/institution.rb +21 -0
- data/lib/fintoc/v1/resources/link.rb +85 -0
- data/lib/fintoc/v1/resources/movement.rb +62 -0
- data/lib/fintoc/v1/resources/transfer_account.rb +24 -0
- data/lib/fintoc/v2/client/client.rb +37 -0
- data/lib/fintoc/v2/managers/account_numbers_manager.rb +59 -0
- data/lib/fintoc/v2/managers/account_verifications_manager.rb +45 -0
- data/lib/fintoc/v2/managers/accounts_manager.rb +54 -0
- data/lib/fintoc/v2/managers/entities_manager.rb +36 -0
- data/lib/fintoc/v2/managers/simulate_manager.rb +30 -0
- data/lib/fintoc/v2/managers/transfers_manager.rb +56 -0
- data/lib/fintoc/v2/resources/account.rb +105 -0
- data/lib/fintoc/v2/resources/account_number.rb +105 -0
- data/lib/fintoc/v2/resources/account_verification.rb +73 -0
- data/lib/fintoc/v2/resources/entity.rb +51 -0
- data/lib/fintoc/v2/resources/transfer.rb +131 -0
- data/lib/fintoc/version.rb +1 -1
- data/lib/fintoc/webhook_signature.rb +73 -0
- data/lib/fintoc.rb +3 -0
- data/lib/tasks/simplecov_config.rb +19 -0
- metadata +35 -83
- data/lib/fintoc/resources/account.rb +0 -84
- data/lib/fintoc/resources/balance.rb +0 -24
- data/lib/fintoc/resources/institution.rb +0 -18
- data/lib/fintoc/resources/link.rb +0 -83
- data/lib/fintoc/resources/movement.rb +0 -55
- data/lib/fintoc/resources/transfer_account.rb +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b6fd84b01a0debcf2e3641566db792081bc9d101a4aa7c16c5de4833e573fca
|
4
|
+
data.tar.gz: 72ae1022ebe59fb82ce5ce68ca4327d70975fbe87f64b4b20df6d0d30705f7ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5d6354afddadc96ddd7b4795e6d7b6d4679fb9838378f0b6f3a130442a35505e518394aabf3ebc543d6b9dad7071f5141853e747a7832e2bc8920a57d719cd6
|
7
|
+
data.tar.gz: 9d98cb9b5f113793b62458d55e6f425ff7dc3f8a811a7f664fdf09630e7bcbcfa3234a95ebb903648ba3053981e4acfd9bfb76471ae49c44c0d670bb368518ce
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<!-- markdownlint-disable MD041 -->
|
2
|
+
## Contexto
|
3
|
+
|
4
|
+
¿Por qué?
|
5
|
+
|
6
|
+
Agregar un pequeño resumen que de contexto y explicar por qué es importante el cambio
|
7
|
+
que se está proponiendo.
|
8
|
+
|
9
|
+
## ¿Qué hay de nuevo?
|
10
|
+
|
11
|
+
¿Qué?
|
12
|
+
|
13
|
+
Resumen que explique que es lo que se implementó concretamente. Un punteo
|
14
|
+
de cambios específicos también es bienvenido.
|
15
|
+
|
16
|
+
- [x] Endpoint para exponer x
|
17
|
+
- [x] Se elimina configuración y
|
18
|
+
- [x] Clase Z
|
19
|
+
|
20
|
+
## Tests
|
21
|
+
|
22
|
+
¿Cómo nos aseguramos de que esto funciona?
|
23
|
+
|
24
|
+
- [x] Tests unitarios para x
|
25
|
+
- [x] Tests de integración entre x e y
|
26
|
+
|
27
|
+
## Safety Checks
|
28
|
+
|
29
|
+
- [ ] Versión y CHANGELOG actualizados (si corresponde)
|
30
|
+
|
31
|
+
## Consideraciones
|
32
|
+
|
33
|
+
Cosas generales que el reviewer debería tener en cuenta. Pueden ser componentes
|
34
|
+
que se ven afectados por el PR, decisiones que se tomaron para el desarrollo,
|
35
|
+
dudas para discutir con los reviewers, cosas que quedaron fuera de scope, etc.
|
36
|
+
|
37
|
+
Ej.:
|
38
|
+
|
39
|
+
- Se decidió separar x funcionalidad en dos endpoints
|
40
|
+
- ¿Les parece bien este nombre para y?
|
41
|
+
- Se decidió no incluir el refactor de x en este PR
|
42
|
+
|
43
|
+
## Rollback
|
44
|
+
|
45
|
+
¿Es seguro hacer rollback?
|
46
|
+
¿Cuáles son los pasos para hacer rollback?
|
47
|
+
****
|
@@ -0,0 +1,46 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [main]
|
6
|
+
pull_request:
|
7
|
+
release:
|
8
|
+
types: [published]
|
9
|
+
workflow_dispatch:
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
lint:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
name: Lint with RuboCop
|
15
|
+
|
16
|
+
steps:
|
17
|
+
- name: Checkout code
|
18
|
+
uses: actions/checkout@v4
|
19
|
+
|
20
|
+
- name: Set up Ruby
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: '3.2.2'
|
24
|
+
bundler-cache: true
|
25
|
+
|
26
|
+
- name: Run RuboCop
|
27
|
+
run: bundle exec rubocop
|
28
|
+
|
29
|
+
test:
|
30
|
+
runs-on: ubuntu-latest
|
31
|
+
strategy:
|
32
|
+
matrix:
|
33
|
+
ruby-version: ['3.2', '3.3', '3.4']
|
34
|
+
|
35
|
+
steps:
|
36
|
+
- name: Checkout code
|
37
|
+
uses: actions/checkout@v4
|
38
|
+
|
39
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
40
|
+
uses: ruby/setup-ruby@v1
|
41
|
+
with:
|
42
|
+
ruby-version: ${{ matrix.ruby-version }}
|
43
|
+
bundler-cache: true
|
44
|
+
|
45
|
+
- name: Run tests
|
46
|
+
run: COVERAGE=true bundle exec rspec
|
data/.rubocop.yml
CHANGED
@@ -1,14 +1,16 @@
|
|
1
|
-
|
1
|
+
plugins:
|
2
2
|
- rubocop-rspec
|
3
3
|
- rubocop-performance
|
4
|
+
- rubocop-capybara
|
5
|
+
- rubocop-rails
|
6
|
+
|
4
7
|
AllCops:
|
5
8
|
Exclude:
|
6
9
|
- "vendor/**/*"
|
7
10
|
- "db/**/*"
|
8
11
|
- "bin/**/*"
|
9
|
-
TargetRubyVersion: 2
|
10
|
-
|
11
|
-
Enabled: false
|
12
|
+
TargetRubyVersion: 3.2
|
13
|
+
NewCops: enable
|
12
14
|
Performance:
|
13
15
|
Enabled: true
|
14
16
|
Layout/ParameterAlignment:
|
@@ -115,7 +117,7 @@ Style/PercentLiteralDelimiters:
|
|
115
117
|
"%w": "()"
|
116
118
|
"%W": "()"
|
117
119
|
"%x": "()"
|
118
|
-
Naming/
|
120
|
+
Naming/PredicatePrefix:
|
119
121
|
Description: Check the names of predicate methods.
|
120
122
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark
|
121
123
|
Enabled: true
|
@@ -509,5 +511,10 @@ RSpec/ExpectChange:
|
|
509
511
|
EnforcedStyle: block
|
510
512
|
RSpec/EmptyExampleGroup:
|
511
513
|
Enabled: true
|
512
|
-
|
513
|
-
|
514
|
+
RSpec/MultipleMemoizedHelpers:
|
515
|
+
Enabled: false
|
516
|
+
Rails/Output:
|
517
|
+
Enabled: false
|
518
|
+
Rails/Delegate:
|
519
|
+
Description: Prefer delegate method for delegations.
|
520
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,45 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.0.0 - 2025-09-05
|
4
|
+
|
5
|
+
### 🚀 New Features
|
6
|
+
|
7
|
+
- **New Client Architecture**: Restructured client to distinguish between API versions
|
8
|
+
- Movements API now accessible via `Fintoc::V1::Client`
|
9
|
+
- Transfers API accessible via `Fintoc::V2::Client`
|
10
|
+
- Unified client interface with `Fintoc::Client` providing access to both versions
|
11
|
+
- Backward compatibility maintained for existing method signatures
|
12
|
+
|
13
|
+
- **V2 Client - Transfers API Implementation**: Partial implementation of Transfers API endpoints in `Fintoc::V2::Client`
|
14
|
+
- **Entities**: List and retrieve business entities
|
15
|
+
- **Transfer Accounts**: Create, read, update, and list transfer accounts
|
16
|
+
- **Account Numbers**: Manage account numbers/CLABEs
|
17
|
+
- **Transfers**: Create, retrieve, list, and return transfers
|
18
|
+
- **Simulation**: Simulate receiving transfers for testing
|
19
|
+
- **Account Verifications**: Verify account numbers
|
20
|
+
- **Movements**: TODO! Not yet implemented
|
21
|
+
|
22
|
+
### 🧪 Testing & Quality
|
23
|
+
|
24
|
+
- **100% Line Coverage**: Achieved full line coverage using SimpleCov gem, increasing the spec coverage and testing all new code.
|
25
|
+
- Configured with `minimum_coverage 100` and `minimum_coverage_by_file 100`
|
26
|
+
- Uses `simplecov_text_formatter` and `simplecov_linter_formatter` for reporting
|
27
|
+
|
28
|
+
- **Robust CI Pipeline**: Enhanced GitHub Actions workflow for comprehensive testing
|
29
|
+
- **Linting**: Dedicated RuboCop job for code quality enforcement
|
30
|
+
- **Multi-version Testing**: Tests against all currently supported Ruby versions (3.2, 3.3, and 3.4) for version compatibility
|
31
|
+
- **Coverage Integration**: Automated coverage reporting in CI pipeline
|
32
|
+
|
33
|
+
### Others
|
34
|
+
|
35
|
+
- **Money-Rails Integration**: Added `money-rails` gem for proper currency handling
|
36
|
+
- **Comprehensive README Update**: Extensively updated documentation with usage examples and development instructions
|
37
|
+
- **Improved Error Handling**: Better error management across API versions
|
38
|
+
- **JWS Support**: JSON Web Signature support for secure V2 API operations
|
39
|
+
- **HMac Signature verification**: Added the `Fintoc::WebhookSignature` class for easing webhook signature verification
|
40
|
+
|
3
41
|
## 0.1.0 - 2021-01-18
|
4
42
|
|
43
|
+
Initial version
|
44
|
+
|
5
45
|
* Up to date with the [2020-11-17](https://docs.fintoc.com/docs/api-changelog#2020-11-17) API version
|
data/Gemfile
CHANGED
@@ -1,4 +1,23 @@
|
|
1
|
-
source
|
1
|
+
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
# Specify your gem's dependencies in fintoc.gemspec
|
4
4
|
gemspec
|
5
|
+
|
6
|
+
# Development dependencies
|
7
|
+
group :development do
|
8
|
+
gem 'rubocop', '~> 1.80'
|
9
|
+
gem 'rubocop-capybara', '~> 2.22', '>= 2.22.1'
|
10
|
+
gem 'rubocop-performance', '~> 1.25'
|
11
|
+
gem 'rubocop-rails', '~> 2.33', '>= 2.33.3'
|
12
|
+
gem 'rubocop-rspec', '~> 3.6'
|
13
|
+
end
|
14
|
+
|
15
|
+
group :test do
|
16
|
+
gem 'rexml' # Required for webmock in Ruby 3.0+
|
17
|
+
gem 'rspec', '~> 3.0'
|
18
|
+
gem 'simplecov', '~> 0.21'
|
19
|
+
gem 'simplecov_linter_formatter'
|
20
|
+
gem 'simplecov_text_formatter'
|
21
|
+
gem 'vcr', '~> 6.3'
|
22
|
+
gem 'webmock'
|
23
|
+
end
|
data/Gemfile.lock
CHANGED
@@ -1,93 +1,269 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fintoc (
|
4
|
+
fintoc (1.0.0)
|
5
5
|
http
|
6
|
+
money-rails
|
6
7
|
tabulate
|
7
8
|
|
8
9
|
GEM
|
9
10
|
remote: https://rubygems.org/
|
10
11
|
specs:
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
12
|
+
actionpack (8.0.2.1)
|
13
|
+
actionview (= 8.0.2.1)
|
14
|
+
activesupport (= 8.0.2.1)
|
15
|
+
nokogiri (>= 1.8.5)
|
16
|
+
rack (>= 2.2.4)
|
17
|
+
rack-session (>= 1.0.1)
|
18
|
+
rack-test (>= 0.6.3)
|
19
|
+
rails-dom-testing (~> 2.2)
|
20
|
+
rails-html-sanitizer (~> 1.6)
|
21
|
+
useragent (~> 0.16)
|
22
|
+
actionview (8.0.2.1)
|
23
|
+
activesupport (= 8.0.2.1)
|
24
|
+
builder (~> 3.1)
|
25
|
+
erubi (~> 1.11)
|
26
|
+
rails-dom-testing (~> 2.2)
|
27
|
+
rails-html-sanitizer (~> 1.6)
|
28
|
+
activesupport (8.0.2.1)
|
29
|
+
base64
|
30
|
+
benchmark (>= 0.3)
|
31
|
+
bigdecimal
|
32
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
33
|
+
connection_pool (>= 2.2.5)
|
34
|
+
drb
|
35
|
+
i18n (>= 1.6, < 2)
|
36
|
+
logger (>= 1.4.2)
|
37
|
+
minitest (>= 5.1)
|
38
|
+
securerandom (>= 0.3)
|
39
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
40
|
+
uri (>= 0.13.1)
|
41
|
+
addressable (2.8.7)
|
42
|
+
public_suffix (>= 2.0.2, < 7.0)
|
43
|
+
ast (2.4.3)
|
44
|
+
base64 (0.3.0)
|
45
|
+
benchmark (0.4.1)
|
46
|
+
bigdecimal (3.2.2)
|
47
|
+
builder (3.3.0)
|
48
|
+
concurrent-ruby (1.3.5)
|
49
|
+
connection_pool (2.5.3)
|
50
|
+
crack (1.0.0)
|
51
|
+
bigdecimal
|
52
|
+
rexml
|
53
|
+
crass (1.0.6)
|
54
|
+
date (3.4.1)
|
55
|
+
diff-lcs (1.6.2)
|
56
|
+
docile (1.4.1)
|
57
|
+
domain_name (0.6.20240107)
|
58
|
+
drb (2.2.3)
|
59
|
+
erb (5.0.2)
|
60
|
+
erubi (1.13.1)
|
61
|
+
ffi (1.17.2)
|
62
|
+
ffi (1.17.2-aarch64-linux-gnu)
|
63
|
+
ffi (1.17.2-aarch64-linux-musl)
|
64
|
+
ffi (1.17.2-arm-linux-gnu)
|
65
|
+
ffi (1.17.2-arm-linux-musl)
|
66
|
+
ffi (1.17.2-arm64-darwin)
|
67
|
+
ffi (1.17.2-x86_64-darwin)
|
68
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
69
|
+
ffi (1.17.2-x86_64-linux-musl)
|
70
|
+
ffi-compiler (1.3.2)
|
71
|
+
ffi (>= 1.15.5)
|
22
72
|
rake
|
23
|
-
hashdiff (1.0
|
24
|
-
http (
|
25
|
-
addressable (~> 2.
|
73
|
+
hashdiff (1.2.0)
|
74
|
+
http (5.3.1)
|
75
|
+
addressable (~> 2.8)
|
26
76
|
http-cookie (~> 1.0)
|
27
77
|
http-form_data (~> 2.2)
|
28
|
-
|
29
|
-
http-cookie (1.0.
|
78
|
+
llhttp-ffi (~> 0.5.0)
|
79
|
+
http-cookie (1.0.8)
|
30
80
|
domain_name (~> 0.5)
|
31
81
|
http-form_data (2.3.0)
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
82
|
+
i18n (1.14.7)
|
83
|
+
concurrent-ruby (~> 1.0)
|
84
|
+
io-console (0.8.1)
|
85
|
+
irb (1.15.2)
|
86
|
+
pp (>= 0.6.0)
|
87
|
+
rdoc (>= 4.0.0)
|
88
|
+
reline (>= 0.4.2)
|
89
|
+
json (2.13.2)
|
90
|
+
language_server-protocol (3.17.0.5)
|
91
|
+
lint_roller (1.1.0)
|
92
|
+
llhttp-ffi (0.5.1)
|
93
|
+
ffi-compiler (~> 1.0)
|
94
|
+
rake (~> 13.0)
|
95
|
+
logger (1.7.0)
|
96
|
+
loofah (2.24.1)
|
97
|
+
crass (~> 1.0.2)
|
98
|
+
nokogiri (>= 1.12.0)
|
99
|
+
minitest (5.25.5)
|
100
|
+
monetize (1.13.0)
|
101
|
+
money (~> 6.12)
|
102
|
+
money (6.19.0)
|
103
|
+
i18n (>= 0.6.4, <= 2)
|
104
|
+
money-rails (1.15.0)
|
105
|
+
activesupport (>= 3.0)
|
106
|
+
monetize (~> 1.9)
|
107
|
+
money (~> 6.13)
|
108
|
+
railties (>= 3.0)
|
109
|
+
nokogiri (1.18.9-aarch64-linux-gnu)
|
110
|
+
racc (~> 1.4)
|
111
|
+
nokogiri (1.18.9-aarch64-linux-musl)
|
112
|
+
racc (~> 1.4)
|
113
|
+
nokogiri (1.18.9-arm-linux-gnu)
|
114
|
+
racc (~> 1.4)
|
115
|
+
nokogiri (1.18.9-arm-linux-musl)
|
116
|
+
racc (~> 1.4)
|
117
|
+
nokogiri (1.18.9-arm64-darwin)
|
118
|
+
racc (~> 1.4)
|
119
|
+
nokogiri (1.18.9-x86_64-darwin)
|
120
|
+
racc (~> 1.4)
|
121
|
+
nokogiri (1.18.9-x86_64-linux-gnu)
|
122
|
+
racc (~> 1.4)
|
123
|
+
nokogiri (1.18.9-x86_64-linux-musl)
|
124
|
+
racc (~> 1.4)
|
125
|
+
parallel (1.27.0)
|
126
|
+
parser (3.3.9.0)
|
37
127
|
ast (~> 2.4.1)
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
128
|
+
racc
|
129
|
+
pp (0.6.2)
|
130
|
+
prettyprint
|
131
|
+
prettyprint (0.2.0)
|
132
|
+
prism (1.4.0)
|
133
|
+
psych (5.2.6)
|
134
|
+
date
|
135
|
+
stringio
|
136
|
+
public_suffix (6.0.2)
|
137
|
+
racc (1.8.1)
|
138
|
+
rack (3.2.0)
|
139
|
+
rack-session (2.1.1)
|
140
|
+
base64 (>= 0.1.0)
|
141
|
+
rack (>= 3.0.0)
|
142
|
+
rack-test (2.2.0)
|
143
|
+
rack (>= 1.3)
|
144
|
+
rackup (2.2.1)
|
145
|
+
rack (>= 3)
|
146
|
+
rails-dom-testing (2.3.0)
|
147
|
+
activesupport (>= 5.0.0)
|
148
|
+
minitest
|
149
|
+
nokogiri (>= 1.6)
|
150
|
+
rails-html-sanitizer (1.6.2)
|
151
|
+
loofah (~> 2.21)
|
152
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
153
|
+
railties (8.0.2.1)
|
154
|
+
actionpack (= 8.0.2.1)
|
155
|
+
activesupport (= 8.0.2.1)
|
156
|
+
irb (~> 1.13)
|
157
|
+
rackup (>= 1.0.0)
|
158
|
+
rake (>= 12.2)
|
159
|
+
thor (~> 1.0, >= 1.2.2)
|
160
|
+
zeitwerk (~> 2.6)
|
161
|
+
rainbow (3.1.1)
|
162
|
+
rake (13.3.0)
|
163
|
+
rdoc (6.14.2)
|
164
|
+
erb
|
165
|
+
psych (>= 4.0.0)
|
166
|
+
regexp_parser (2.11.2)
|
167
|
+
reline (0.6.2)
|
168
|
+
io-console (~> 0.5)
|
169
|
+
rexml (3.4.2)
|
170
|
+
rspec (3.13.1)
|
171
|
+
rspec-core (~> 3.13.0)
|
172
|
+
rspec-expectations (~> 3.13.0)
|
173
|
+
rspec-mocks (~> 3.13.0)
|
174
|
+
rspec-core (3.13.5)
|
175
|
+
rspec-support (~> 3.13.0)
|
176
|
+
rspec-expectations (3.13.5)
|
49
177
|
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
-
rspec-support (~> 3.
|
51
|
-
rspec-mocks (3.
|
178
|
+
rspec-support (~> 3.13.0)
|
179
|
+
rspec-mocks (3.13.5)
|
52
180
|
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
-
rspec-support (~> 3.
|
54
|
-
rspec-support (3.
|
55
|
-
rubocop (
|
56
|
-
|
181
|
+
rspec-support (~> 3.13.0)
|
182
|
+
rspec-support (3.13.5)
|
183
|
+
rubocop (1.80.0)
|
184
|
+
json (~> 2.3)
|
185
|
+
language_server-protocol (~> 3.17.0.2)
|
186
|
+
lint_roller (~> 1.1.0)
|
57
187
|
parallel (~> 1.10)
|
58
|
-
parser (>=
|
188
|
+
parser (>= 3.3.0.2)
|
59
189
|
rainbow (>= 2.2.2, < 4.0)
|
60
|
-
|
190
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
191
|
+
rubocop-ast (>= 1.46.0, < 2.0)
|
61
192
|
ruby-progressbar (~> 1.7)
|
62
|
-
unicode-display_width (>=
|
63
|
-
rubocop-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
193
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
194
|
+
rubocop-ast (1.46.0)
|
195
|
+
parser (>= 3.3.7.2)
|
196
|
+
prism (~> 1.4)
|
197
|
+
rubocop-capybara (2.22.1)
|
198
|
+
lint_roller (~> 1.1)
|
199
|
+
rubocop (~> 1.72, >= 1.72.1)
|
200
|
+
rubocop-performance (1.25.0)
|
201
|
+
lint_roller (~> 1.1)
|
202
|
+
rubocop (>= 1.75.0, < 2.0)
|
203
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
204
|
+
rubocop-rails (2.33.3)
|
205
|
+
activesupport (>= 4.2.0)
|
206
|
+
lint_roller (~> 1.1)
|
207
|
+
rack (>= 1.1)
|
208
|
+
rubocop (>= 1.75.0, < 2.0)
|
209
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
210
|
+
rubocop-rspec (3.6.0)
|
211
|
+
lint_roller (~> 1.1)
|
212
|
+
rubocop (~> 1.72, >= 1.72.1)
|
213
|
+
ruby-progressbar (1.13.0)
|
214
|
+
securerandom (0.4.1)
|
215
|
+
simplecov (0.22.0)
|
216
|
+
docile (~> 1.1)
|
217
|
+
simplecov-html (~> 0.11)
|
218
|
+
simplecov_json_formatter (~> 0.1)
|
219
|
+
simplecov-html (0.13.2)
|
220
|
+
simplecov_json_formatter (0.1.4)
|
221
|
+
simplecov_linter_formatter (0.2.0)
|
222
|
+
rainbow
|
223
|
+
simplecov_text_formatter (0.1.0)
|
224
|
+
stringio (3.1.7)
|
69
225
|
tabulate (0.1.2)
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
unicode-display_width (1.
|
74
|
-
|
75
|
-
|
76
|
-
|
226
|
+
thor (1.4.0)
|
227
|
+
tzinfo (2.0.6)
|
228
|
+
concurrent-ruby (~> 1.0)
|
229
|
+
unicode-display_width (3.1.5)
|
230
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
231
|
+
unicode-emoji (4.0.4)
|
232
|
+
uri (1.0.3)
|
233
|
+
useragent (0.16.11)
|
234
|
+
vcr (6.3.1)
|
235
|
+
base64
|
236
|
+
webmock (3.25.1)
|
237
|
+
addressable (>= 2.8.0)
|
77
238
|
crack (>= 0.3.2)
|
78
239
|
hashdiff (>= 0.4.0, < 2.0.0)
|
240
|
+
zeitwerk (2.7.3)
|
79
241
|
|
80
242
|
PLATFORMS
|
81
|
-
|
243
|
+
aarch64-linux-gnu
|
244
|
+
aarch64-linux-musl
|
245
|
+
arm-linux-gnu
|
246
|
+
arm-linux-musl
|
247
|
+
arm64-darwin
|
248
|
+
x86_64-darwin
|
249
|
+
x86_64-linux
|
250
|
+
x86_64-linux-gnu
|
251
|
+
x86_64-linux-musl
|
82
252
|
|
83
253
|
DEPENDENCIES
|
84
254
|
fintoc!
|
255
|
+
rexml
|
85
256
|
rspec (~> 3.0)
|
86
|
-
rubocop (~>
|
87
|
-
rubocop-
|
88
|
-
rubocop-
|
89
|
-
|
257
|
+
rubocop (~> 1.80)
|
258
|
+
rubocop-capybara (~> 2.22, >= 2.22.1)
|
259
|
+
rubocop-performance (~> 1.25)
|
260
|
+
rubocop-rails (~> 2.33, >= 2.33.3)
|
261
|
+
rubocop-rspec (~> 3.6)
|
262
|
+
simplecov (~> 0.21)
|
263
|
+
simplecov_linter_formatter
|
264
|
+
simplecov_text_formatter
|
265
|
+
vcr (~> 6.3)
|
90
266
|
webmock
|
91
267
|
|
92
268
|
BUNDLED WITH
|
93
|
-
2.1
|
269
|
+
2.7.1
|