るりまサーチ

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

別のキーワード

  1. rake task
  2. rake empty_task_args
  3. rake define_task
  4. task clear
  5. task add_description

ライブラリ

モジュール

キーワード

検索結果

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

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

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

//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_a...
...pp2 do |task|
end
//}...

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

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

...by]{
# 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
:test_rake_app2...

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

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

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

//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_a...
...pp2 do |task|
end
//}...