mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9c66bad9f3
* test/rake*: ditto * bin/rake: ditto * NEWS: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
364 B
Ruby
20 lines
364 B
Ruby
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
|