1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/optparse] Use require_relative for internal requires (https://github.com/ruby/optparse/pull/28)

e4f2682128
This commit is contained in:
David Rodríguez 2022-01-04 08:32:45 +01:00 committed by git
parent 5074aa1984
commit f0669fb6cb
6 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
# frozen_string_literal: false
# -*- ruby -*-
require 'optparse'
require_relative '../optparse'
require 'uri'
OptionParser.accept(URI) {|s,| URI.parse(s) if s}