yaka 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +2 -2
- data/lib/yaka/payment.rb +2 -2
- data/lib/yaka/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42ca599b1176cba4896986d580b76426ce91ac1832a84df8dfab9e35c10fdce9
|
4
|
+
data.tar.gz: e7fcb095c95545cb33225058429d1c21686f915bd7437bede2060cd1f5cd4f1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5fdd7b2f550470be1f0e65ad27e69ab062e2f280c04bf0c96964bc23fdd8b2caeac88751e99dc94e54a9c4b306908bddf1b658b63aafed85cdf8adfb215129b
|
7
|
+
data.tar.gz: 512f1c20ed4492479b7abdeedafccb44c736590cee4f6f50a1043f5928afe53172797c0d215e061a0872f84c721389b06892aca250e48a986ed86a0918530bce
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
yaka (1.0.
|
4
|
+
yaka (1.0.2)
|
5
5
|
dry-configurable
|
6
6
|
dry-struct
|
7
7
|
faraday
|
@@ -21,7 +21,7 @@ GEM
|
|
21
21
|
dry-configurable (0.8.3)
|
22
22
|
concurrent-ruby (~> 1.0)
|
23
23
|
dry-core (~> 0.4, >= 0.4.7)
|
24
|
-
dry-container (0.7.
|
24
|
+
dry-container (0.7.1)
|
25
25
|
concurrent-ruby (~> 1.0)
|
26
26
|
dry-configurable (~> 0.1, >= 0.1.3)
|
27
27
|
dry-core (0.4.7)
|
data/lib/yaka/payment.rb
CHANGED
@@ -54,8 +54,8 @@ module Yaka
|
|
54
54
|
attribute :payment_mode, Types::Strict::String.meta(omittable: true) # https://kassa.yandex.ru/developers/payments/54fz#54fz-payment-mode
|
55
55
|
attribute :payment_subject, PAYMENT_SUBJECTS.meta(omittable: true)
|
56
56
|
end
|
57
|
-
attribute :phone, Types::String.meta(omittable: true)
|
58
|
-
attribute :email, Types::String.meta(omittable: true)
|
57
|
+
attribute :phone, Types::String.meta(omittable: true).optional
|
58
|
+
attribute :email, Types::String.meta(omittable: true).optional
|
59
59
|
attribute :tax_system_code, Types::String.meta(omittable: true) # https://kassa.yandex.ru/developers/payments/54fz#54fz-tax-systems
|
60
60
|
end
|
61
61
|
attribute :payment_token, Types::String.meta(omittable: true)
|
data/lib/yaka/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yaka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igor Pavlov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-06-
|
11
|
+
date: 2019-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|