myfinance 1.8.1 → 1.8.3

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
  SHA1:
3
- metadata.gz: dbed30c8958fa2c6ef9cc2d19f9902e75f44dd1e
4
- data.tar.gz: 7db6144f3f42a01ba6308b6d874d0cac87d5c206
3
+ metadata.gz: fa665c47eea639371add0b2f2d3fbbf4abef3c2f
4
+ data.tar.gz: ca727d3ba80f810c8cf922ac40a138e8a748e94d
5
5
  SHA512:
6
- metadata.gz: f51fe876801b3e0432b6f0a3ef9c2b86cb909817c2d20c53f0de30992ee1655cb406225d20a77d83d33f0ddd344879bf58bf0c87408623924a73d569e47189b9
7
- data.tar.gz: 0f3cd8ac9750f368dedc30cbac8c2ff98184994bd77f207d6ea3020679896511955f89767116adf978fc6911fffe04060d3d93bbe8ac902b06a753f5eea834d5
6
+ metadata.gz: abe4f21219278f71d18924ab37dbc9514350171a90a7de1f98df454f8b1ae30c78fbb2537a3c2342201238f8c51c29a590f925ede86d50264dc0ba9e044b777d
7
+ data.tar.gz: aef7dd6bf173936b60f23f07ad75d39355b3e203d517238da369037b900bdca9b01ebb8b48661da978e66e9bdd9579becdeac84e04297d88618d9fe96e749c12
data/CHANGELOG.md CHANGED
@@ -1,4 +1,14 @@
1
1
  # Changelog
2
+ ## 1.8.3
3
+ ## Chore
4
+ - Loosen `mime-types` version constraint to ensure compatibility with Rails 6
5
+ ## v1.8.2
6
+ ### Added
7
+ - `Sale` now has the following new attribute:
8
+ * `receivable_account_total_amount`
9
+ ## v1.8.1
10
+ ### Fixes
11
+ - Changed URL encoding to support special characters. Ex: '&'
2
12
 
3
13
  ## v1.8.0
4
14
  ### Added
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- myfinance (1.8.1)
5
- mime-types (>= 1.16, < 3.0)
4
+ myfinance (1.8.2)
5
+ mime-types (>= 1.16, <= 3.3.0)
6
6
  multi_json (~> 1.11)
7
7
  require_all (~> 1.4.0)
8
8
  typhoeus (~> 0.8)
@@ -30,13 +30,15 @@ GEM
30
30
  diff-lcs (1.3)
31
31
  docile (1.1.5)
32
32
  equalizer (0.0.11)
33
- ethon (0.15.0)
33
+ ethon (0.16.0)
34
34
  ffi (>= 1.15.0)
35
- ffi (1.15.5)
35
+ ffi (1.17.1)
36
36
  ice_nine (0.11.2)
37
37
  json (2.0.3)
38
38
  method_source (0.8.2)
39
- mime-types (2.99.3)
39
+ mime-types (3.3)
40
+ mime-types-data (~> 3.2015)
41
+ mime-types-data (3.2025.0107)
40
42
  multi_json (1.15.0)
41
43
  pry (0.10.4)
42
44
  coderay (~> 1.1.0)
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Eduardo Hertz
3
+ Copyright (c) 2015 Fintera Solucoes Tecnológicas
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1392,8 +1392,11 @@ To install this gem onto your local machine, run `bundle exec rake install`.
1392
1392
 
1393
1393
  ## Release
1394
1394
 
1395
+
1395
1396
  To release a new version, update the version number in `lib/myfinance/version.rb`, run `bundle install` and commit & push the changes to the repository.
1396
1397
 
