katachi 0.0.1.0 → 0.0.1.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/katachi/version.rb +1 -1
  3. metadata +16 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eae61d46a9a766e14abce3b55525a693129e315439ed4984312b081ebf188ec7
4
- data.tar.gz: fddee880cf7f3aeb4911b47b5143242dd5f38e1fd0308498b1e745f032b71898
3
+ metadata.gz: 7261fd339cbee8210baf5fda5540cae8e3e7a2f887e056bbe279ad8f5b2d56a9
4
+ data.tar.gz: bb55f2b4593eca21d7834d15c9a9ee61443a7ac488fb73754b65fd0baf06d050
5
5
  SHA512:
6
- metadata.gz: 12e516977d0ad4fbb33b52920737b76bfc5fd218ce934fdd78691e16d38cd90ce62247fa89b6adc226bd0ae04cc6ece47c651c2ebd5c93e3fe0bef980fea2b9e
7
- data.tar.gz: 76d6350536445901723c42df05b5cb2ed7bb15f781ee16896b03d88bc6cdae55a9e01bbf91a204776d820e4a3e9472eb7b0eaf5f88c34b3052ecdf7cd1fd25b1
6
+ metadata.gz: a5c8f3e5c9fee2b329c1b005bd5a8473f01206ba7e74dc2035aa934524857faafaea9742dde9fbcb2e2cd1b266e402e3ba92b2433fa3a073ebeae0f6c34afc9b
7
+ data.tar.gz: 3adb7701d9a50619fd1a2e974b87e03b4d56f5092495ba5214f74b515fc244b10d92042eecf21b12536f8df859da7388854ddb13300b8470fb7b7abd9991391a
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Katachi
4
- VERSION = "0.0.1.0"
4
+ VERSION = "0.0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katachi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.0
4
+ version: 0.0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Tannas
@@ -10,21 +10,23 @@ cert_chain: []
10
10
  date: 2025-03-18 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: |
13
+ == Description
14
+
13
15
  A tool for describing and validating objects as intuitively as possible.
16
+ Easier to read and write than JSON Schema, and more powerful than a simple hash comparison.
17
+ Example usage:
14
18
 
15
- ```ruby
16
- shape = {
17
- :$guid => {
18
- email: :$email,
19
- first_name: String,
20
- last_name: String,
21
- preferred_name: AnyOf[String, nil],
22
- admin_only_information: AnyOf[Symbol => String, :$undefined],
23
- Symbol => Object,
24
- },
25
- }
26
- expect(api_response.body).to have_shape(shape)
27
- ```
19
+ shape = {
20
+ :$guid => {
21
+ email: :$email,
22
+ first_name: String,
23
+ last_name: String,
24
+ preferred_name: AnyOf[String, nil],
25
+ admin_only_information: AnyOf[Symbol => String, :$undefined],
26
+ Symbol => Object,
27
+ },
28
+ }
29
+ expect(api_response.body).to have_shape(shape)
28
30
  email:
29
31
  - jtannas@gmail.com
30
32
  executables: []