requisite 0.4.3 → 0.4.4
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/lib/requisite/api_model.rb +8 -1
- data/lib/requisite/boundary_object.rb +15 -25
- data/lib/requisite/version.rb +1 -1
- data/test/requisite/api_user_test.rb +14 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d57aa5a873c33ad9728bd93491de828de2cd34018e089f11b128ff19e1a8a272
|
4
|
+
data.tar.gz: 30dbe4b2ffb361596cbe4d33243e31e974ad3db83ffa5970bc0ef621db6f9939
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf0f90b0321b3491753c86aee31bcb3aa5a1000d40d3a7b32f8e9d6438151c21d3fcf68c51b6922495b5e66577461bb6a0bc55604c941ffb614b74c745564f95
|
7
|
+
data.tar.gz: f278d19e225c5b00dbbdd5ef77692a6c5fd4d2fe7477cb05930f8d0c02d47f98659eb235e534b307940dafd904ba89f56af1e9ee7ec000bdb8d16c036190ba85
|
data/lib/requisite/api_model.rb
CHANGED
@@ -36,7 +36,10 @@ module Requisite
|
|
36
36
|
preprocess_model
|
37
37
|
{}.tap do |result|
|
38
38
|
self.class.attribute_keys_with_inheritance.each do |key|
|
39
|
-
value =
|
39
|
+
value = nil
|
40
|
+
around_each_attribute(key) do
|
41
|
+
value = self.send(key)
|
42
|
+
end
|
40
43
|
result[key] = value if show_nil || !value.nil?
|
41
44
|
end
|
42
45
|
end
|
@@ -106,5 +109,9 @@ module Requisite
|
|
106
109
|
def preprocess_model
|
107
110
|
# noop
|
108
111
|
end
|
112
|
+
|
113
|
+
def around_each_attribute(name)
|
114
|
+
yield
|
115
|
+
end
|
109
116
|
end
|
110
117
|
end
|
@@ -4,17 +4,14 @@ module Requisite
|
|
4
4
|
def attribute(name, options={})
|
5
5
|
attribute_keys << name
|
6
6
|
define_method(name) do
|
7
|
-
|
8
|
-
self.send(:
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
raise_bad_type_if_type_mismatch(result, options[:type]) if options[:type] && result
|
16
|
-
result = result.to_s if options[:stringify]
|
17
|
-
end
|
7
|
+
resolved_name = options[:rename] || name
|
8
|
+
result = self.send(:convert, resolved_name)
|
9
|
+
result = self.send(:parse_typed_hash, resolved_name, options[:typed_hash]) if options[:typed_hash]
|
10
|
+
result = self.send(:parse_scalar_hash, resolved_name) if options[:scalar_hash]
|
11
|
+
result = self.send(:parse_typed_array, resolved_name, options[:typed_array]) if options[:typed_array]
|
12
|
+
result = options[:default] if (options.key?(:default) && empty_result?(result))
|
13
|
+
raise_bad_type_if_type_mismatch(result, options[:type]) if options[:type] && result
|
14
|
+
result = result.to_s if options[:stringify]
|
18
15
|
result
|
19
16
|
end
|
20
17
|
end
|
@@ -22,16 +19,13 @@ module Requisite
|
|
22
19
|
def attribute!(name, options={})
|
23
20
|
attribute_keys << name
|
24
21
|
define_method(name) do
|
25
|
-
|
26
|
-
self.send(:
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
result = result.to_s if options[:stringify]
|
33
|
-
raise_bad_type_if_type_mismatch(result, options[:type]) if options[:type]
|
34
|
-
end
|
22
|
+
resolved_name = options[:rename] || name
|
23
|
+
result = self.send(:convert!, resolved_name)
|
24
|
+
result = self.send(:parse_typed_hash, resolved_name, options[:typed_hash]) if options[:typed_hash]
|
25
|
+
result = self.send(:parse_scalar_hash, resolved_name) if options[:scalar_hash]
|
26
|
+
result = self.send(:parse_typed_array, resolved_name, options[:typed_array]) if options[:typed_array]
|
27
|
+
result = result.to_s if options[:stringify]
|
28
|
+
raise_bad_type_if_type_mismatch(result, options[:type]) if options[:type]
|
35
29
|
result
|
36
30
|
end
|
37
31
|
end
|
@@ -52,10 +46,6 @@ module Requisite
|
|
52
46
|
|
53
47
|
private
|
54
48
|
|
55
|
-
def around_each_attribute(name)
|
56
|
-
yield
|
57
|
-
end
|
58
|
-
|
59
49
|
self.singleton_class.send(:alias_method, :a, :attribute)
|
60
50
|
self.singleton_class.send(:alias_method, :a!, :attribute!)
|
61
51
|
|
data/lib/requisite/version.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
require 'benchmark'
|
3
|
-
|
4
3
|
# Example Object
|
5
4
|
class ApiUser < Requisite::ApiModel
|
6
5
|
|
@@ -18,6 +17,7 @@ class ApiUser < Requisite::ApiModel
|
|
18
17
|
attribute :custom_data, scalar_hash: true, rename: :custom_attributes
|
19
18
|
attribute :company
|
20
19
|
attribute :companies
|
20
|
+
attribute :api_version, type: Integer
|
21
21
|
end
|
22
22
|
|
23
23
|
# Ensure that at least one identifier is passed
|
@@ -28,6 +28,10 @@ class ApiUser < Requisite::ApiModel
|
|
28
28
|
raise StandardError unless identifier
|
29
29
|
end
|
30
30
|
|
31
|
+
def api_version
|
32
|
+
1
|
33
|
+
end
|
34
|
+
|
31
35
|
def last_attribute_fetch_time
|
32
36
|
@last_attribute_fetch_time
|
33
37
|
end
|
@@ -89,7 +93,8 @@ module Requisite
|
|
89
93
|
:custom_data => {
|
90
94
|
:is_cool => true,
|
91
95
|
:logins => 77
|
92
|
-
}
|
96
|
+
},
|
97
|
+
:api_version => 1
|
93
98
|
})
|
94
99
|
user.name.must_equal('Bob')
|
95
100
|
end
|
@@ -135,7 +140,8 @@ module Requisite
|
|
135
140
|
:custom_data => {
|
136
141
|
:different => true
|
137
142
|
},
|
138
|
-
:new_attribute => 'hi'
|
143
|
+
:new_attribute => 'hi',
|
144
|
+
:api_version => 1
|
139
145
|
})
|
140
146
|
end
|
141
147
|
|
@@ -147,7 +153,8 @@ module Requisite
|
|
147
153
|
user.to_hash.must_equal({
|
148
154
|
:user_id => 'abcdef',
|
149
155
|
:name => 'Bob',
|
150
|
-
:custom_data => {}
|
156
|
+
:custom_data => {},
|
157
|
+
:api_version => 1
|
151
158
|
})
|
152
159
|
user.name.must_equal('Bob')
|
153
160
|
end
|
@@ -170,7 +177,8 @@ module Requisite
|
|
170
177
|
:new_session => nil,
|
171
178
|
:custom_data => {},
|
172
179
|
:company => nil,
|
173
|
-
:companies => nil
|
180
|
+
:companies => nil,
|
181
|
+
:api_version => 1
|
174
182
|
})
|
175
183
|
user.name.must_equal('Bob')
|
176
184
|
end
|
@@ -182,7 +190,7 @@ module Requisite
|
|
182
190
|
|
183
191
|
user.to_hash(show_nil: true)
|
184
192
|
|
185
|
-
user.attribute_names.must_equal [:id, :user_id, :email, :name, :last_seen_user_agent, :last_request_at, :unsubscribed_from_emails, :update_last_request_at, :new_session, :custom_data, :company, :companies]
|
193
|
+
user.attribute_names.must_equal [:id, :user_id, :email, :name, :created_at, :last_seen_user_agent, :last_request_at, :unsubscribed_from_emails, :update_last_request_at, :new_session, :custom_data, :company, :companies, :api_version]
|
186
194
|
user.last_attribute_fetch_time.must_be :>, 0
|
187
195
|
end
|
188
196
|
end
|