activeentity 0.0.1.beta14 → 6.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +24 -7
- data/Rakefile +7 -7
- data/lib/active_entity.rb +30 -7
- data/lib/active_entity/aggregations.rb +2 -1
- data/lib/active_entity/associations.rb +46 -24
- data/lib/active_entity/associations/{embedded → embeds}/association.rb +2 -2
- data/lib/active_entity/associations/{embedded → embeds}/builder/association.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/builder/collection_association.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/builder/embedded_in.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/builder/embeds_many.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/builder/embeds_one.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/builder/singular_association.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/collection_association.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/collection_proxy.rb +2 -2
- data/lib/active_entity/associations/{embedded → embeds}/embedded_in_association.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/embeds_many_association.rb +1 -1
- data/lib/active_entity/associations/{embedded → embeds}/embeds_one_association.rb +2 -1
- data/lib/active_entity/associations/{embedded → embeds}/singular_association.rb +1 -1
- data/lib/active_entity/attribute_assignment.rb +10 -8
- data/lib/active_entity/attribute_methods.rb +52 -61
- data/lib/active_entity/attribute_methods/before_type_cast.rb +6 -6
- data/lib/active_entity/attribute_methods/dirty.rb +13 -0
- data/lib/active_entity/attribute_methods/primary_key.rb +6 -8
- data/lib/active_entity/attribute_methods/query.rb +11 -8
- data/lib/active_entity/attribute_methods/read.rb +10 -13
- data/lib/active_entity/attribute_methods/time_zone_conversion.rb +2 -0
- data/lib/active_entity/attribute_methods/write.rb +16 -25
- data/lib/active_entity/attributes.rb +76 -2
- data/lib/active_entity/base.rb +3 -14
- data/lib/active_entity/{define_callbacks.rb → callbacks.rb} +5 -1
- data/lib/active_entity/core.rb +97 -39
- data/lib/active_entity/enum.rb +30 -4
- data/lib/active_entity/errors.rb +0 -11
- data/lib/active_entity/gem_version.rb +4 -4
- data/lib/active_entity/inheritance.rb +4 -106
- data/lib/active_entity/integration.rb +1 -1
- data/lib/active_entity/model_schema.rb +0 -12
- data/lib/active_entity/nested_attributes.rb +5 -12
- data/lib/active_entity/railtie.rb +61 -1
- data/lib/active_entity/readonly_attributes.rb +9 -1
- data/lib/active_entity/reflection.rb +22 -19
- data/lib/active_entity/serialization.rb +9 -6
- data/lib/active_entity/store.rb +51 -2
- data/lib/active_entity/type.rb +8 -8
- data/lib/active_entity/type/registry.rb +5 -5
- data/lib/active_entity/{validate_embedded_association.rb → validate_embeds_association.rb} +6 -6
- data/lib/active_entity/validations.rb +2 -6
- data/lib/active_entity/validations/associated.rb +1 -1
- data/lib/active_entity/validations/{uniqueness_in_embedding.rb → uniqueness_in_embeds.rb} +1 -1
- data/lib/active_entity/validations/uniqueness_on_active_record.rb +42 -47
- metadata +33 -36
- data/lib/active_entity/type/decimal_without_scale.rb +0 -15
- data/lib/active_entity/type/hash_lookup_type_map.rb +0 -25
- data/lib/active_entity/type/type_map.rb +0 -62
- data/lib/tasks/active_entity_tasks.rake +0 -6
metadata
CHANGED
@@ -1,22 +1,22 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activeentity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jasl
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.0
|
19
|
+
version: '6.0'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '7.0'
|
@@ -24,9 +24,9 @@ dependencies:
|
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - "
|
27
|
+
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 6.0
|
29
|
+
version: '6.0'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '7.0'
|
@@ -34,9 +34,9 @@ dependencies:
|
|
34
34
|
name: activemodel
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
37
|
+
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 6.0
|
39
|
+
version: '6.0'
|
40
40
|
- - "<"
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: '7.0'
|
@@ -44,9 +44,9 @@ dependencies:
|
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "
|
47
|
+
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 6.0
|
49
|
+
version: '6.0'
|
50
50
|
- - "<"
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: '7.0'
|
@@ -63,23 +63,24 @@ files:
|
|
63
63
|
- lib/active_entity.rb
|
64
64
|
- lib/active_entity/aggregations.rb
|
65
65
|
- lib/active_entity/associations.rb
|
66
|
-
- lib/active_entity/associations/
|
67
|
-
- lib/active_entity/associations/
|
68
|
-
- lib/active_entity/associations/
|
69
|
-
- lib/active_entity/associations/
|
70
|
-
- lib/active_entity/associations/
|
71
|
-
- lib/active_entity/associations/
|
72
|
-
- lib/active_entity/associations/
|
73
|
-
- lib/active_entity/associations/
|
74
|
-
- lib/active_entity/associations/
|
75
|
-
- lib/active_entity/associations/
|
76
|
-
- lib/active_entity/associations/
|
77
|
-
- lib/active_entity/associations/
|
78
|
-
- lib/active_entity/associations/
|
66
|
+
- lib/active_entity/associations/embeds/association.rb
|
67
|
+
- lib/active_entity/associations/embeds/builder/association.rb
|
68
|
+
- lib/active_entity/associations/embeds/builder/collection_association.rb
|
69
|
+
- lib/active_entity/associations/embeds/builder/embedded_in.rb
|
70
|
+
- lib/active_entity/associations/embeds/builder/embeds_many.rb
|
71
|
+
- lib/active_entity/associations/embeds/builder/embeds_one.rb
|
72
|
+
- lib/active_entity/associations/embeds/builder/singular_association.rb
|
73
|
+
- lib/active_entity/associations/embeds/collection_association.rb
|
74
|
+
- lib/active_entity/associations/embeds/collection_proxy.rb
|
75
|
+
- lib/active_entity/associations/embeds/embedded_in_association.rb
|
76
|
+
- lib/active_entity/associations/embeds/embeds_many_association.rb
|
77
|
+
- lib/active_entity/associations/embeds/embeds_one_association.rb
|
78
|
+
- lib/active_entity/associations/embeds/singular_association.rb
|
79
79
|
- lib/active_entity/attribute_assignment.rb
|
80
80
|
- lib/active_entity/attribute_decorators.rb
|
81
81
|
- lib/active_entity/attribute_methods.rb
|
82
82
|
- lib/active_entity/attribute_methods/before_type_cast.rb
|
83
|
+
- lib/active_entity/attribute_methods/dirty.rb
|
83
84
|
- lib/active_entity/attribute_methods/primary_key.rb
|
84
85
|
- lib/active_entity/attribute_methods/query.rb
|
85
86
|
- lib/active_entity/attribute_methods/read.rb
|
@@ -88,10 +89,10 @@ files:
|
|
88
89
|
- lib/active_entity/attribute_methods/write.rb
|
89
90
|
- lib/active_entity/attributes.rb
|
90
91
|
- lib/active_entity/base.rb
|
92
|
+
- lib/active_entity/callbacks.rb
|
91
93
|
- lib/active_entity/coders/json.rb
|
92
94
|
- lib/active_entity/coders/yaml_column.rb
|
93
95
|
- lib/active_entity/core.rb
|
94
|
-
- lib/active_entity/define_callbacks.rb
|
95
96
|
- lib/active_entity/enum.rb
|
96
97
|
- lib/active_entity/errors.rb
|
97
98
|
- lib/active_entity/gem_version.rb
|
@@ -110,8 +111,6 @@ files:
|
|
110
111
|
- lib/active_entity/type.rb
|
111
112
|
- lib/active_entity/type/date.rb
|
112
113
|
- lib/active_entity/type/date_time.rb
|
113
|
-
- lib/active_entity/type/decimal_without_scale.rb
|
114
|
-
- lib/active_entity/type/hash_lookup_type_map.rb
|
115
114
|
- lib/active_entity/type/internal/timezone.rb
|
116
115
|
- lib/active_entity/type/json.rb
|
117
116
|
- lib/active_entity/type/modifiers/array.rb
|
@@ -120,25 +119,23 @@ files:
|
|
120
119
|
- lib/active_entity/type/serialized.rb
|
121
120
|
- lib/active_entity/type/text.rb
|
122
121
|
- lib/active_entity/type/time.rb
|
123
|
-
- lib/active_entity/type/type_map.rb
|
124
122
|
- lib/active_entity/type/unsigned_integer.rb
|
125
|
-
- lib/active_entity/
|
123
|
+
- lib/active_entity/validate_embeds_association.rb
|
126
124
|
- lib/active_entity/validations.rb
|
127
125
|
- lib/active_entity/validations/absence.rb
|
128
126
|
- lib/active_entity/validations/associated.rb
|
129
127
|
- lib/active_entity/validations/length.rb
|
130
128
|
- lib/active_entity/validations/presence.rb
|
131
129
|
- lib/active_entity/validations/subset.rb
|
132
|
-
- lib/active_entity/validations/
|
130
|
+
- lib/active_entity/validations/uniqueness_in_embeds.rb
|
133
131
|
- lib/active_entity/validations/uniqueness_on_active_record.rb
|
134
132
|
- lib/active_entity/version.rb
|
135
133
|
- lib/core_ext/array_without_blank.rb
|
136
|
-
- lib/tasks/active_entity_tasks.rake
|
137
134
|
homepage: https://github.com/jasl/activeentity
|
138
135
|
licenses:
|
139
136
|
- MIT
|
140
137
|
metadata: {}
|
141
|
-
post_install_message:
|
138
|
+
post_install_message:
|
142
139
|
rdoc_options: []
|
143
140
|
require_paths:
|
144
141
|
- lib
|
@@ -149,12 +146,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
149
146
|
version: 2.5.0
|
150
147
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
148
|
requirements:
|
152
|
-
- - "
|
149
|
+
- - ">="
|
153
150
|
- !ruby/object:Gem::Version
|
154
|
-
version:
|
151
|
+
version: '0'
|
155
152
|
requirements: []
|
156
|
-
rubygems_version: 3.
|
157
|
-
signing_key:
|
153
|
+
rubygems_version: 3.1.4
|
154
|
+
signing_key:
|
158
155
|
specification_version: 4
|
159
156
|
summary: Rails virtual model solution based on ActiveModel.
|
160
157
|
test_files: []
|
@@ -1,15 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module ActiveEntity
|
4
|
-
module Type
|
5
|
-
class DecimalWithoutScale < ActiveModel::Type::BigInteger # :nodoc:
|
6
|
-
def type
|
7
|
-
:decimal
|
8
|
-
end
|
9
|
-
|
10
|
-
def type_cast_for_schema(value)
|
11
|
-
value.to_s.inspect
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module ActiveEntity
|
4
|
-
module Type
|
5
|
-
class HashLookupTypeMap < TypeMap # :nodoc:
|
6
|
-
def alias_type(type, alias_type)
|
7
|
-
register_type(type) { |_, *args| lookup(alias_type, *args) }
|
8
|
-
end
|
9
|
-
|
10
|
-
def key?(key)
|
11
|
-
@mapping.key?(key)
|
12
|
-
end
|
13
|
-
|
14
|
-
def keys
|
15
|
-
@mapping.keys
|
16
|
-
end
|
17
|
-
|
18
|
-
private
|
19
|
-
|
20
|
-
def perform_fetch(type, *args, &block)
|
21
|
-
@mapping.fetch(type, block).call(type, *args)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "concurrent/map"
|
4
|
-
|
5
|
-
module ActiveEntity
|
6
|
-
module Type
|
7
|
-
class TypeMap # :nodoc:
|
8
|
-
def initialize
|
9
|
-
@mapping = {}
|
10
|
-
@cache = Concurrent::Map.new do |h, key|
|
11
|
-
h.fetch_or_store(key, Concurrent::Map.new)
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
def lookup(lookup_key, *args)
|
16
|
-
fetch(lookup_key, *args) { Type.default_value }
|
17
|
-
end
|
18
|
-
|
19
|
-
def fetch(lookup_key, *args, &block)
|
20
|
-
@cache[lookup_key].fetch_or_store(args) do
|
21
|
-
perform_fetch(lookup_key, *args, &block)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
def register_type(key, value = nil, &block)
|
26
|
-
raise ::ArgumentError unless value || block
|
27
|
-
@cache.clear
|
28
|
-
|
29
|
-
if block
|
30
|
-
@mapping[key] = block
|
31
|
-
else
|
32
|
-
@mapping[key] = proc { value }
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
def alias_type(key, target_key)
|
37
|
-
register_type(key) do |sql_type, *args|
|
38
|
-
metadata = sql_type[/\(.*\)/, 0]
|
39
|
-
lookup("#{target_key}#{metadata}", *args)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def clear
|
44
|
-
@mapping.clear
|
45
|
-
end
|
46
|
-
|
47
|
-
private
|
48
|
-
|
49
|
-
def perform_fetch(lookup_key, *args)
|
50
|
-
matching_pair = @mapping.reverse_each.detect do |key, _|
|
51
|
-
key === lookup_key
|
52
|
-
end
|
53
|
-
|
54
|
-
if matching_pair
|
55
|
-
matching_pair.last.call(lookup_key, *args)
|
56
|
-
else
|
57
|
-
yield lookup_key, *args
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|