るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.075秒)
トップページ > クエリ:t[x] > クエリ:rakefile[x] > ライブラリ:rake[x] > クエリ:in_namespace[x]

別のキーワード

  1. rake load_rakefile
  2. rake rakefile
  3. application rakefile
  4. application load_rakefile
  5. rakefile rake

モジュール

検索結果

Rake::TaskManager#in_namespace(name) {|name_space| ... } -> Array (21115.0)

与えられた名前の名前空間でブロックを評価します。

...ます。

@param name 名前を指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

t
ask default: :test_rake_app

namespace :sample do
def hoge
puts "hoge"
end
end

t
ask :test_rake_app do
t
ask.application.in_namespace("sample") do
hoge # => "hoge"
end
end
//}...