mirror of
https://github.com/ruby/ruby.git
synced 2026-01-28 21:14:28 +00:00
23 lines
475 B
Ruby
23 lines
475 B
Ruby
# frozen_string_literal: true
|
|
module DifferentOFS
|
|
module WithDifferentOFS
|
|
def setup
|
|
super
|
|
verbose, $VERBOSE = $VERBOSE, nil
|
|
@ofs, $, = $,, "-"
|
|
$VERBOSE = verbose
|
|
end
|
|
def teardown
|
|
verbose, $VERBOSE = $VERBOSE, nil
|
|
$, = @ofs
|
|
$VERBOSE = verbose
|
|
super
|
|
end
|
|
end
|
|
|
|
def self.extended(klass)
|
|
super(klass)
|
|
klass.const_set(:DifferentOFS, Class.new(klass).class_eval {include WithDifferentOFS}).name
|
|
end
|
|
end
|