From d38421a2eedddf5b3f7147dfaa1c09b89eaeadef Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Thu, 29 Jan 2026 11:51:31 -0700 Subject: [PATCH] Added Rake, RSpec, and RuboCop bin stubs Necessary to provide developer conveniences (but will also be used by CI). Milestone: minor --- bin/rake | 6 ++++++ bin/rspec | 6 ++++++ bin/rubocop | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100755 bin/rake create mode 100755 bin/rspec create mode 100755 bin/rubocop 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" diff --git a/bin/rspec b/bin/rspec new file mode 100755 index 0000000..328edde --- /dev/null +++ b/bin/rspec @@ -0,0 +1,6 @@ +#! /usr/bin/env ruby +# frozen_string_literal: true + +require "bundler/setup" + +load Gem.bin_path "rspec-core", "rspec" diff --git a/bin/rubocop b/bin/rubocop new file mode 100755 index 0000000..fcc59f5 --- /dev/null +++ b/bin/rubocop @@ -0,0 +1,6 @@ +#! /usr/bin/env ruby +# frozen_string_literal: true + +require "bundler/setup" + +load Gem.bin_path "rubocop", "rubocop"