るりまサーチ

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

別のキーワード

  1. _builtin last
  2. fiddle last_error=
  3. regexp last_match
  4. fiddle last_error
  5. range last

ライブラリ

モジュール

検索結果

Rake::TaskManager#last_description=(description) (21155.0)

最新の詳細説明をセットします。

...の記載例とする

task
default: :test_rake_app1

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

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