るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.113秒)

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

クラス

キーワード

検索結果

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

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

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

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

t
ask default: :test_rake_app
t
ask :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.pathmap("%n") # => ["test1", "test2", "test...
...3"]
end
//}

@
see String#pathmap...

String#pathmap_explode -> Array (12230.0)

自身をパスを表す部分ごとに分解して配列にして返します。 String#pathmap で利用される protected メソッドです。

...自身をパスを表す部分ごとに分解して配列にして返します。
String#pathmap で利用される protected メソッドです。

@
see String#pathmap...

String#pathmap_replace(patterns) { ... } -> String (12208.0)

与えられたパスを前もって置き換えます。

...与えられたパスを前もって置き換えます。

@
param patterns 'pat1,rep1;pat2,rep2;...' のような形式で置換パターンを指定します。...