るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.044秒)
トップページ > クエリ:File[x] > クエリ:rakefile[x] > クエリ:pathmap[x]

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file path
  4. file atime
  5. file mtime

ライブラリ

クラス

検索結果

Rake::FileList#pathmap(spec = nil) -> Rake::FileList (21247.0)

各要素に String#pathmap を適用した新しい Rake::FileList を返します。

...各要素に String#pathmap を適用した新しい Rake::FileList を返します。

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

task default: :test_rake_app
task :test_rake_app do
file
_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file
_list.pathmap("%n") # => ["test1",...
..."test2", "test3"]
end
//}

@see String#pathmap...