active_scaffold 4.0.8 → 4.0.9.1
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/CHANGELOG.rdoc +3 -0
- data/lib/active_scaffold/data_structures/column.rb +1 -1
- data/lib/active_scaffold/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7129b64100acbe9a7759714f6ddf8dbcb2f57e22b5e71a7119b3d3eaba9a1a8
|
4
|
+
data.tar.gz: a77231b1ec22dc06d8be9778df001a0e61b147f1ca57316d9085fcdff29dd196
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09cb7c96cdd1da58e9a7643ce0bd5ef52db6aff0038a56be2d1315b81a38854c787307825908fe1c0744374ff1870d1d745b7c33692fed904767a31401ad8793'
|
7
|
+
data.tar.gz: 5fab5c597a9f94f42fc4a561bd59d07d2961055f004425b6608016aca8e8e39e3beb9ec5b26316e99469ecaeef31cfa8b3166eed725432f2a68dceb4a0e83ca0
|
data/CHANGELOG.rdoc
CHANGED
@@ -458,7 +458,7 @@ module ActiveScaffold::DataStructures
|
|
458
458
|
# this is so that array.delete and array.include?, etc., will work by column name
|
459
459
|
def ==(other) # :nodoc:
|
460
460
|
# another column
|
461
|
-
if other.respond_to?(:name) && other.class == self.class
|
461
|
+
if other.respond_to?(:name) && (other.class == self.class || other.class == ProxyColumn)
|
462
462
|
name == other.name.to_sym
|
463
463
|
elsif other.is_a? Symbol
|
464
464
|
name == other
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_scaffold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Many, see README
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|