schemad 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ac56fbfc92ff1591e80b3986e32db341094f36e
4
- data.tar.gz: cc9891fe9e9c7aa05892ea32f1de80104ebba9c0
3
+ metadata.gz: c11280c8f5037b191b4d313265c0ccb2ed009302
4
+ data.tar.gz: 8cbcf77cd846be30909701a0e1cecb307370fbe7
5
5
  SHA512:
6
- metadata.gz: b6cadbbd29e308084c9c24933c276dca09be40ab652b08f3b3a472192f0ab56474f375fe967799812ec33a409c197d1786e4e3ee35614f72adfb1525d63eba7a
7
- data.tar.gz: 475ada3273a0d3f227b14700887bd39716ac53af650fdc3e569fbedcab673c32aa68354fd978283963b44fc23ab9df2ac8db86cbfa6d5a0a90cca83fd8c43796
6
+ metadata.gz: 228f64747f5f15fc7f9b307aa4554948d0249c0fa01775201a92c02018b5fef3ba226110fe23d41c78546861da0dab550eb03833c23270b2fbb2dd0bd7967655
7
+ data.tar.gz: 998f51721618db194450536817ad59f453c4ce89dff59995b0197b29dc3eaadb4d61b332ccfa68899e4a0fea8196c12a8f8d463b23a602fd9e579c82d41c5a69
data/README.md CHANGED
@@ -275,6 +275,9 @@ On a side note, we have a number of very simple type handlers, you can see them
275
275
  It is _also_ possible to use these however you want in your own classes, but there are far more complete and complex type handlers elsewhere. If you find these types unsatisfactory or wish to use additional types, you can easily define your own.
276
276
 
277
277
  ```ruby
278
+ require 'schemad/type_handler'
279
+ require 'schemad/abstract_handler'
280
+
278
281
  class YouMomHandler < Schemad::AbstractHandler
279
282
  handle :your_mom
280
283
 
@@ -1,6 +1,5 @@
1
1
  require "schemad/version"
2
2
 
3
- require 'schemad/type_handler'
4
3
  require 'schemad/default_types'
5
4
  require 'schemad/normalizer'
6
5
  require 'schemad/entity'
@@ -1,3 +1,4 @@
1
+ require 'schemad/type_handler'
1
2
  require 'schemad/abstract_handler'
2
3
 
3
4
  require 'schemad/types/boolean_handler'
@@ -1,3 +1,3 @@
1
1
  module Schemad
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schemad
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke van der Hoeven
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-20 00:00:00.000000000 Z
11
+ date: 2015-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport