diff options
Diffstat (limited to 'lib/bundler/ui.rb')
| -rw-r--r-- | lib/bundler/ui.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bundler/ui.rb b/lib/bundler/ui.rb new file mode 100644 index 0000000000..7a4fa03669 --- /dev/null +++ b/lib/bundler/ui.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Bundler + module UI + autoload :RGProxy, File.expand_path("ui/rg_proxy", __dir__) + autoload :Shell, File.expand_path("ui/shell", __dir__) + autoload :Silent, File.expand_path("ui/silent", __dir__) + end +end |
