るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.042秒)
トップページ > クエリ:-[x] > クエリ:desc[x] > ライブラリ:rake[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method gets
  4. irb/input-method new
  5. matrix -

モジュール

キーワード

検索結果

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

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

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

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

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

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