class Rake::Application

def system_dir # :nodoc:

:nodoc:
The directory path containing the system wide rakefiles.
def system_dir # :nodoc:
  @system_dir ||=
    begin
      if ENV["RAKE_SYSTEM"]
        ENV["RAKE_SYSTEM"]
      else
        standard_system_dir
      end
    end
end