requisite 0.4.2 → 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: 22ae33af68416be1beb8abf9c3384934e4c93f1a46ab089c05436956a7391e3a
4
- data.tar.gz: ef8a85a1fb0af0aedee42f635283590306016e0101adef510365f065ae6cb908
3
+ metadata.gz: d57aa5a873c33ad9728bd93491de828de2cd34018e089f11b128ff19e1a8a272
4
+ data.tar.gz: 30dbe4b2ffb361596cbe4d33243e31e974ad3db83ffa5970bc0ef621db6f9939
5
5
  SHA512:
6
- metadata.gz: 35f9ebfbf4ff91f05067c422e27b13caed813d926093f0c5bf792375be57cdb03a5451e8690a999417826334d762484e63eb58025c0eafda6bade2db210d5615
7
- data.tar.gz: 362d50d708a1d1f80002dc751fa41cf5baf8ed1dea3cd66725e80472df2fd1dcb9d9224964699cd06a3deecfccd8e7c10466dc852a89731b8b55169f65c0fceb
6
+ metadata.gz: cf0f90b0321b3491753c86aee31bcb3aa5a1000d40d3a7b32f8e9d6438151c21d3fcf68c51b6922495b5e66577461bb6a0bc55604c941ffb614b74c745564f95
7
+ data.tar.gz: f278d19e225c5b00dbbdd5ef77692a6c5fd4d2fe7477cb05930f8d0c02d47f98659eb235e534b307940dafd904ba89f56af1e9ee7ec000bdb8d16c036190ba85
data/README.md CHANGED
@@ -38,7 +38,7 @@ class UserApiModel < Requisite::ApiModel
38
38
  attribute! :username
39
39
  attribute :real_name
40
40
  end
41
-
41
+
42
42
  # method with the name of of an attribute will be called to calculate the mapped value
43
43
  def real_name
44
44
  "#{attribute_from_model(:first_name)} #{attribute_from_model(:last_name)}"
@@ -88,10 +88,10 @@ Example:
88
88
  class UserApiModel < Requisite::ApiModel
89
89
  serialized_attributes do
90
90
  attribute :id, stringify: true
91
- attribute :custom_attributes, rename: :custom_data
91
+ attribute :custom_attributes, rename: :custom_data
92
92
  attribute :is_awesome, default: true
93
93
  attribute :awesome_score, rename: :score, stringify: true, default: 9001
94
- attribute :age, type: Fixnum,
94
+ attribute :age, type: Integer,
95
95
  attribute :tired, type: Requisite::Boolean
96
96
  end
97
97
  end
