るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.040秒)
トップページ > クエリ:IO[x] > バージョン:2.1.0[x] > クエリ:>[x] > クエリ:test[x] > クエリ:last_description[x] > モジュール:Rake::TaskManager[x]

別のキーワード

  1. _builtin test
  2. kernel test
  3. rubygems/test_utilities tempio
  4. rubygems/test_utilities fetcher=
  5. rake/testtask test_files=

ライブラリ

検索結果

Rake::TaskManager#last_description -> String (55033.0)

Rakefile 内の最新の詳細説明を追跡するためのメソッドです。

Rakefile 内の最新の詳細説明を追跡するためのメソッドです。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app1

desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end

desc "test2"
task :test_rake_app2 do |task|
end
//}