active_type 2.2.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile.4.2.mysql2.lock +2 -2
- data/Gemfile.4.2.pg.lock +2 -2
- data/Gemfile.4.2.sqlite3.lock +2 -2
- data/Gemfile.5.2.mysql2.lock +1 -1
- data/Gemfile.5.2.pg.lock +1 -1
- data/Gemfile.5.2.sqlite3.lock +1 -1
- data/Gemfile.6.0.sqlite3.lock +1 -1
- data/Gemfile.6.1.pg.lock +1 -1
- data/Gemfile.6.1.sqlite3.lock +1 -1
- data/Gemfile.7.0.pg.lock +1 -1
- data/Gemfile.7.0.sqlite3.lock +1 -1
- data/lib/active_type/change_association.rb +1 -1
- data/lib/active_type/version.rb +1 -1
- data/lib/active_type/virtual_attributes.rb +7 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fb9e61a389d591d9f8aa68590fcaeb22b5b8157faca7a9f96a137f409989ae1
|
4
|
+
data.tar.gz: c6e6c8bf9fa8c07b78f88eaabeaad275981bba3cafa0c69467082f4a26507b0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2423202104cfbad7da2237418cbffd5f1997d101e554f10c344d102f2ec38eaa4688ab83d98e8018ef6c8eeb656baba22b6e979b225c4efb0a40bb7e4e6f5da
|
7
|
+
data.tar.gz: 97d85f6c61a92b3325ec58dc3bf490619e3541773c7ce8f57132e18971796a066014e0c46ec9a0195e6cfca7f7ac29a20875d68396f93fa78d51db69476217b6
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.1
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
## Unreleased changes
|
6
6
|
|
7
|
+
## 2.3.1 (2022-10-06)
|
8
|
+
|
9
|
+
* Fixed: Fixed an issue ([#168](https://github.com/makandra/active_type/issues/168)) when `change_association` is called with a scope proc only. Thanks to @foobear.
|
10
|
+
|
11
|
+
## 2.3.0 (2022-07-21)
|
12
|
+
|
13
|
+
* Fixed: Fixed an issue when certain keywords are used as attribute names. Thanks to @tom-kuca.
|
14
|
+
* Fixed: Original Rails #attribute method now aliased as #ar_attribute correctly. Thanks to @sudoremo.
|
15
|
+
* Fixed: ActiveType::Object#serializable_hash includes virtual attributes.
|
16
|
+
|
7
17
|
## 2.2.0 (2022-06-02)
|
8
18
|
|
9
19
|
* Fixed: ActiveType now actually works for Rails 7. Sorry for that. Thanks to @atcruice.
|
data/Gemfile.4.2.mysql2.lock
CHANGED
data/Gemfile.4.2.pg.lock
CHANGED
data/Gemfile.4.2.sqlite3.lock
CHANGED
data/Gemfile.5.2.mysql2.lock
CHANGED
data/Gemfile.5.2.pg.lock
CHANGED
data/Gemfile.5.2.sqlite3.lock
CHANGED
data/Gemfile.6.0.sqlite3.lock
CHANGED
data/Gemfile.6.1.pg.lock
CHANGED
data/Gemfile.6.1.sqlite3.lock
CHANGED
data/Gemfile.7.0.pg.lock
CHANGED
data/Gemfile.7.0.sqlite3.lock
CHANGED
@@ -6,7 +6,7 @@ module ActiveType
|
|
6
6
|
|
7
7
|
module ClassMethods
|
8
8
|
|
9
|
-
def change_association(association_name, new_scope, new_options =
|
9
|
+
def change_association(association_name, new_scope, new_options = {})
|
10
10
|
if (existing_association = self.reflect_on_association(association_name))
|
11
11
|
if new_scope.is_a?(Hash)
|
12
12
|
new_options = new_scope
|
data/lib/active_type/version.rb
CHANGED
@@ -100,7 +100,7 @@ module ActiveType
|
|
100
100
|
|
101
101
|
@module.module_eval <<-BODY, __FILE__, __LINE__ + 1
|
102
102
|
def #{name}_changed?
|
103
|
-
|
103
|
+
self.#{name} != virtual_attributes_were["#{name}"]
|
104
104
|
end
|
105
105
|
BODY
|
106
106
|
|
@@ -137,6 +137,7 @@ module ActiveType
|
|
137
137
|
class << self
|
138
138
|
if method_defined?(:attribute)
|
139
139
|
alias_method :ar_attribute, :attribute
|
140
|
+
alias_method :attribute, :at_attribute
|
140
141
|
end
|
141
142
|
end
|
142
143
|
end
|
@@ -217,6 +218,10 @@ module ActiveType
|
|
217
218
|
end
|
218
219
|
end
|
219
220
|
|
221
|
+
def attribute_names
|
222
|
+
super + self.class._virtual_column_names
|
223
|
+
end
|
224
|
+
|
220
225
|
def changed?
|
221
226
|
self.class._virtual_column_names.any? { |attr| virtual_attributes_were[attr] != send(attr) } || super
|
222
227
|
end
|
@@ -323,7 +328,7 @@ module ActiveType
|
|
323
328
|
end
|
324
329
|
end
|
325
330
|
|
326
|
-
def
|
331
|
+
def at_attribute(name, *args)
|
327
332
|
options = args.extract_options!
|
328
333
|
type = args.first
|
329
334
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_type
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Kraze
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-06
|
12
|
+
date: 2022-10-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: '0'
|
133
133
|
requirements: []
|
134
|
-
rubygems_version: 3.2.
|
134
|
+
rubygems_version: 3.2.15
|
135
135
|
signing_key:
|
136
136
|
specification_version: 4
|
137
137
|
summary: Make any Ruby object quack like ActiveRecord
|