るりまサーチ

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

別のキーワード

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

ライブラリ

クラス

キーワード

検索結果

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

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

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

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

String#pathmap_explode -> Array (33252.0)

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

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

@
see String#pathmap...

Rake::FileList#pathmap(spec = nil) -> Rake::FileList (24258.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", "tes...
...t3"]
end
//}

@
see String#pathmap...