aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/templates/Executable
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/templates/Executable')
-rw-r--r--lib/bundler/templates/Executable17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/bundler/templates/Executable b/lib/bundler/templates/Executable
new file mode 100644
index 0000000000..fe22de0a6d
--- /dev/null
+++ b/lib/bundler/templates/Executable
@@ -0,0 +1,17 @@
+#!/usr/bin/env <%= Bundler.settings[:shebang] || RbConfig::CONFIG["ruby_install_name"] %>
+# frozen_string_literal: true
+#
+# This file was generated by Bundler.
+#
+# The application '<%= executable %>' is installed as part of a gem, and
+# this file is here to facilitate running it.
+#
+
+require "pathname"
+ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../<%= relative_gemfile_path %>",
+ Pathname.new(__FILE__).realpath)
+
+require "rubygems"
+require "bundler/setup"
+
+load Gem.bin_path("<%= spec.name %>", "<%= executable %>")