mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-15 21:22:09 +00:00
15 lines
271 B
Ruby
15 lines
271 B
Ruby
# frozen_string_literal: true
|
|
|
|
if Gitlab::Runtime.console?
|
|
# Stop irb from writing a history file by default.
|
|
module IrbNoHistory
|
|
def init_config(*)
|
|
super
|
|
|
|
IRB.conf[:SAVE_HISTORY] = false
|
|
end
|
|
end
|
|
|
|
IRB.singleton_class.prepend(IrbNoHistory)
|
|
end
|