finapps 6.9.0 → 6.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d40d367eccfbf2e294b583650afe8ca7f73478c3fb0d4b989560965552422af3
4
- data.tar.gz: a267d69a66d99def1f79c0afebd02ba58fd6b8177aae4f041988eb04ba6469d9
3
+ metadata.gz: fd7bfa629da6059e44c977436c430e5b1e0e4b742abb5b19e8e7a070bf5a425b
4
+ data.tar.gz: a0bdb2709ea8130346b3e5e0d964fe3474b9238c5d8decae98347ad6f6236c6a
5
5
  SHA512:
6
- metadata.gz: 0efaad47504531652d32fb805477f5c1a253e656615402b54f787334813929674e871f4ca5eaf0a511d2f9257a805015de13afd851a150f24b6c61decc899e77
7
- data.tar.gz: 8f45fe8f7c2e92351bad40af3a3d29868c908b0d7794bc006b67be12c2fbe8a6452d973beba135f6be5fd5da217b2e36cf694aee3af30eb50e1715cbf6a1ca51
6
+ metadata.gz: 3e94cbd91b30336272d92d4419ee827fdd8dc9cff2b0e64dcbb0180c5d2438e320cb004bfec2ccee7b36090b165a4a9015a0fbdcd635f27f35308ecfc2fe504e
7
+ data.tar.gz: 70ff07c8e19641bfea84e8b19b4ab979de6d6a21acc73a453e88d7736321a234a175d4a04ebaf19b089120b6ebb5f908ed55a683021d3596843382554b935b10
@@ -68,7 +68,7 @@ module FinApps
68
68
 
69
69
  QUERY_RESOURCES.each do |method|
70
70
  define_method(method) do
71
- class_name = capitalize(method.to_s.gsub(/query_/, ''))
71
+ class_name = method.to_s.gsub(/query_/, '').capitalize
72
72
  variable = "@#{method}"
73
73
 
74
74
  method_definition(method, class_name, variable) do |_|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FinApps
4
- VERSION = '6.9.0'
4
+ VERSION = '6.9.1'
5
5
  end
@@ -12,7 +12,8 @@ RSpec.describe FinApps::REST::Client do
12
12
  context 'with an instance of Client' do
13
13
  subject(:client) { described_class.new(:company_token) }
14
14
 
15
- FinApps::REST::Client::RESOURCES.each do |method|
15
+ (FinApps::REST::Client::RESOURCES +
16
+ FinApps::REST::Client::QUERY_RESOURCES).each do |method|
16
17
  it("responds to #{method}") { expect(client).to respond_to(method) }
17
18
 
18
19
  it "memoizes the result of #{method}" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finapps
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.9.0
4
+ version: 6.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erich Quintero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-05 00:00:00.000000000 Z
11
+ date: 2022-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: finapps_core