instance method Rake::Application#rakefile

rakefile -> String[permalink][rdoc][edit]

実際に使用されている Rakefile の名前を返します。


# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_app do
  Rake.application.rakefile # => "Rakefile"
end