rentvine 0.3.0 → 0.3.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: a22391298dd007527b72afe3a5ec88163944eb9e539c6f060a0a016f26a586b7
4
- data.tar.gz: 82d4c9ce93ac414e3efefb6aff99e385322bef0fd66e20818e61c83e39c7a22b
3
+ metadata.gz: 021bba79d8a9a760d5f80875ed6491f17c9af3883180cdab1f7a08a4cb3d50d4
4
+ data.tar.gz: 34356d9912a09af299f0d63866860594476a9cfc13b4d895dac305a5b057284b
5
5
  SHA512:
6
- metadata.gz: d55139eee0a55924cc34cd4f793d02b54f23a65bd466d79aa8f347f399742465491107726e18cc1f7ce0072d85118b474cd9fe88b98b09068e28dc4250d76de8
7
- data.tar.gz: a96da0ce3459339f1db75fe238d0d965e1a121783bd5939a1c7bc51b18eb8d1042a05b79eca872d948908df0cb25b01124669e79136b2ad6fe0c799a48ccf15c
6
+ metadata.gz: 9487907158f6c4f2b6e2e39cf0a648559f0e8db2d6d6b5c6bfa2ec269bce8c42d21e84cdd2296e81b191e9f812ceea05839efa887d0e2665114ffa87bf3a1f74
7
+ data.tar.gz: 57dbd2206f90ee7e39d79d710a632930439c3400fd00feecf02f24fab2367f32625be11ed4fd39e4f28038ef243bc857db6354dc06d020cd90b47f6ded15b6ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.1] - 2024-09-20
4
+
5
+ - Resolved issue with the file upload trying to use Rentvine::File instead of Ruby's File class.
6
+
3
7
  ## [0.3.0] - 2024-09-19
4
8
 
5
9
  - Added model for parsing the owner distributions on the portfolio response.
@@ -94,7 +94,7 @@ module Rentvine
94
94
  "Content-Type" => "multipart/form-data",
95
95
  'Authorization' => "Basic #{rentvine_basic_auth}"
96
96
  },
97
- body: { file: File.open(file_path) }
97
+ body: { file: ::File.open(file_path) }
98
98
  }
99
99
 
100
100
  proxy = @auth[:proxy] || ENV['PROXY']
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rentvine
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rentvine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wes Hays
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-19 00:00:00.000000000 Z
11
+ date: 2024-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus