tamara 0.1.2 → 0.1.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
  SHA256:
3
- metadata.gz: 98690a89dd1b5601ff9c7c2da0643a0f8e0eb8da5da99b595cf72078f50cf220
4
- data.tar.gz: 7ae0059eaf3df407a9a3461b96282007d074ffc2c8e20de4d547aee0d17d674d
3
+ metadata.gz: 0bc4e0f5a3607a55afd3835bb0f99642341ca210c6238cdbe45b9538cd197309
4
+ data.tar.gz: a96796dc14a4b7877cc7adec0773e97aa6c22bd8522a165eb80b662e2d931663
5
5
  SHA512:
6
- metadata.gz: c9f878121556e2b74a5a8e23951010db0419bb52213cc60bf9be85f0845845ada4e0f6729ce01c8e1a0a0f88eef9c2cf5c59fbaa7a2639c5c87b9d6917cb3c62
7
- data.tar.gz: e12f3367f44da07961cca5ec2672fefb630ad9ad76272f9f2544c9a5820fff51db723b31ec73cb3a4a48fd995ca171e3d87e146217a1b1a63cafd9fb93c0e6bb
6
+ metadata.gz: c772ecca67b4513422eb3725ccad56b390e4fbedb35e8ba4919467e29bdb0258abac4588a9750d663a8191573ffb57eb1c237e59c6089ee745a9cf8fe5091a7b
7
+ data.tar.gz: b022859a2c2f50d223aa733fb1e83899c9e1c84770960bb03d4ddd7d266e086f0da8b922d0b25096f240aa2de116306ef2c6bb80f323f26cc16c6dd621d18769
data/CHANGELOG.md CHANGED
@@ -3,5 +3,6 @@
3
3
  ## [0.1.0] - 2025-03-12
4
4
  ## [0.1.1] - 2025-03-18
5
5
  ## [0.1.2] - 2025-03-26
6
+ ## [0.1.3] - 2025-07-13
6
7
 
7
8
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tamara (0.1.2)
4
+ tamara (0.1.3)
5
5
  activesupport (>= 5.2, < 7.0)
6
6
  concurrent-ruby (~> 1.2.2)
7
7
  faraday (~> 1.10.3)
@@ -64,10 +64,10 @@ GEM
64
64
  faraday-retry (~> 1.0)
65
65
  ruby2_keywords (>= 0.0.4)
66
66
  faraday-em_http (1.0.0)
67
- faraday-em_synchrony (1.0.0)
67
+ faraday-em_synchrony (1.0.1)
68
68
  faraday-excon (1.1.0)
69
69
  faraday-httpclient (1.0.1)
70
- faraday-multipart (1.1.0)
70
+ faraday-multipart (1.1.1)
71
71
  multipart-post (~> 2.0)
72
72
  faraday-net_http (1.0.2)
73
73
  faraday-net_http_persistent (1.2.0)
@@ -22,7 +22,7 @@ module Tamara
22
22
  unit_price: Amount.schema(allows_null: filtered_keys.exclude?("unit_price")),
23
23
  tax_amount: Amount.schema(allows_null: filtered_keys.exclude?("tax_amount"), min: 0.0),
24
24
  discount_amount: Amount.schema(allows_null: filtered_keys.exclude?("discount_amount")),
25
- total_amount: Amount.schema(allows_null: filtered_keys.exclude?("total_amount"))
25
+ total_amount: Amount.schema(allows_null: filtered_keys.exclude?("total_amount"), min: 0.0)
26
26
  },
27
27
  required: filtered_keys
28
28
  }
@@ -1,3 +1,3 @@
1
1
  module Tamara
2
- VERSION = "0.1.2".freeze
2
+ VERSION = "0.1.3".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tamara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Youssef Ossama
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-27 00:00:00.000000000 Z
11
+ date: 2025-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport