Added Rake, RSpec, and RuboCop bin stubs

Necessary to provide developer conveniences (but will also be used by CI).

Milestone: minor
This commit is contained in:
Brooke Kuhlmann
2026-02-02 08:30:16 -07:00
parent b5dd99b002
commit d38421a2ee
3 changed files with 18 additions and 0 deletions
Executable
+6
View File
@@ -0,0 +1,6 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
require "bundler/setup"
load Gem.bin_path "rake", "rake"
Executable
+6
View File
@@ -0,0 +1,6 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
require "bundler/setup"
load Gem.bin_path "rspec-core", "rspec"
Executable
+6
View File
@@ -0,0 +1,6 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
require "bundler/setup"
load Gem.bin_path "rubocop", "rubocop"