This commit is contained in:
Hiroshi SHIBATA 2024-09-06 13:26:50 +09:00
Родитель 1b4f394c52
Коммит 74c4e562e2
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,7 +1,11 @@
class Binding
# :nodoc:
def irb
force_activate "irb" if defined?(Bundler) && !Gem.loaded_specs["irb"]
if defined?(Bundler) && !Gem.loaded_specs["irb"]
unless force_activate "irb"
warn "irb is not found. Install irb from RubyGems or add irb to Gemfile."
end
end
require 'irb'
irb
end