myfinance 1.6.0 → 1.6.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/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/lib/myfinance/entities/sale.rb +1 -0
- data/lib/myfinance/version.rb +1 -1
- data/myfinance.gemspec +9 -2
- data/spec/lib/myfinance/entities/sale_spec.rb +1 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a7c0308bdb879859a3f747a955041128e952501
|
|
4
|
+
data.tar.gz: 0ac16a5ad1d8b58af1233b6af6157976d30b6a91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc9326e8efbb17adc6e8bccd939948469e9ca8af22fb8e816d0e76e8f0a4f2f790ef2a0d3804fcaf40db79f249aca3c25270a5ffc22e423de7939a7dd0f5dbde
|
|
7
|
+
data.tar.gz: 07eeffd310eb8e1bb51b6e5ce8b3902821613c60fbe427863ce58af47b6b1df1e05dd8078126dc591828617e4caa15a3e544f8fe8f8dc3380a5cad06bc524841
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## v1.6.1
|
|
3
|
+
- `Sale` now has the following new attribute:
|
|
4
|
+
- `net_amount`, total_amount - withholding tax_charges
|
|
2
5
|
## v1.6.0
|
|
3
6
|
- `Sale` can now receive `attachments` and `links` from Myfinance app
|
|
4
7
|
- `attachments` returns the attachments of the `Sale`
|
data/Gemfile.lock
CHANGED
data/lib/myfinance/version.rb
CHANGED
data/myfinance.gemspec
CHANGED
|
@@ -5,12 +5,19 @@ require "myfinance/version"
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "myfinance"
|
|
7
7
|
spec.version = Myfinance::VERSION
|
|
8
|
-
spec.authors = [
|
|
8
|
+
spec.authors = [
|
|
9
|
+
"Eduardo Hertz",
|
|
10
|
+
"Guilherme Franco",
|
|
11
|
+
"Rafael B. Tauil",
|
|
12
|
+
"Rodrigo Tassinari",
|
|
13
|
+
"Vagner Zampieri"
|
|
14
|
+
]
|
|
9
15
|
spec.email = [
|
|
10
16
|
"eduardohertz@gmail.com",
|
|
11
17
|
"g.francosilva@gmail.com",
|
|
12
18
|
"rafael@tauil.com.br",
|
|
13
|
-
"rodrigo@pittlandia.net"
|
|
19
|
+
"rodrigo@pittlandia.net",
|
|
20
|
+
"vgzampieri@gmail.com"
|
|
14
21
|
]
|
|
15
22
|
spec.required_ruby_version = ">= 2.0.0"
|
|
16
23
|
|
metadata
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: myfinance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo Hertz
|
|
8
8
|
- Guilherme Franco
|
|
9
9
|
- Rafael B. Tauil
|
|
10
10
|
- Rodrigo Tassinari
|
|
11
|
+
- Vagner Zampieri
|
|
11
12
|
autorequire:
|
|
12
13
|
bindir: bin
|
|
13
14
|
cert_chain: []
|
|
14
|
-
date: 2017-
|
|
15
|
+
date: 2017-09-19 00:00:00.000000000 Z
|
|
15
16
|
dependencies:
|
|
16
17
|
- !ruby/object:Gem::Dependency
|
|
17
18
|
name: typhoeus
|
|
@@ -229,6 +230,7 @@ email:
|
|
|
229
230
|
- g.francosilva@gmail.com
|
|
230
231
|
- rafael@tauil.com.br
|
|
231
232
|
- rodrigo@pittlandia.net
|
|
233
|
+
- vgzampieri@gmail.com
|
|
232
234
|
executables:
|
|
233
235
|
- console
|
|
234
236
|
- rspec
|
|
@@ -425,7 +427,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
425
427
|
version: '0'
|
|
426
428
|
requirements: []
|
|
427
429
|
rubyforge_project:
|
|
428
|
-
rubygems_version: 2.
|
|
430
|
+
rubygems_version: 2.4.8
|
|
429
431
|
signing_key:
|
|
430
432
|
specification_version: 4
|
|
431
433
|
summary: A Ruby client for the Myfinance REST API
|