36件ヒット
[1-36件を表示]
(0.080秒)
モジュール
- Kernel (12)
-
Rake
:: TaskManager (24)
キーワード
- desc (12)
-
last
_ comment (12) -
last
_ description (12)
検索結果
先頭3件
-
Rake
:: TaskManager # last _ description -> String (9312.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......pp2 do |task|
end
//}... -
Rake
:: TaskManager # last _ comment -> String (6212.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......pp2 do |task|
end
//}... -
Kernel
# desc(description) -> String (311.0) -
直後の Rake タスクの説明を登録します。
...直後の Rake タスクの説明を登録します。
@param description 直後のタスクの説明を指定します。
例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end...