るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. matrix i

クラス

モジュール

キーワード

検索結果

Rake::Task#add_description(description) (12402.0)

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

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

Rake::TaskManager#last_description=(description) (12402.0)

最新の詳細説明をセットします。

...

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

task default: :test_rake_app1

des
c "test1"
task :test_rake_app1 do |task|
task.application.last_description # => "test2"
task.application.last_description = "test3"
task.application.last_description # => "test3"
end

des
c "test2"
tas...

Rake::Task#arg_description (12202.0)

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

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

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

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

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

Rake::TaskManager#last_description -> String (6202.0)

Rakefile 内の最新の詳細説明を追跡するためのメソッドです。

...
Rake
file 内の最新の詳細説明を追跡するためのメソッドです。

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

task default: :test_rake_app1

des
c "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end

des
c "test2"
task :test_rake_a...

絞り込み条件を変える