るりまサーチ

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

別のキーワード

  1. rake desc
  2. kernel desc
  3. desc
  4. desc kernel

ライブラリ

クラス

モジュール

検索結果

rake (38118.0)

Rake というコマンドラインツールを扱うライブラリです。

...Rake というコマンドラインツールを扱うライブラリです。

=== Rake とは

Rake
は Make によく似た機能を持つ Ruby で書かれたシンプルなビルドツールです。

Rake
は以下のような特徴を持っています。

* Rakefile (Rake における Makef...
...できます。
* Rake は暗黙のタスクを合成することをサポートしています。
* 配列のように振る舞うフレキシブルな FileList メソッドがあります。
FileList はファイル名やパス名を扱うのに便利です。
* Rakefile をより簡単...
...い方

$ rake --help
rake
[-f rakefile] {options} targets...
Options are ...
-C, --classic-namespace トップレベルに Task, FileTask を定義します。
過去との互換性のためのオプションです。
-D, --describe [PATTE...

Kernel#desc(description) -> String (26223.0)

直後の Rake タスクの説明を登録します。

...直後の Rake タスクの説明を登録します。

@param description 直後のタスクの説明を指定します。

例:
desc
"Run the Unit Tests"
task :test => [:build] do
runtests
end...

Rake::TaskManager#last_description=(description) (17230.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::Task#add_description(description) (17200.0)

自身に詳細説明を追加します。

自身に詳細説明を追加します。

Rake::Task#arg_description (17100.0)

絞り込み条件を変える

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

Rake::TaskManager#last_comment -> String (11030.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...