aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/delegation.rb
diff options
context:
space:
mode:
authorTomas Valent <equivalent@eq8.eu>2018-02-20 10:38:19 +0100
committerTomas Valent <equivalent@eq8.eu>2018-02-26 20:16:03 +0100
commit06f067506854d9fbecf9694c210468323208d6bb (patch)
tree379da94baefaa6ac3b8845e6f706ee142baa921f /activesupport/lib/active_support/core_ext/module/delegation.rb
parent87de79e9cc25fe6ac02095a1d0c014941a39ede8 (diff)
downloadrails-06f067506854d9fbecf9694c210468323208d6bb.tar.gz
rails-06f067506854d9fbecf9694c210468323208d6bb.tar.bz2
rails-06f067506854d9fbecf9694c210468323208d6bb.zip
add private: true option for ActiveSupport delegate
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module/delegation.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module/delegation.rb25
1 files changed, 23 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb
index 4310df3024..426e34128f 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -114,6 +114,24 @@ class Module
# invoice.customer_name # => 'John Doe'
# invoice.customer_address # => 'Vimmersvej 13'
#
+ # If you want the delegated method to be a private method,
+ # use the <tt>:private</tt> option.
+ #
+ # class User < ActiveRecord::Base
+ # has_one :profile
+ # delegate :first_name, to: :profile
+ # delegate :date_of_birth, :religion, to: :profile, private: true
+ #
+ # def age
+ # Date.today.year - date_of_birth.year
+ # end
+ # end
+ #
+ # User.new.age # 2
+ # User.new.first_name # Tomas
+ # User.new.date_of_birth # NoMethodError: private method `date_of_birth' called for #<User:0x00000008221340>
+ # User.new.religion # NoMethodError: private method `religion' called for #<User:0x00000008221340>
+ #
# If the target is +nil+ and does not respond to the delegated method a
# +Module::DelegationError+ is raised. If you wish to instead return +nil+,
# use the <tt>:allow_nil</tt> option.
@@ -151,7 +169,7 @@ class Module
# Foo.new("Bar").name # raises NoMethodError: undefined method `name'
#
# The target method must be public, otherwise it will raise +NoMethodError+.
- def delegate(*methods, to: nil, prefix: nil, allow_nil: nil)
+ def delegate(*methods, to: nil, prefix: nil, allow_nil: nil, private: nil)
unless to
raise ArgumentError, "Delegation needs a target. Supply an options hash with a :to key as the last argument (e.g. delegate :hello, to: :greeter)."
end
@@ -173,7 +191,7 @@ class Module
to = to.to_s
to = "self.#{to}" if DELEGATION_RESERVED_METHOD_NAMES.include?(to)
- methods.map do |method|
+ method_names = methods.map do |method|
# Attribute writer methods only accept one argument. Makes sure []=
# methods still accept two arguments.
definition = /[^\]]=$/.match?(method) ? "arg" : "*args, &block"
@@ -213,6 +231,9 @@ class Module
module_eval(method_def, file, line)
end
+
+ private(*method_names) if private
+ method_names
end
# When building decorators, a common pattern may emerge: