active_model_serializers_validator 1.0 → 1.0.1
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.
|
@@ -8,10 +8,10 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = ActiveModel::Serializer::Validator::VERSION
|
|
9
9
|
spec.authors = ['Rémi Prévost']
|
|
10
10
|
spec.email = ['rprevost@mirego.com']
|
|
11
|
-
spec.description = '
|
|
12
|
-
spec.summary = '
|
|
13
|
-
spec.homepage = 'https://github.com/mirego/
|
|
14
|
-
spec.license = '
|
|
11
|
+
spec.description = 'An extension to ActiveModel::Serializer that validates serializers output against a JSON schema'
|
|
12
|
+
spec.summary = 'An extension to ActiveModel::Serializer that validates serializers output against a JSON schema'
|
|
13
|
+
spec.homepage = 'https://github.com/mirego/active_model_serializers_validator'
|
|
14
|
+
spec.license = 'BSD 3-Clause'
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_model_serializers_validator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-07-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -123,7 +123,8 @@ dependencies:
|
|
|
123
123
|
- - ~>
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
125
|
version: '1.1'
|
|
126
|
-
description:
|
|
126
|
+
description: An extension to ActiveModel::Serializer that validates serializers output
|
|
127
|
+
against a JSON schema
|
|
127
128
|
email:
|
|
128
129
|
- rprevost@mirego.com
|
|
129
130
|
executables: []
|
|
@@ -145,9 +146,9 @@ files:
|
|
|
145
146
|
- spec/support/macros/fixtures.rb
|
|
146
147
|
- spec/support/macros/serializers.rb
|
|
147
148
|
- spec/validator_spec.rb
|
|
148
|
-
homepage: https://github.com/mirego/
|
|
149
|
+
homepage: https://github.com/mirego/active_model_serializers_validator
|
|
149
150
|
licenses:
|
|
150
|
-
-
|
|
151
|
+
- BSD 3-Clause
|
|
151
152
|
post_install_message:
|
|
152
153
|
rdoc_options: []
|
|
153
154
|
require_paths:
|
|
@@ -160,7 +161,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
160
161
|
version: '0'
|
|
161
162
|
segments:
|
|
162
163
|
- 0
|
|
163
|
-
hash:
|
|
164
|
+
hash: -3800885852508204265
|
|
164
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
166
|
none: false
|
|
166
167
|
requirements:
|
|
@@ -169,13 +170,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
169
170
|
version: '0'
|
|
170
171
|
segments:
|
|
171
172
|
- 0
|
|
172
|
-
hash:
|
|
173
|
+
hash: -3800885852508204265
|
|
173
174
|
requirements: []
|
|
174
175
|
rubyforge_project:
|
|
175
176
|
rubygems_version: 1.8.23
|
|
176
177
|
signing_key:
|
|
177
178
|
specification_version: 3
|
|
178
|
-
summary:
|
|
179
|
+
summary: An extension to ActiveModel::Serializer that validates serializers output
|
|
180
|
+
against a JSON schema
|
|
179
181
|
test_files:
|
|
180
182
|
- spec/fixtures/product.jsonschema
|
|
181
183
|
- spec/spec_helper.rb
|