るりまサーチ

最速Rubyリファレンスマニュアル検索!
709件ヒット [701-709件を表示] (0.071秒)

別のキーワード

  1. rake desc
  2. kernel desc
  3. desc rake
  4. desc kernel

検索結果

<< < ... 6 7 8 >>

Rake::TaskManager#last_comment -> String (13.0)

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
//}...
<< < ... 6 7 8 >>