katachi 0.0.1.1 → 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 +14 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f3c482872d6e5dead331cabeb9c619ffc6b28d2864d52aaf822fba2b22710db
4
- data.tar.gz: 179dda22022e4f964e841811bb5df216b24718c0498e6d7940c4ca3dabe5137e
3
+ metadata.gz: 7261fd339cbee8210baf5fda5540cae8e3e7a2f887e056bbe279ad8f5b2d56a9
4
+ data.tar.gz: bb55f2b4593eca21d7834d15c9a9ee61443a7ac488fb73754b65fd0baf06d050
5
5
  SHA512:
6
- metadata.gz: 47524b19d6ceebc9c926f8da3f4e13993a9927fefde11f6e65f862e843d842c5863519ec36fd6a92d3d944a0b6f79bc1848abdbd3db24d85da60b089db6db4ba
7
- data.tar.gz: 47b60942de0f1d29cccea786b64ff15736f0a87138f7f9d0c91d1750f5b4b2ea1bbf16d025c4dd4a83869d564bd213aa46c723e76ba1161ac495a9d330bc79e7
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.1"
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.1
4
+ version: 0.0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Tannas
@@ -13,20 +13,20 @@ description: |
13
13
  == Description
14
14
 
15
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:
16
18
 
17
- ```ruby
18
- shape = {
19
- :$guid => {
20
- email: :$email,
21
- first_name: String,
22
- last_name: String,
23
- preferred_name: AnyOf[String, nil],
24
- admin_only_information: AnyOf[Symbol => String, :$undefined],
25
- Symbol => Object,
26
- },
27
- }
28
- expect(api_response.body).to have_shape(shape)
29
- ```
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)
30
30
  email:
31
31
  - jtannas@gmail.com
32
32
  executables: []