336件ヒット
[301-336件を表示]
(0.078秒)
別のキーワード
ライブラリ
- rake (336)
クラス
-
Rake
:: Application (132) -
Rake
:: FileTask (24) -
Rake
:: Task (24)
モジュール
-
Rake
:: TaskManager (156)
キーワード
- [] (12)
-
add
_ loader (12) - application= (12)
- clear (12)
-
create
_ rule (12) -
current
_ scope (12) -
define
_ task (12) -
in
_ namespace (12) - init (12)
- intern (12)
-
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) -
load
_ rakefile (12) - lookup (12)
- name (12)
- needed? (12)
-
original
_ dir (12) - rakefile (12)
- run (12)
-
synthesize
_ file _ task (12) - tasks (12)
-
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12)
検索結果
先頭3件
-
Rake
:: TaskManager # last _ description -> String (11025.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
:: TaskManager # in _ namespace(name) {|name _ space| . . . } -> Array (11019.0) -
与えられた名前の名前空間でブロックを評価します。
...ます。
@param name 名前を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
namespace :sample do
def hoge
puts "hoge"
end
end
task :test_rake_app do
task.application.in_namespace("sample") do
hoge # => "hoge"
end
end
//}... -
Rake
:: FileTask # needed? -> bool (11013.0) -
このタスクが必要である場合は真を返します。 そうでない場合は偽を返します。
...しようとしているファイルが古い場合に真を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: "test.txt"
file "test.txt" do |task|
Rake.application.options.build_all = false
task.needed? # => true
IO.write("test.txt", "test")
task.needed? #...