myfinance 1.8.0 → 1.8.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/Gemfile.lock +6 -6
- data/lib/myfinance/resources/base.rb +2 -3
- data/lib/myfinance/resources/classification_center.rb +4 -2
- data/lib/myfinance/resources/custom_classifier_value.rb +1 -1
- data/lib/myfinance/resources/deposit_account.rb +1 -1
- data/lib/myfinance/version.rb +1 -1
- data/myfinance.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dbed30c8958fa2c6ef9cc2d19f9902e75f44dd1e
|
|
4
|
+
data.tar.gz: 7db6144f3f42a01ba6308b6d874d0cac87d5c206
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f51fe876801b3e0432b6f0a3ef9c2b86cb909817c2d20c53f0de30992ee1655cb406225d20a77d83d33f0ddd344879bf58bf0c87408623924a73d569e47189b9
|
|
7
|
+
data.tar.gz: 0f3cd8ac9750f368dedc30cbac8c2ff98184994bd77f207d6ea3020679896511955f89767116adf978fc6911fffe04060d3d93bbe8ac902b06a753f5eea834d5
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
myfinance (1.8.
|
|
4
|
+
myfinance (1.8.1)
|
|
5
5
|
mime-types (>= 1.16, < 3.0)
|
|
6
6
|
multi_json (~> 1.11)
|
|
7
7
|
require_all (~> 1.4.0)
|
|
@@ -30,14 +30,14 @@ GEM
|
|
|
30
30
|
diff-lcs (1.3)
|
|
31
31
|
docile (1.1.5)
|
|
32
32
|
equalizer (0.0.11)
|
|
33
|
-
ethon (0.
|
|
34
|
-
ffi (>= 1.
|
|
35
|
-
ffi (1.
|
|
33
|
+
ethon (0.15.0)
|
|
34
|
+
ffi (>= 1.15.0)
|
|
35
|
+
ffi (1.15.5)
|
|
36
36
|
ice_nine (0.11.2)
|
|
37
37
|
json (2.0.3)
|
|
38
38
|
method_source (0.8.2)
|
|
39
39
|
mime-types (2.99.3)
|
|
40
|
-
multi_json (1.
|
|
40
|
+
multi_json (1.15.0)
|
|
41
41
|
pry (0.10.4)
|
|
42
42
|
coderay (~> 1.1.0)
|
|
43
43
|
method_source (~> 0.8.1)
|
|
@@ -97,4 +97,4 @@ DEPENDENCIES
|
|
|
97
97
|
webmock (~> 1.9.3)
|
|
98
98
|
|
|
99
99
|
BUNDLED WITH
|
|
100
|
-
1.
|
|
100
|
+
1.17.3
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
module Myfinance
|
|
2
2
|
module Resources
|
|
3
3
|
class Base
|
|
4
|
-
|
|
5
4
|
attr_accessor :http
|
|
6
5
|
|
|
7
6
|
def initialize(http)
|
|
@@ -12,12 +11,12 @@ module Myfinance
|
|
|
12
11
|
|
|
13
12
|
def build_search_endpoint(params)
|
|
14
13
|
query_string = query(params).join("&")
|
|
15
|
-
|
|
14
|
+
"#{endpoint}?#{query_string}"
|
|
16
15
|
end
|
|
17
16
|
|
|
18
17
|
def query(params)
|
|
19
18
|
page = params.delete(:page)
|
|
20
|
-
query = params.map { |key, value| "search[#{key}]=#{value}" }
|
|
19
|
+
query = params.map { |key, value| "search[#{key}]=#{CGI.escape(value.to_s)}" }
|
|
21
20
|
query << "page=#{page}" if page
|
|
22
21
|
query
|
|
23
22
|
end
|
|
@@ -91,13 +91,15 @@ module Myfinance
|
|
|
91
91
|
|
|
92
92
|
def build_search_endpoint(params)
|
|
93
93
|
query_string = query(params).join("&")
|
|
94
|
-
|
|
94
|
+
"#{endpoint}?#{query_string}"
|
|
95
95
|
end
|
|
96
96
|
|
|
97
97
|
def query(params)
|
|
98
98
|
page = params.delete(:page)
|
|
99
99
|
per_page = params.delete(:per_page)
|
|
100
|
-
query = params.map
|
|
100
|
+
query = params.map do |key, value|
|
|
101
|
+
"search[#{key}]=#{CGI.escape(value.to_s)}"
|
|
102
|
+
end
|
|
101
103
|
query << "page=#{page}" if page
|
|
102
104
|
query << "per_page=#{per_page}" if per_page
|
|
103
105
|
query
|
|
@@ -81,7 +81,7 @@ module Myfinance
|
|
|
81
81
|
query_string = query(params).join("&")
|
|
82
82
|
custom_classifier_endpoint = endpoint(custom_classifier_id)
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
"#{custom_classifier_endpoint}?#{query_string}"
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
def endpoint(custom_classifier_id)
|
data/lib/myfinance/version.rb
CHANGED
data/myfinance.gemspec
CHANGED
|
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.required_ruby_version = ">= 2.0.0"
|
|
23
23
|
|
|
24
24
|
spec.summary = %q{A Ruby client for the Myfinance REST API}
|
|
25
|
-
spec.description = %q{A Ruby client for the Myfinance REST API: https://
|
|
26
|
-
spec.homepage = "https://github.com/
|
|
25
|
+
spec.description = %q{A Ruby client for the Myfinance REST API: https://financeiro.fintera.com.br/docs/api}
|
|
26
|
+
spec.homepage = "https://github.com/Myfc-github/myfinance-client-ruby/pulls"
|
|
27
27
|
spec.license = "MIT"
|
|
28
28
|
|
|
29
29
|
# Prevent pushing this gem to RubyGems.org by setting "allowed_push_host", or
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: myfinance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo Hertz
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date:
|
|
15
|
+
date: 2022-06-03 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: typhoeus
|
|
@@ -230,7 +230,7 @@ dependencies:
|
|
|
230
230
|
- - "~>"
|
|
231
231
|
- !ruby/object:Gem::Version
|
|
232
232
|
version: '0.4'
|
|
233
|
-
description: 'A Ruby client for the Myfinance REST API: https://
|
|
233
|
+
description: 'A Ruby client for the Myfinance REST API: https://financeiro.fintera.com.br/docs/api'
|
|
234
234
|
email:
|
|
235
235
|
- eduardohertz@gmail.com
|
|
236
236
|
- g.francosilva@gmail.com
|
|
@@ -412,7 +412,7 @@ files:
|
|
|
412
412
|
- spec/support/shared_examples/entity_collection.rb
|
|
413
413
|
- spec/support/shared_examples/http_request_methods.rb
|
|
414
414
|
- spec/support/vcr.rb
|
|
415
|
-
homepage: https://github.com/
|
|
415
|
+
homepage: https://github.com/Myfc-github/myfinance-client-ruby/pulls
|
|
416
416
|
licenses:
|
|
417
417
|
- MIT
|
|
418
418
|
metadata:
|