roqua-core-api 0.0.31 → 0.0.32

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: 8774c6db4624c45bcc0328d7958f5cce9e11005c
4
- data.tar.gz: 30db19c6a18e37384170790f72132578c29a31e7
3
+ metadata.gz: 678e4ae5c7c3d16615d18e6e281cf91fa4914cda
4
+ data.tar.gz: 05a66bcca78f102d0ea61ade9f2c1eb124e4375f
5
5
  SHA512:
6
- metadata.gz: 9558aa3d2f877a00d0713d0b9b510b9fb87f62ed43660dc74a1a13534bbde96aa59ecf41c032935e90becd13c7530279d7f4320b07acf671c1559c5914d7b81b
7
- data.tar.gz: 8d28ee3eaf5fc0c43e3565b70510b643a6ed3d3a93558a1b40dc4a4b120a18de47916d0bd90238e35b11b50c0f346964c0dca36148fb22d3bd67153a47f3270b
6
+ metadata.gz: ca4c68a9e732b0f87396e78178e43057662ce88a84924ab7fc553fecab9fb01a0933b0c6cfa058fc7b4a1b46baf7de1b070d3ccddf3e94884f5eddce828055b0
7
+ data.tar.gz: c23e665fb6b1e359c71bd2bf3e46638b1d234dc32e101fad6a11b88f93c1ed1711bf51b9eb5f620568ebf6f3124b83482015cbef55ccbb7ef83b855994e02d57
data/README.md CHANGED
@@ -33,6 +33,11 @@ Make sure you have the standard active validations translations (errors.messages
33
33
  * errors.messages.invalid_email
34
34
  * errors.messages.invalid_date
35
35
 
36
+ ## Changelog
37
+
38
+ * 0.0.32
39
+ Added `subject_code` to `Person`
40
+
36
41
  ## Copyright
37
42
 
38
43
  Copyright (c) 2014 Marten Veldthuis
@@ -18,6 +18,7 @@ class Roqua::CoreApi::Models::Person < Roqua::CoreApi::Models::ActiveVirtus
18
18
  attribute :city, String
19
19
  attribute :zipcode, String
20
20
  attribute :country, String
21
+ attribute :subject_code, String
21
22
 
22
23
  validates :role, inclusion: { in: %w( admin professional patient parent ) }
23
24
 
@@ -1,5 +1,5 @@
1
1
  module Roqua
2
2
  module CoreApi
3
- VERSION = '0.0.31'
3
+ VERSION = '0.0.32'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roqua-core-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.31
4
+ version: 0.0.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marten Veldthuis