instance method Rake::TaskManager#current_scope

current_scope -> Array[permalink][rdoc][edit]

現在のスコープを返します。


# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_app do
  Rake.application.current_scope # => LL()
end