るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. frame top
  2. irb/frame top
  3. pop top
  4. popmail top
  5. net/pop top

検索結果

Rake::Application#top_level (18331.0)

Rake アプリケーションに与えられたトップレベルのタスク (コマンドラインで指定されたタスク) を実行します。

...
Rake
アプリケーションに与えられたトップレベルのタスク
(コマンドラインで指定されたタスク) を実行します。

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

task default: :test1
task :test1
task :test2 do
puts "test2"
end

# rake test2 で実行
R...

Rake::Application#top_level_tasks -> Array (18331.0)

コマンドラインで指定されたタスクのリストを返します。

...コマンドラインで指定されたタスクのリストを返します。

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

task default: :test_rake_app
task :test_rake_app do
Rake
.application.top_level_tasks # => ["default"]
end
//}...

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

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

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

Rake::Application#run (28.0)

Rake アプリケーションを実行します。

...
Rake
アプリケーションを実行します。

このメソッドは以下の 3 ステップを実行します。

* コマンドラインオプションを初期化します。Rake::Application#init
* タスクを定義します。Rake::Application#load_rakefile
* コマンドラインで...
...指定されたタスクを実行します。Rake::Application#top_level...

Rake::InvocationChain#to_s -> String (28.0)

トップレベルのタスクから自身までの依存関係を文字列として返します。

...での依存関係を文字列として返します。

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

task default: :test_rake_app
task :test_rake_app do
invocation_chain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.to_s # => "TOP => task_a"
end
//...

絞り込み条件を変える