elasticgraph-json_schema 1.0.0.rc1 → 1.0.0.rc2
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 +4 -4
- data/README.md +24 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66b4dd76b37d4c28818df66f5b3fe98b71cdafe319b99000f0626ef55246aeac
|
4
|
+
data.tar.gz: 6832935ba3ee199e6a829e13e5baf414bb3523ae3f56a2bff289ef462add8894
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6af8963d8d6554b03dfe1b6e5e06bc6d3c74a24251ad5956f0c7e290998a529753ea38b5f491e04f76bb218c43c2ee4e16ba28c737ad669145839cebf2b72e09
|
7
|
+
data.tar.gz: 30256bcb405f3e07c64726748bf37caaeee84f709b7217dbc56ba00b52578b212482d760bcd3c78ba2cd4d44821d7216b64ac3dd861fd59fabe90cda81008c04
|
data/README.md
CHANGED
@@ -1,3 +1,27 @@
|
|
1
1
|
# ElasticGraph::JSONSchema
|
2
2
|
|
3
3
|
Provides JSON Schema validation for ElasticGraph.
|
4
|
+
|
5
|
+
## Dependency Diagram
|
6
|
+
|
7
|
+
```mermaid
|
8
|
+
graph LR;
|
9
|
+
classDef targetGemStyle fill:#FADBD8,stroke:#EC7063,color:#000,stroke-width:2px;
|
10
|
+
classDef otherEgGemStyle fill:#A9DFBF,stroke:#2ECC71,color:#000;
|
11
|
+
classDef externalGemStyle fill:#E0EFFF,stroke:#70A1D7,color:#2980B9;
|
12
|
+
elasticgraph-json_schema["elasticgraph-json_schema"];
|
13
|
+
class elasticgraph-json_schema targetGemStyle;
|
14
|
+
elasticgraph-support["elasticgraph-support"];
|
15
|
+
elasticgraph-json_schema --> elasticgraph-support;
|
16
|
+
class elasticgraph-support otherEgGemStyle;
|
17
|
+
json_schemer["json_schemer"];
|
18
|
+
elasticgraph-json_schema --> json_schemer;
|
19
|
+
class json_schemer externalGemStyle;
|
20
|
+
elasticgraph-indexer["elasticgraph-indexer"];
|
21
|
+
elasticgraph-indexer --> elasticgraph-json_schema;
|
22
|
+
class elasticgraph-indexer otherEgGemStyle;
|
23
|
+
elasticgraph-schema_definition["elasticgraph-schema_definition"];
|
24
|
+
elasticgraph-schema_definition --> elasticgraph-json_schema;
|
25
|
+
class elasticgraph-schema_definition otherEgGemStyle;
|
26
|
+
click json_schemer href "https://rubygems.org/gems/json_schemer" "Open on RubyGems.org" _blank;
|
27
|
+
```
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticgraph-json_schema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Myron Marston
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.0.
|
20
|
+
version: 1.0.0.rc2
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.0.0.
|
27
|
+
version: 1.0.0.rc2
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: json_schemer
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,10 +56,10 @@ licenses:
|
|
56
56
|
- MIT
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/block/elasticgraph/issues
|
59
|
-
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.0.
|
60
|
-
documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.0.
|
59
|
+
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.0.rc2
|
60
|
+
documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.0.rc2/
|
61
61
|
homepage_uri: https://block.github.io/elasticgraph/
|
62
|
-
source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.0.
|
62
|
+
source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.0.rc2/elasticgraph-json_schema
|
63
63
|
gem_category: core
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|