paxful_client 1.5.0 → 1.5.1

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: f1270e036afa4946b85f7118c5ec2578220ba6a5eccc9186fb6fd52df03109dc
4
- data.tar.gz: 594243a091d8649c460bdb3a9ee99e42cb69eee7716c4c662f362bd3db566a07
3
+ metadata.gz: 15fb0470d930c10cd7f413e3937570b5a822675944583ea8590c47f326aedc22
4
+ data.tar.gz: 71fe7be689745fd6f8220d14ed8aea60844a0eb6d53508625e34e7d59849d037
5
5
  SHA512:
6
- metadata.gz: aef69d896ccbdac8f1c5fc26157b2e30e9a298445ac7f12f41e2153f8ca0e65fc213f696d0b8fd91a441f7c7269b35c1a2cc7071a25bd83f67312b6c8bd056d5
7
- data.tar.gz: e6389e3e9f731838f39d8cfe46bba9084c4977c30477dd9d57c28f7375b21d582bbe745b38ff5266dd18a96af2d4ad44b5971f78bff13e96823ca758aadf2823
6
+ metadata.gz: 36bf8095a605b6ff2207e37b3a9e3aec20e47c9deb0080e6ccfa8ca986cde7a9d8b4ada2d178270c6e3e47a3dea115b2b231e28e356b26d957339ee563f517ad
7
+ data.tar.gz: f08d2353ef4f33808b3c2b04b58ddcdbc9480d420ef0a1dde77b48bf5f9a6899abffbdc5b5895bcf7fb7ac9f00c69484d5bf982d2a7582f82e385910eb87d0fc
data/CHANGELOG.md CHANGED
@@ -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](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.5.1] - 2022-04-06
8
+ ### Fixed
9
+ - Unable to find base schema when running dry-validation 0.13
10
+
7
11
  ## [1.5.0] - 2022-04-06
8
12
  ### Added
9
13
  - undefined method 'size' for nil when running with dry-validation 0.13 (allow 0.13 to be installed)
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- paxful_client (1.5.0)
14
+ paxful_client (1.5.1)
15
15
  activesupport
16
16
  api_client_base
17
17
  dry-validation (>= 0.13, < 2)
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: ..
13
13
  specs:
14
- paxful_client (1.4.0)
14
+ paxful_client (1.5.0)
15
15
  activesupport
16
16
  api_client_base
17
17
  dry-validation (>= 0.13, < 2)
@@ -1,3 +1,5 @@
1
1
  module PaxfulClient
2
- GetBalanceRequestSchema = BaseRequestSchema
2
+ if not Dry::Validation.const_defined?("Schema")
3
+ GetBalanceRequestSchema = BaseRequestSchema
4
+ end
3
5
  end
@@ -1,3 +1,5 @@
1
1
  module PaxfulClient
2
- GetCompletedTradesRequestSchema = BaseRequestSchema
2
+ if not Dry::Validation.const_defined?("Schema")
3
+ GetCompletedTradesRequestSchema = BaseRequestSchema
4
+ end
3
5
  end
@@ -1,3 +1,3 @@
1
1
  module PaxfulClient
2
- VERSION = "1.5.0"
2
+ VERSION = "1.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paxful_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Chavez