48件ヒット
[1-48件を表示]
(0.029秒)
クラス
-
Rake
:: Task (24)
モジュール
-
Rake
:: TaskManager (24)
キーワード
-
full
_ comment (12) -
last
_ comment (12) -
last
_ description (12)
検索結果
先頭4件
-
Rake
:: Task # comment -> String (18205.0) -
自身の短いコメントを返します。
自身の短いコメントを返します。 -
Rake
:: TaskManager # last _ comment -> String (6206.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... -
Rake
:: Task # full _ comment -> String (6205.0) -
自身のコメントを全て返します。
自身のコメントを全て返します。 -
Rake
:: TaskManager # last _ description -> String (3106.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...