るりまサーチ

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

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. _builtin $-p
  5. _builtin p

ライブラリ

キーワード

検索結果

Rake::InvocationChain::EmptyInvocationChain#append(task_name) -> Rake::InvocationChain (12218.0)

与えられた値を追加した Rake::InvocationChain を返します。

...与えられた値を追加した Rake::InvocationChain を返します。

@param task_name 追加する値を指定します。...

Rake::InvocationChain#append(task_name) -> Rake::InvocationChain (9230.0)

与えられたタスク名を追加して新しい Rake::InvocationChain を返します。

...Rake::InvocationChain を返します。

@param task_name 追加するタスク名を指定します。

@raise RuntimeError 循環したタスクの呼び出しを検出した場合に発生します。

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

task default: :test_rake_app
task :tes...
...t_rake_app do
invocation_chain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.append("task_b") # => LL("task_b", "task_a")
end
//}...

Rake::InvocationChain::EmptyInvocationChain#member?(task_name) -> bool (9001.0)

偽を返します。

偽を返します。

Rake::InvocationChain::EmptyInvocationChain#to_s -> String (9001.0)

'TOP' という文字列を返します。

...'TOP' という文字列を返します。...