blob: b65652de52898be0f3779f925a46d9233f194632 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# frozen_string_literal: false
class Dir
class << self
prepend (Module.new do
def home
raise 'mimic failure' if caller[0].include? '/asciidoctor.rb:'
super
end
end)
end
end
|