60件ヒット
[1-60件を表示]
(0.011秒)
別のキーワード
ライブラリ
- rake (60)
クラス
-
Rake
:: Task (36)
モジュール
-
Rake
:: TaskManager (24)
キーワード
- comment= (12)
-
full
_ comment (12) -
last
_ comment (12) -
last
_ description (12)
検索結果
先頭5件
-
Rake
:: Task # comment -> String (21101.0) -
自身の短いコメントを返します。
自身の短いコメントを返します。 -
Rake
:: Task # comment=(comment) (9208.0) -
自身のコメントをセットします。
...自身のコメントをセットします。
与えられた文字列が 50 文字を越える場合や複数行である場合は文字列を切り詰めます。
@param comment コメントをあらわす文字列を指定します。... -
Rake
:: Task # full _ comment -> String (9101.0) -
自身のコメントを全て返します。
自身のコメントを全て返します。 -
Rake
:: TaskManager # last _ comment -> String (9101.0) -
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_app2 do |task|
end
//}... -
Rake
:: TaskManager # last _ description -> String (6001.0) -
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_app2 do |task|
end
//}...