るりまサーチ

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

別のキーワード

  1. string []=
  2. _builtin to_r
  3. string slice
  4. string slice!
  5. string []

ライブラリ

モジュール

検索結果

Rake::TaskManager#last_description -> String (30616.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
//}...