aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/ui.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/ui.rb')
-rw-r--r--lib/bundler/ui.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/bundler/ui.rb b/lib/bundler/ui.rb
new file mode 100644
index 0000000000..794c000dc4
--- /dev/null
+++ b/lib/bundler/ui.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+module Bundler
+ module UI
+ autoload :RGProxy, "bundler/ui/rg_proxy"
+ autoload :Shell, "bundler/ui/shell"
+ autoload :Silent, "bundler/ui/silent"
+ end
+end