1398
+ Before releasing the gem, remember to update de CHANGELOG.md, describing the changes made in this version.
1399
+
1397
1400
  If this is your first time publishing a RubyGem in your local device, you will have to download your credentials. To do this, follow the instructions in your [profile page in RubyGems](https://rubygems.org/profile/edit) or just type the following in your command line, replacing `$username` with your RubyGems username.
1398
1401
 
1399
1402
  ```bash
@@ -46,6 +46,7 @@ module Myfinance
46
46
  attribute :ticket_amount
47
47
  attribute :total_amount
48
48
  attribute :updated_at
49
+ attribute :receivable_account_total_amount
49
50
  end
50
51
  end
51
52
  end
@@ -1,3 +1,3 @@
1
1
  module Myfinance
2
- VERSION = "1.8.1".freeze
2
+ VERSION = "1.8.3".freeze
3
3
  end
data/myfinance.gemspec CHANGED
@@ -6,6 +6,9 @@ Gem::Specification.new do |spec|
6
6
  spec.name = "myfinance"
7
7
  spec.version = Myfinance::VERSION
8
8
  spec.authors = [
9
+ "Lucas P. Borges",
10
+ "Jonathas Eloi",
11
+ "Paulo Henrique Lopes",
9
12
  "Eduardo Hertz",
10
13
  "Guilherme Franco",
11
14
  "Rafael B. Tauil",
@@ -13,6 +16,7 @@ Gem::Specification.new do |spec|
13
16
  "Vagner Zampieri"
14
17
  ]
15
18
  spec.email = [
19
+ "lucas.p.sec@gmail.com",
16
20
  "eduardohertz@gmail.com",
17
21
  "g.francosilva@gmail.com",
18
22
  "rafael@tauil.com.br",
@@ -43,7 +47,7 @@ Gem::Specification.new do |spec|
43
47
  spec.add_dependency "typhoeus", "~> 0.8"
44
48
  spec.add_dependency "multi_json", "~> 1.11"
45
49
  spec.add_dependency "virtus", "~> 1.0.5"
46
- spec.add_dependency "mime-types", ">= 1.16", "< 3.0"
50
+ spec.add_dependency "mime-types", ">= 1.16", "<= 3.4.0"
47
51
  spec.add_dependency "require_all", "~> 1.4.0"
48
52
 
49
53
  spec.add_development_dependency "bundler", "~> 1.10"
metadata CHANGED
@@ -1,9 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: myfinance
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
+ - Lucas P. Borges
8
+ - Jonathas Eloi
9
+ - Paulo Henrique Lopes
7
10
  - Eduardo Hertz
8
11
  - Guilherme Franco
9
12
  - Rafael B. Tauil
@@ -12,7 +15,7 @@ authors:
12
15
  autorequire:
13
16
  bindir: bin
14
17
  cert_chain: []
15
- date: 2022-06-03 00:00:00.000000000 Z
18
+ date: 2025-02-07 00:00:00.000000000 Z
16
19
  dependencies:
17
20
  - !ruby/object:Gem::Dependency
18
21
  name: typhoeus
@@ -63,9 +66,9 @@ dependencies:
63
66
  - - ">="
64
67
  - !ruby/object:Gem::Version
65
68
  version: '1.16'
66
- - - "<"
69
+ - - "<="
67
70
  - !ruby/object:Gem::Version
68
- version: '3.0'
71
+ version: 3.4.0
69
72
  type: :runtime
70
73
  prerelease: false
71
74
  version_requirements: !ruby/object:Gem::Requirement
@@ -73,9 +76,9 @@ dependencies:
73
76
  - - ">="
74
77
  - !ruby/object:Gem::Version
75
78
  version: '1.16'
76
- - - "<"
79
+ - - "<="
77
80
  - !ruby/object:Gem::Version
78
- version: '3.0'
81
+ version: 3.4.0
79
82
  - !ruby/object:Gem::Dependency
80
83
  name: require_all
81
84
  requirement: !ruby/object:Gem::Requirement
@@ -232,6 +235,7 @@ dependencies:
232
235
  version: '0.4'
233
236
  description: 'A Ruby client for the Myfinance REST API: https://financeiro.fintera.com.br/docs/api'
234
237
  email:
238
+ - lucas.p.sec@gmail.com
235
239
  - eduardohertz@gmail.com
236
240
  - g.francosilva@gmail.com
237
241
  - rafael@tauil.com.br