204件ヒット
[201-204件を表示]
(0.045秒)
別のキーワード
クラス
-
Rake
:: FileList (60) -
Rake
:: InvocationChain (24) -
Rake
:: NameSpace (12) -
Rake
:: TaskArguments (36)
モジュール
-
Rake
:: TaskManager (72)
キーワード
- == (12)
- [] (36)
- append (12)
-
define
_ task (12) -
excluded
_ from _ list? (12) - ext (12)
- import (12)
-
in
_ namespace (12) - intern (12)
- lookup (12)
- member? (12)
-
new
_ scope (12) - pathmap (12)
-
synthesize
_ file _ task (12) -
with
_ defaults (12)
検索結果
-
Rake
:: TaskManager # in _ namespace(name) {|name _ space| . . . } -> Array (121.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")...