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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 828a5465ab9ec59c47bda9e6ab72c34e9bdbab05536ab99ad45c3cdaec933f16
4
- data.tar.gz: b1c387023439e720d6600310604828d672abd8dd4eabb25d0412bcec423c4529
3
+ metadata.gz: d57aa5a873c33ad9728bd93491de828de2cd34018e089f11b128ff19e1a8a272
4
+ data.tar.gz: 30dbe4b2ffb361596cbe4d33243e31e974ad3db83ffa5970bc0ef621db6f9939
5
5
  SHA512:
6
- metadata.gz: eb0c6e6e4cc10fb351e01334754196f2a65ced999a32980f416a2c226b4ea1a76a77b0a1b0523e408de9b372fc40676ab7e9482290f28d13d983947ae750a9f9
7
- data.tar.gz: 3269605161e8264e04dc0640637a107d4db5ef079f635e31c674cc35cb409eb32ccb991a3f17bcebe4f31bedcd6616fbfb09856829a86f5a802f67f998df9ac1
6
+ metadata.gz: cf0f90b0321b3491753c86aee31bcb3aa5a1000d40d3a7b32f8e9d6438151c21d3fcf68c51b6922495b5e66577461bb6a0bc55604c941ffb614b74c745564f95
7
+ data.tar.gz: f278d19e225c5b00dbbdd5ef77692a6c5fd4d2fe7477cb05930f8d0c02d47f98659eb235e534b307940dafd904ba89f56af1e9ee7ec000bdb8d16c036190ba85
@@ -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 = self.send(key)
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
- result = nil
8
- self.send(:around_each_attribute, name) do
9
- resolved_name = options[:rename] || name
10
- result = self.send(:convert, resolved_name)
11
- result = self.send(:parse_typed_hash, resolved_name, options[:typed_hash]) if options[:typed_hash]
12
- result = self.send(:parse_scalar_hash, resolved_name) if options[:scalar_hash]
13
- result = self.send(:parse_typed_array, resolved_name, options[:typed_array]) if options[:typed_array]
14
- result = options[:default] if (options.key?(:default) && empty_result?(result))
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
- result = nil
26
- self.send(:around_each_attribute, name) do
27
- resolved_name = options[:rename] || name
28
- result = self.send(:convert!, resolved_name)
29
- result = self.send(:parse_typed_hash, resolved_name, options[:typed_hash]) if options[:typed_hash]
30
- result = self.send(:parse_scalar_hash, resolved_name) if options[:scalar_hash]
31
- result = self.send(:parse_typed_array, resolved_name, options[:typed_array]) if options[:typed_array]
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
 
@@ -1,3 +1,3 @@
1
1
  module Requisite
2
- VERSION = '0.4.3'
2
+ VERSION = '0.4.4'
3
3
  end
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: requisite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Osler