diff options
author | Lauro Caetano <laurocaetano1@gmail.com> | 2014-04-09 14:39:08 -0300 |
---|---|---|
committer | Lauro Caetano <laurocaetano1@gmail.com> | 2014-04-09 14:57:30 -0300 |
commit | a91e5ff2cbf2f8971ad0d2a80b2e22e63b1900f6 (patch) | |
tree | d7b151680d6533259e8bc6dfc2e25a2f732fcd66 /activerecord/lib | |
parent | 7b75b678cf11a1aed7927a9db42fb60a38726450 (diff) | |
download | rails-a91e5ff2cbf2f8971ad0d2a80b2e22e63b1900f6.tar.gz rails-a91e5ff2cbf2f8971ad0d2a80b2e22e63b1900f6.tar.bz2 rails-a91e5ff2cbf2f8971ad0d2a80b2e22e63b1900f6.zip |
The `source` option for `has_many => through` should accept String
values.
With the changes introduced by 16b70fddd4dc7e7fb7be108add88bae6e3c2509b
it was expecting the value to be a Symbol, while it could be also a
String value.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/reflection.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/reflection.rb b/activerecord/lib/active_record/reflection.rb index 03b5bdc46c..5465a7bfd7 100644 --- a/activerecord/lib/active_record/reflection.rb +++ b/activerecord/lib/active_record/reflection.rb @@ -621,7 +621,7 @@ module ActiveRecord end def source_reflection_name # :nodoc: - return @source_reflection_name if @source_reflection_name + return @source_reflection_name.to_sym if @source_reflection_name names = [name.to_s.singularize, name].collect { |n| n.to_sym }.uniq names = names.find_all { |n| |