るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.203秒)
トップページ > クエリ:t[x] > クエリ:r[x] > 種類:インスタンスメソッド[x] > クエリ:last_description[x]

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils rm_r
  5. fileutils cp_r

ライブラリ

モジュール

キーワード

検索結果

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

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

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

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

t
ask default: :test_rake_app1

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

desc "test2"
t
ask :test_rake_a...
...pp2 do |task|
end
//}...

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

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

...ist[][ruby]{
# Rakefile での記載例とする

t
ask default: :test_rake_app1

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

desc "test2"
t
ask :test_ra...
...ke_app2 do |task|
end
//}...

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

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

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

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

t
ask default: :test_rake_app1

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

desc "test2"
t
ask :test_rake_a...
...pp2 do |task|
end
//}...