summaryrefslogtreecommitdiff
path: root/bin/bundle
diff options
context:
space:
mode:
Diffstat (limited to 'bin/bundle')
-rwxr-xr-xbin/bundle8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/bundle b/bin/bundle
new file mode 100755
index 0000000000..85ce199a8d
--- /dev/null
+++ b/bin/bundle
@@ -0,0 +1,8 @@
+#!/usr/bin/env ruby
+# frozen_string_literal: true
+
+require "rubygems"
+bundler_gemspec = Gem::Specification.load(File.expand_path("../../bundler.gemspec", __FILE__))
+bundler_gemspec.instance_variable_set(:@full_gem_path, File.expand_path("../..", __FILE__))
+bundler_gemspec.activate if bundler_gemspec.respond_to?(:activate)
+load File.expand_path("../../exe/bundle", __FILE__)