kharon 1.0.0 → 1.1.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 +8 -8
- data/Gemfile.lock +4 -1
- data/README.md +29 -13
- data/dist/kharon-1.0.0.gem +0 -0
- data/doc/Kharon.html +4 -4
- data/doc/Kharon/Errors.html +1 -1
- data/doc/Kharon/Errors/Validation.html +1 -1
- data/doc/Kharon/Handlers.html +1 -1
- data/doc/Kharon/Handlers/Exceptions.html +1 -1
- data/doc/Kharon/Handlers/Messages.html +1 -1
- data/doc/Kharon/Validate.html +276 -0
- data/doc/Kharon/Validator.html +1 -1
- data/doc/_index.html +8 -4
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +140 -157
- data/doc/file_list.html +0 -3
- data/doc/index.html +140 -157
- data/doc/method_list.html +12 -6
- data/doc/top-level-namespace.html +1 -1
- data/lib/kharon.rb +1 -1
- data/lib/kharon/validate.rb +21 -0
- data/lib/kharon/validator.rb +19 -1
- data/lib/kharon/version.rb +1 -1
- data/spec/lib/kharon/validate_spec.rb +20 -0
- data/spec/lib/kharon/validator_spec.rb +87 -36
- data/spec/results.html +824 -689
- metadata +6 -3
- data/spec/utils/fake_config.yml +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kharon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vincent Courtois
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bson
|
@@ -143,6 +143,7 @@ files:
|
|
143
143
|
- dist/kharon-0.4.0.gem
|
144
144
|
- dist/kharon-0.5.0.gem
|
145
145
|
- dist/kharon-0.5.1.gem
|
146
|
+
- dist/kharon-1.0.0.gem
|
146
147
|
- doc/Kharon.html
|
147
148
|
- doc/Kharon/Configuration.html
|
148
149
|
- doc/Kharon/Errors.html
|
@@ -151,6 +152,7 @@ files:
|
|
151
152
|
- doc/Kharon/Handlers/Exceptions.html
|
152
153
|
- doc/Kharon/Handlers/Messages.html
|
153
154
|
- doc/Kharon/Helpers.html
|
155
|
+
- doc/Kharon/Validate.html
|
154
156
|
- doc/Kharon/Validator.html
|
155
157
|
- doc/_index.html
|
156
158
|
- doc/class_list.html
|
@@ -174,16 +176,17 @@ files:
|
|
174
176
|
- lib/kharon/handlers.rb
|
175
177
|
- lib/kharon/handlers/exceptions.rb
|
176
178
|
- lib/kharon/handlers/messages.rb
|
179
|
+
- lib/kharon/validate.rb
|
177
180
|
- lib/kharon/validator.rb
|
178
181
|
- lib/kharon/version.rb
|
179
182
|
- spec/lib/kharon/errors/validation_spec.rb
|
180
183
|
- spec/lib/kharon/handlers/exceptions_spec.rb
|
181
184
|
- spec/lib/kharon/handlers/messages_spec.rb
|
185
|
+
- spec/lib/kharon/validate_spec.rb
|
182
186
|
- spec/lib/kharon/validator_spec.rb
|
183
187
|
- spec/lib/kharon_spec.rb
|
184
188
|
- spec/results.html
|
185
189
|
- spec/spec_helper.rb
|
186
|
-
- spec/utils/fake_config.yml
|
187
190
|
homepage: https://rubygems.org/gems/kharon
|
188
191
|
licenses:
|
189
192
|
- Apache License 2
|
data/spec/utils/fake_config.yml
DELETED
File without changes
|