Current Path : /proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/alt/ruby21/lib64/ruby/2.1.0/rake/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/alt/ruby21/lib64/ruby/2.1.0/rake/private_reader.rb |
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