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