зеркало из https://github.com/github/ruby.git
[ruby/optparse] Use `require_relative` for internal requires (https://github.com/ruby/optparse/pull/28)
https://github.com/ruby/optparse/commit/e4f2682128
This commit is contained in:
Родитель
5074aa1984
Коммит
f0669fb6cb
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: false
|
||||
require 'optparse'
|
||||
require_relative '../optparse'
|
||||
|
||||
class OptionParser::AC < OptionParser
|
||||
private
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: false
|
||||
require 'optparse'
|
||||
require_relative '../optparse'
|
||||
require 'date'
|
||||
|
||||
OptionParser.accept(DateTime) do |s,|
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
require 'optparse'
|
||||
require_relative '../optparse'
|
||||
|
||||
class OptionParser
|
||||
# :call-seq:
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
# -*- ruby -*-
|
||||
|
||||
require 'shellwords'
|
||||
require 'optparse'
|
||||
require_relative '../optparse'
|
||||
|
||||
OptionParser.accept(Shellwords) {|s,| Shellwords.shellwords(s)}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: false
|
||||
require 'optparse'
|
||||
require_relative '../optparse'
|
||||
require 'time'
|
||||
|
||||
OptionParser.accept(Time) do |s,|
|
||||
|
|
|
@ -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}
|
||||
|
|
Загрузка…
Ссылка в новой задаче