るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. logger error
  2. _builtin gets
  3. openssl error
  4. irb/input-method gets
  5. openssl error_string

モジュール

検索結果

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')
//}...