From d863f4bccdd1b5566fbdbe87af766e54b995f8af Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 18 May 2020 10:43:26 +0900 Subject: [Feature #16254] Use `__builtin.func` style --- dir.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dir.rb') diff --git a/dir.rb b/dir.rb index e8e846a3e4..5ae42d484c 100644 --- a/dir.rb +++ b/dir.rb @@ -12,12 +12,12 @@ class Dir # directory is closed at the end of the block, and Dir::open returns # the value of the block. def self.open(name, encoding: nil, &block) - dir = __builtin_dir_s_open(name, encoding) + dir = __builtin.dir_s_open(name, encoding) if block begin yield dir ensure - __builtin_dir_s_close(dir) + __builtin.dir_s_close(dir) end else dir @@ -32,7 +32,7 @@ class Dir # The optional encoding keyword argument specifies the encoding of the directory. # If not specified, the filesystem encoding is used. def initialize(name, encoding: nil) - __builtin_dir_initialize(name, encoding) + __builtin.dir_initialize(name, encoding) end # Dir[ string [, string ...] [, base: path] [, sort: true] ] -> array @@ -40,7 +40,7 @@ class Dir # Equivalent to calling # Dir.glob([string,...], 0). def self.[](*args, base: nil, sort: true) - __builtin_dir_s_aref(args, base, sort) + __builtin.dir_s_aref(args, base, sort) end # Dir.glob( pattern, [flags], [base: path] [, sort: true] ) -> array @@ -133,6 +133,6 @@ class Dir # librbfiles = File.join("**", "lib", "*.rb") # Dir.glob(librbfiles) #=> ["lib/song.rb"] def self.glob(pattern, _flags = 0, flags: _flags, base: nil, sort: true) - __builtin_dir_s_glob(pattern, flags, base, sort) + __builtin.dir_s_glob(pattern, flags, base, sort) end end -- cgit v1.2.1