Skip to content

Commit 306b0d3

Browse files
committed
Add binstubs for rake and setup
1 parent 1d25705 commit 306b0d3

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

bin/rake

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
require "rubygems"
5+
require "bundler/setup"
6+
7+
load Gem.bin_path("rake", "rake")

bin/setup

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
IFS=$'\n\t'
4+
set -vx
5+
6+
gem install bundler --conservative
7+
8+
bundle update

0 commit comments

Comments
 (0)