@@ -32,8 +32,8 @@ module SXP
3232 # @param [String, #to_s] url
3333 # @param [Hash{Symbol => Object}] options
3434 # @return [Enumerable<Object>]
35- def self . read_url ( url , options = { } )
36- Reader ::Basic . read_url ( url , options )
35+ def self . read_url ( url , ** options )
36+ Reader ::Basic . read_url ( url , ** options )
3737 end
3838
3939 ##
@@ -42,7 +42,7 @@ def self.read_url(url, options = {})
4242 # @overload read_files(*filenames)
4343 # @param [Enumerable<String>] filenames
4444 #
45- # @overload read_files(*filenames, options)
45+ # @overload read_files(*filenames, ** options)
4646 # @param [Enumerable<String>] filenames
4747 # @param [Hash{Symbol => Object}] options
4848 #
@@ -57,8 +57,8 @@ def self.read_files(*filenames)
5757 # @param [String, #to_s] filename
5858 # @param [Hash{Symbol => Object}] options
5959 # @return [Enumerable<Object>]
60- def self . read_file ( filename , options = { } )
61- Reader ::Basic . read_file ( filename , options )
60+ def self . read_file ( filename , ** options )
61+ Reader ::Basic . read_file ( filename , ** options )
6262 end
6363
6464 ##
@@ -67,8 +67,8 @@ def self.read_file(filename, options = {})
6767 # @param [IO, StringIO, String] input
6868 # @param [Hash{Symbol => Object}] options
6969 # @return [Enumerable<Object>]
70- def self . read_all ( input , options = { } )
71- Reader ::Basic . read_all ( input , options )
70+ def self . read_all ( input , ** options )
71+ Reader ::Basic . read_all ( input , ** options )
7272 end
7373
7474 ##
@@ -77,8 +77,8 @@ def self.read_all(input, options = {})
7777 # @param [IO, StringIO, String] input
7878 # @param [Hash{Symbol => Object}] options
7979 # @return [Object]
80- def self . read ( input , options = { } )
81- Reader ::Basic . read ( input , options )
80+ def self . read ( input , ** options )
81+ Reader ::Basic . read ( input , ** options )
8282 end
8383
8484 ##
0 commit comments