@@ -131,7 +131,7 @@ With typed hashes, only values specified with a type are permitted:
131
131
  ```ruby
132
132
  class UserApiModel < Requisite::ApiModel
133
133
  serialized_attributes do
134
- attribute :data, typed_hash: { is_awesome: Requisite::Boolean, score: Fixnum, name: String }
134
+ attribute :data, typed_hash: { is_awesome: Requisite::Boolean, score: Integer, name: String }
135
135
  end
136
136
  end
137
137
 
@@ -198,7 +198,27 @@ class ApiUser < Requisite::ApiModel
198
198
  raise IdentifierNotFoundError unless identifier
199
199
  end
200
200
  end
201
- ```
201
+ ```
202
+
203
+ #### Around each attribute
204
+
205
+ An `around_each_attribute` method can be defined to wrap each attribute fetch in a block. This can be useful for instrumenting processing on a per attribute basis.
206
+
207
+ ```ruby
208
+ class ApiUser < Requisite::ApiModel
209
+ serialized_attributes do
210
+ attribute :id, type: String
211
+ attribute :email, type: String
212
+ end
213
+
214
+ def around_each_attribute(name, &block)
215
+ start = Time.now
216
+ yield
217
+ end = Time.now
218
+ puts "Fetching #{name} took #{end - start}"
219
+ end
220
+ end
221
+ ```
202
222
 
203
223
  #### Thanks
204
224
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Requisite
2
- VERSION = '0.4.2'
2
+ VERSION = '0.4.4'
3
3
  end
@@ -107,7 +107,7 @@ module Requisite
107
107
  end
108
108
 
109
109
  it 'attribute can be stringified after type check' do
110
- DummyApiModel.serialized_attributes { attribute :num, stringify: true, type: Fixnum }
110
+ DummyApiModel.serialized_attributes { attribute :num, stringify: true, type: Integer }
111
111
  response = DummyApiModel.new(params_hash)
112
112
  _(response.to_hash).must_equal(:num => '12')
113
113
  end
@@ -202,7 +202,7 @@ module Requisite
202
202
 
203
203
  describe 'with typed arrays' do
204
204
  it 'allows arrays of one type' do
205
- DummyApiModel.serialized_attributes { attribute :ids, typed_array: Fixnum }
205
+ DummyApiModel.serialized_attributes { attribute :ids, typed_array: Integer }
206
206
  response = DummyApiModel.new({ids: [1, 2, 3]})
207
207
  _(response.to_hash).must_equal(:ids => [1, 2, 3])
208
208
  end
@@ -1,23 +1,25 @@
1
1
  require 'test_helper'
2
-
2
+ require 'benchmark'
3
3
  # Example Object
4
4
  class ApiUser < Requisite::ApiModel
5
+
5
6
  serialized_attributes do
6
7
  attribute :id, type: String
7
8
  attribute :user_id
8
9
  attribute :email, type: String
9
10
  attribute :name, type: String
10
- attribute :created_at, type: Fixnum
11
+ attribute :created_at, type: Integer
11
12
  attribute :last_seen_user_agent, type: String
12
- attribute :last_request_at, type: Fixnum
13
+ attribute :last_request_at, type: Integer
13
14
  attribute :unsubscribed_from_emails, type: Requisite::Boolean
14
15
  attribute :update_last_request_at, type: Requisite::Boolean
15
16
  attribute :new_session, type: Requisite::Boolean
16
17
  attribute :custom_data, scalar_hash: true, rename: :custom_attributes
17
18
  attribute :company
18
19
  attribute :companies
20
+ attribute :api_version, type: Integer
19
21
  end
20
-
22
+
21
23
  # Ensure that at least one identifier is passed
22
24
  def preprocess_model
23
25
  identifier = attribute_from_model(:id)
@@ -25,10 +27,34 @@ class ApiUser < Requisite::ApiModel
25
27
  identifier ||= attribute_from_model(:email)
26
28
  raise StandardError unless identifier
27
29
  end
28
-
30
+
31
+ def api_version
32
+ 1
33
+ end
34
+
35
+ def last_attribute_fetch_time
36
+ @last_attribute_fetch_time
37
+ end
38
+
39
+ def attribute_names
40
+ @attribute_names
41
+ end
42
+
43
+ def around_each_attribute(name)
44
+ @last_attribute_fetch_time = nil
45
+ @attribute_names ||= []
46
+
47
+ result = nil
48
+
49
+ @last_attribute_fetch_time = Benchmark.measure do
50
+ result = yield
51
+ end.total
52
+ @attribute_names << name
53
+ end
54
+
29
55
  # We want to accept someone sending `created_at` or `created` as parameters
30
56
  def created_at
31
- with_type!(Fixnum) { attribute_from_model(:created_at) || attribute_from_model(:created) }
57
+ with_type!(Integer) { attribute_from_model(:created_at) || attribute_from_model(:created) }
32
58
  end
33
59
  end
34
60
 
@@ -67,17 +93,18 @@ module Requisite
67
93
  :custom_data => {
68
94
  :is_cool => true,
69
95
  :logins => 77
70
- }
96
+ },
97
+ :api_version => 1
71
98
  })
72
99
  user.name.must_equal('Bob')
73
100
  end
74
-
101
+
75
102
  it 'raises an error without an identifier' do
76
103
  user_request_params = { :name => 'Bob' }
77
104
  user = ApiUser.new(user_request_params)
78
105
  proc { user.to_hash }.must_raise(StandardError)
79
106
  end
80
-
107
+
81
108
  it 'raises an error when created or created_at is not of the right type' do
82
109
  user_request_params = { :user_id => 'abcdef', :created => 'Thursday' }
83
110
  user = ApiUser.new(user_request_params)
@@ -113,10 +140,11 @@ module Requisite
113
140
  :custom_data => {
114
141
  :different => true
115
142
  },
116
- :new_attribute => 'hi'
143
+ :new_attribute => 'hi',
144
+ :api_version => 1
117
145
  })
118
146
  end
119
-
147
+
120
148
  it 'accepts a user model' do
121
149
  user_model = UserModel.new
122
150
  user_model.user_id = 'abcdef'
@@ -125,11 +153,12 @@ module Requisite
125
153
  user.to_hash.must_equal({
126
154
  :user_id => 'abcdef',
127
155
  :name => 'Bob',
128
- :custom_data => {}
156
+ :custom_data => {},
157
+ :api_version => 1
129
158
  })
130
159
  user.name.must_equal('Bob')
131
160
  end
132
-
161
+
133
162
  it 'accepts a user model and renders nils if asked' do
134
163
  user_model = UserModel.new
135
164
  user_model.user_id = 'abcdef'
@@ -148,9 +177,21 @@ module Requisite
148
177
  :new_session => nil,
149
178
  :custom_data => {},
150
179
  :company => nil,
151
- :companies => nil
180
+ :companies => nil,
181
+ :api_version => 1
152
182
  })
153
183
  user.name.must_equal('Bob')
154
184
  end
185
+
186
+ it 'calls around_each_attribute for each attribute' do
187
+ user_model = UserModel.new
188
+ user_model.user_id = 'abcdef'
189
+ user = ApiUser.new(user_model)
190
+
191
+ user.to_hash(show_nil: true)
192
+
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]
194
+ user.last_attribute_fetch_time.must_be :>, 0
195
+ end
155
196
  end
156
197
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: requisite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Osler
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-15 00:00:00.000000000 Z
11
+ date: 2025-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -82,7 +82,7 @@ homepage: https://www.intercom.io
82
82
  licenses:
83
83
  - Apache License Version 2.0
84
84
  metadata: {}
85
- post_install_message:
85
+ post_install_message:
86
86
  rdoc_options: []
87
87
  require_paths:
88
88
  - lib
@@ -97,9 +97,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubyforge_project:
101
- rubygems_version: 2.7.6.2
102
- signing_key:
100
+ rubygems_version: 3.5.22
101
+ signing_key:
103
102
  specification_version: 4
104
103
  summary: Strongly defined models for HTTP APIs
105
104
  test_files: