5件ヒット
[1-5件を表示]
(0.031秒)
別のキーワード
クラス
-
Rake
:: Task (2)
モジュール
- Kernel (1)
-
Rake
:: TaskManager (2)
キーワード
-
add
_ description (1) -
arg
_ description (1) - desc (1)
-
last
_ description (1) -
last
_ description= (1)
検索結果
先頭5件
-
Rake
:: TaskManager # last _ description=(description) (37270.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) (37216.0) -
自身に詳細説明を追加します。
自身に詳細説明を追加します。 -
Rake
:: Task # arg _ description (36613.0) -
-
Rake
:: TaskManager # last _ description -> String (18631.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
//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... -
Kernel
# desc(description) -> String (631.0) -
直後の Rake タスクの説明を登録します。
...直後の Rake タスクの説明を登録します。
@param description 直後のタスクの説明を指定します。
例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end...