From 113f3b88f50a5ecf334b9529477cff2dbe457af6 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sun, 22 Jan 2023 09:31:11 -0700 Subject: [PATCH] Added Rake binstub Necessary to reduce typing and be consistent with existing binstub use. --- bin/rake | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/rake diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..9bef742 --- /dev/null +++ b/bin/rake @@ -0,0 +1,6 @@ +#! /usr/bin/env ruby +# frozen_string_literal: true + +require "bundler/setup" + +load Gem.bin_path "rake", "rake"