るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. util u
  2. erb u
  3. matrix u
  4. _builtin koi8_u
  5. encoding koi8_u

検索結果

RSS::Rss::Channel::TextInput#link (81310.0)

@todo

@todo

RSS::Maker::TextinputBase#link (72310.0)

@todo

@todo

RSS::RDF::Textinput#link (72310.0)

@todo

@todo

RSS::Maker::RSS20::Items::Item::Guid#isPermaLink (54604.0)

@todo

@todo

RSS::Maker::RSS20::Items::Item::Guid#isPermaLink=() (54604.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel::Item::Guid#isPermaLink (54604.0)

@todo

@todo

* http://purl.org/dc/elements/1.1/

Shell::CommandProcessor#unlink(path) -> self (45604.0)

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

@param path 削除したいパスを指定します。

@see File.unlink, Dir.unlink

Shell::Filter#unlink(path) -> self (45604.0)

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

@param path 削除したいパスを指定します。

@see File.unlink, Dir.unlink

RSS::Rss::Channel::TextInput#link= (45310.0)

@todo

@todo

RSS::Maker::TextinputBase#link=() (36310.0)

@todo

@todo

絞り込み条件を変える

RSS::RDF::Textinput#link= (36310.0)

@todo

@todo

Pathname#unlink -> Integer (18904.0)

self が指すディレクトリあるいはファイルを削除します。

self が指すディレクトリあるいはファイルを削除します。

//emlist[例][ruby]{
require "pathname"

pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}