diff options
author | David RodrÃguez <[email protected]> | 2022-01-04 08:32:45 +0100 |
---|---|---|
committer | git <[email protected]> | 2022-01-04 16:38:17 +0900 |
commit | f0669fb6cbdbad499974252ef2d955a608d0adc1 (patch) | |
tree | a803ae6c953806877d0f857dcd07f87dcc06f9b4 /lib/optparse/time.rb | |
parent | 5074aa19841dac0c1fcb037cd8306c5fe8e8516a (diff) |
[ruby/optparse] Use `require_relative` for internal requires (https://github.com/ruby/optparse/pull/28)
https://github.com/ruby/optparse/commit/e4f2682128
Diffstat (limited to 'lib/optparse/time.rb')
-rw-r--r-- | lib/optparse/time.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/optparse/time.rb b/lib/optparse/time.rb index ffc6ff000d..0ce651f6f6 100644 --- a/lib/optparse/time.rb +++ b/lib/optparse/time.rb @@ -1,5 +1,5 @@ # frozen_string_literal: false -require 'optparse' +require_relative '../optparse' require 'time' OptionParser.accept(Time) do |s,| |