activerecord 3.1.0.rc3 → 3.1.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- data/lib/active_record/base.rb +2 -1
- data/lib/active_record/version.rb +1 -1
- metadata +10 -10
data/lib/active_record/base.rb
CHANGED
@@ -659,6 +659,7 @@ module ActiveRecord #:nodoc:
|
|
659
659
|
def set_table_name(value = nil, &block)
|
660
660
|
@quoted_table_name = nil
|
661
661
|
define_attr_method :table_name, value, &block
|
662
|
+
@arel_table = nil
|
662
663
|
|
663
664
|
@arel_table = Arel::Table.new(table_name, arel_engine)
|
664
665
|
@relation = Relation.new(self, arel_table)
|
@@ -892,7 +893,7 @@ module ActiveRecord #:nodoc:
|
|
892
893
|
end
|
893
894
|
|
894
895
|
def arel_table
|
895
|
-
Arel::Table.new(table_name, arel_engine)
|
896
|
+
@arel_table ||= Arel::Table.new(table_name, arel_engine)
|
896
897
|
end
|
897
898
|
|
898
899
|
def arel_engine
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15424109
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 1
|
9
9
|
- 0
|
10
10
|
- rc
|
11
|
-
-
|
12
|
-
version: 3.1.0.
|
11
|
+
- 4
|
12
|
+
version: 3.1.0.rc4
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- David Heinemeier Hansson
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-06-
|
20
|
+
date: 2011-06-09 00:00:00 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: activesupport
|
@@ -27,14 +27,14 @@ dependencies:
|
|
27
27
|
requirements:
|
28
28
|
- - "="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
hash:
|
30
|
+
hash: 15424109
|
31
31
|
segments:
|
32
32
|
- 3
|
33
33
|
- 1
|
34
34
|
- 0
|
35
35
|
- rc
|
36
|
-
-
|
37
|
-
version: 3.1.0.
|
36
|
+
- 4
|
37
|
+
version: 3.1.0.rc4
|
38
38
|
type: :runtime
|
39
39
|
version_requirements: *id001
|
40
40
|
- !ruby/object:Gem::Dependency
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "="
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
hash:
|
48
|
+
hash: 15424109
|
49
49
|
segments:
|
50
50
|
- 3
|
51
51
|
- 1
|
52
52
|
- 0
|
53
53
|
- rc
|
54
|
-
-
|
55
|
-
version: 3.1.0.
|
54
|
+
- 4
|
55
|
+
version: 3.1.0.rc4
|
56
56
|
type: :runtime
|
57
57
|
version_requirements: *id002
|
58
58
|
- !ruby/object:Gem::Dependency
|