Current Path : /proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/alt/ruby26/lib64/ruby/gems/2.6.0/gems/rake-12.3.3/lib/rake/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/alt/ruby26/lib64/ruby/gems/2.6.0/gems/rake-12.3.3/lib/rake/private_reader.rb |
# frozen_string_literal: true module Rake # Include PrivateReader to use +private_reader+. module PrivateReader # :nodoc: all def self.included(base) base.extend(ClassMethods) end module ClassMethods # Declare a list of private accessors def private_reader(*names) attr_reader(*names) private(*names) end end end end