k_domain 0.0.31 → 0.0.32

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: fd37834af41956f4c7138d19eaa56a1d12c9b6ff1981469bb0b9a2e66467789f
4
- data.tar.gz: 327490b7eb4ac477444ffd946ee680976b46b4a94f9e27b62c08c6425f888203
3
+ metadata.gz: ac2b23cd1f9f4c9126d2b6d8de7ae6d90036ee1c7a4be58723cbac7618fd6cc2
4
+ data.tar.gz: 31f167f3056fdf6e72e8de170da9a5a3678f6552c87173ce11cfa4644b600552
5
5
  SHA512:
6
- metadata.gz: ff054fb1248bbcdfea2681084811ca8d2057c97ffd98baa8e75b35838531a85d0cc9754711d9d544934ea14a2416bdd5fbdec2f1914fe48143b30a7bf9517685
7
- data.tar.gz: 80257167cf2e331a30415618a93a560c38c01d81597bca2c7437a08afbfe4d18c4d08ebafef3b239e5db7eb07666c2929a58cc04cf78065adb3c14b977dac3db
6
+ metadata.gz: 1096896dbe2d176cb3cc981834ef90d3a9b9459ffec2bfe109774e8d60199bb4fb438369945a98195cdfa94b6fadf19fb1bef9ba24e042ef6d7b9ca1632016aa
7
+ data.tar.gz: 958b80748248f58dc1f40827b32e83ef03511a995e503232d239efc03bcafae91c38664f61529a1d26f2343c6ad2e4073ddee86cfc9458e6895afaad44afda1c
data/README.md CHANGED
@@ -93,6 +93,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/kluele
93
93
 
94
94
  ## License
95
95
 
96
+
96
97
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
97
98
 
98
99
  ## Code of Conduct
@@ -18,7 +18,7 @@ module KDomain
18
18
  class Index < Dry::Struct
19
19
  attribute :name , Types::Strict::String
20
20
  attribute :fields , Types::Nominal::Any.optional.default(nil)
21
- attribute :using , Types::Nominal::String
21
+ attribute :using , Types::Nominal::String.optional.default(nil)
22
22
  attribute :order? , Types::Nominal::Hash
23
23
  attribute :where? , Types::Nominal::Any.optional.default(nil)
24
24
  attribute :unique? , Types::Nominal::Any.optional.default(nil)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KDomain
4
- VERSION = '0.0.31'
4
+ VERSION = '0.0.32'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k_domain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.31
4
+ version: 0.0.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys