constant_table_saver 4.1.0 → 4.1.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/constant_table_saver.gemspec +2 -2
- data/lib/constant_table_saver/version.rb +1 -1
- data/lib/constant_table_saver.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e456bebaba7c8e29e66feb2b63b5626c2bcdaa5f
|
|
4
|
+
data.tar.gz: 28bd116590a6d334b5d337e94623b23583d48b34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a73041f3bf0d46a7dae0ec0f091045ea6abfb84f9c7650dd6ebde9449a8783823e0af1b6b576cbd06e356f07dc26f4abdbab743d62d728bde95ecbc08604930c
|
|
7
|
+
data.tar.gz: c863ae2ff77fa78c8e9f68259d54d5b30798e7e12d6385187be42ebd459fcb0b1afde9bcda4badddc7fab303930b513bb15587d3d4e328216da6427c587d8a14
|
|
@@ -16,8 +16,8 @@ named after the name field you specify.
|
|
|
16
16
|
Compatibility
|
|
17
17
|
=============
|
|
18
18
|
|
|
19
|
-
Currently tested against Rails 3.2.
|
|
20
|
-
|
|
19
|
+
Currently tested against Rails 3.2.19, 4.0.8, and 4.1.1, on Ruby 2.0.0.
|
|
20
|
+
Previous versions were also tested compatible with 3.0.17 and 3.1.8 and it may still be but they're not supported.
|
|
21
21
|
EOF
|
|
22
22
|
gem.has_rdoc = false
|
|
23
23
|
gem.author = "Will Bryant"
|
data/lib/constant_table_saver.rb
CHANGED
|
@@ -208,7 +208,7 @@ module ConstantTableSaver
|
|
|
208
208
|
end
|
|
209
209
|
|
|
210
210
|
def respond_to?(method_id, include_private = false)
|
|
211
|
-
super || (@constant_record_methods.nil? && attribute_methods_generated
|
|
211
|
+
super || (@constant_record_methods.nil? && @attribute_methods_generated && define_named_record_methods && super)
|
|
212
212
|
end
|
|
213
213
|
|
|
214
214
|
def method_missing(method_id, *arguments, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: constant_table_saver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Will Bryant
|
|
@@ -63,8 +63,8 @@ description: |
|
|
|
63
63
|
Compatibility
|
|
64
64
|
=============
|
|
65
65
|
|
|
66
|
-
Currently tested against Rails 3.2.
|
|
67
|
-
|
|
66
|
+
Currently tested against Rails 3.2.19, 4.0.8, and 4.1.1, on Ruby 2.0.0.
|
|
67
|
+
Previous versions were also tested compatible with 3.0.17 and 3.1.8 and it may still be but they're not supported.
|
|
68
68
|
email: will.bryant@gmail.com
|
|
69
69
|
executables: []
|
|
70
70
|
extensions: []
|