updox 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f843a1291c9ff0193399fb046a0ff896ae91b572fa538b4c9f12fb8f60033c75
4
- data.tar.gz: ee983a76110a37992d4b5a3c1df2635a7960e61e426a39922cae72a242b417bb
3
+ metadata.gz: 4abb521919676bd819a0befcc39c3838aad082ecd92df242fee2777b6cc23d07
4
+ data.tar.gz: cf2d5d00d9534f305a5e3a5d198cf7f1b8290c389b8634d4711cdce6f23d1e80
5
5
  SHA512:
6
- metadata.gz: 209cf6d78a8ed693e050022ef4fe5c9e201b94a3754d562f03538c33172549beb751b8c639027d2f205d3e546fd503f31c35d921ff82983fdb16cd4deb143e95
7
- data.tar.gz: 764c3e8086b75bfd7517daefe85c968fabfa23567059f6314ccead6d2e69734cf43c37d158f3b33cd1fbfc6d1053eb58e08f6cc692f14791944c9106e5e18914
6
+ metadata.gz: 06e31ade821c10501af34cb8c83215006644d2c043d773126340f3953c9ed441bd5352ddd8e1f3556e5361d05547de9bcb0017f72e10c5aabb987d5dfd481a35
7
+ data.tar.gz: 7ec78a84d960acc48a3fab2110a73ec1bff0b70d0b462b0a9f44b689e9a3f290f9e82b046bbec8d0928d212a41b36e17819dfc241766f434bc39ca23528ef678
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.10.0] - [UNRELEASED]
8
+ ### Fixed
9
+ - Bug with User#exists? always returning true
10
+
7
11
  ## [0.9.0] - [2020-02-19]
8
12
  ### Fixed
9
13
  - User#create had wrong authorization
@@ -72,7 +76,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
72
76
  ### Added
73
77
  - Initial Release with ability to ping Updox api
74
78
 
75
- [0.9.0]: https://github.com/WeInfuse/updox/compare/v0.8.0...HEAD
79
+ [0.10.0]: https://github.com/WeInfuse/updox/compare/v0.9.0...HEAD
80
+ [0.9.0]: https://github.com/WeInfuse/updox/compare/v0.8.0...v0.9.0
76
81
  [0.8.0]: https://github.com/WeInfuse/updox/compare/v0.7.0...v0.8.0
77
82
  [0.7.0]: https://github.com/WeInfuse/updox/compare/v0.6.0...v0.7.0
78
83
  [0.6.0]: https://github.com/WeInfuse/updox/compare/v0.5.0...v0.6.0
@@ -40,7 +40,7 @@ module Updox
40
40
 
41
41
  response = self.find(item_id, **opts)
42
42
 
43
- false == response.nil? && (false == response.class.const_defined?(:FIND_ENDPOINT) || response.successful?)
43
+ false == response.nil? && (false == self.const_defined?(:FIND_ENDPOINT) || response.successful?)
44
44
  end
45
45
 
46
46
  def self.sync(items, account_id: , batch_size: RECOMMENDED_BATCH_SIZE, endpoint: self.const_get(:SYNC_ENDPOINT))
@@ -1,3 +1,3 @@
1
1
  module Updox
2
- VERSION = '0.9.0'.freeze
2
+ VERSION = '0.10.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: updox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett