るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.071秒)
トップページ > クエリ:IO.new[x] > クエリ:>>[x] > クエリ:body=[x] > クエリ:$stdin[x] > バージョン:2.5.0[x] > クエリ:accept_nonblock[x] > ライブラリ:fileutils[x]

別のキーワード

  1. _builtin >>
  2. net/http read_body
  3. webrick/httprequest body
  4. httpresponse read_body
  5. net/http body

モジュール

検索結果

FileUtils.#uptodate?(newer, older_list, options = nil) -> bool (607.0)

newer が、older_list に含まれるすべてのファイルより新しいとき真。 存在しないファイルは無限に古いとみなされます。

...@param options どのようなオプションも指定することはできません。

@raise ArgumentError options にオプションを指定した場合に発生します。

//emlist[][ruby]{
require 'fileutils'
FileUtils
.uptodate?('hello.o', ['hello.c', 'hello.h']) or system('make')
//}...