るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. rake rakefile
  2. rake load_rakefile
  3. application load_rakefile
  4. application rakefile
  5. rakefile rake::application

ライブラリ

検索結果

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

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

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

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

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 :...