diff options
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/delegation.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb index b8cf4e0eeb..34e4bf9397 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -20,6 +20,7 @@ class Module # # Multiple delegates to the same target are allowed: # class Foo < ActiveRecord::Base + # belongs_to :greeter # delegate :hello, :goodbye, :to => :greeter # end # |