Method: Rake::Application#system_dir
- Defined in:
- lib/rake/application.rb
#system_dir ⇒ Object
The directory path containing the system wide rakefiles.
654 655 656 657 658 659 660 661 662 663 |
# File 'lib/rake/application.rb', line 654 def system_dir @system_dir ||= begin if ENV['RAKE_SYSTEM'] ENV['RAKE_SYSTEM'] else standard_system_dir end end end |