json_schematize 0.1.0 → 0.2.0
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/.circleci/config.yml +4 -4
- data/Gemfile.lock +1 -1
- data/json_schematize.gemspec +2 -2
- data/lib/json_schematize/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6003a56233d3d53c7eb0000e6c96b93a6c4ce737eb810a894fb4096ee1890dcf
|
|
4
|
+
data.tar.gz: def4f9ac3e80f7562ac8a71bd15846d281013b973a9daa3ea2ca32ac16d32121
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2aadc534091f64fd84b031c97030f4e6739c8ea65ab0d2280644ccff147ec3002ced4236d0ef9d65f4b5ae43ab7fe2e902b336a3f7ee7ababe5e2710e88fafc
|
|
7
|
+
data.tar.gz: b6b0382a87707bb66a4e57b804401213914f7792a903d98d61fa3ad4d2c640326822135cc3b435972a36bab38bd6752e27a6447d44ef03fe0200eb522c6245c4
|
data/.circleci/config.yml
CHANGED
data/Gemfile.lock
CHANGED
data/json_schematize.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Matt Taylor"]
|
|
9
9
|
spec.email = ["mattius.taylor@gmail.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "
|
|
12
|
-
spec.description = "
|
|
11
|
+
spec.summary = "This gem gives you the ability to turn API results into a standardized schema's that can be easily grocked"
|
|
12
|
+
spec.description = "Take standardized API results and turn them into a Schema"
|
|
13
13
|
spec.homepage = "https://github.com/matt-taylor/json_schematize"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: json_schematize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Taylor
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 0.17.0
|
|
69
|
-
description:
|
|
69
|
+
description: Take standardized API results and turn them into a Schema
|
|
70
70
|
email:
|
|
71
71
|
- mattius.taylor@gmail.com
|
|
72
72
|
executables: []
|
|
@@ -117,5 +117,6 @@ requirements: []
|
|
|
117
117
|
rubygems_version: 3.2.3
|
|
118
118
|
signing_key:
|
|
119
119
|
specification_version: 4
|
|
120
|
-
summary:
|
|
120
|
+
summary: This gem gives you the ability to turn API results into a standardized schema's
|
|
121
|
+
that can be easily grocked
|
|
121
122
|
test_files: []
|