Open lwe opened 7 years ago
What would be the benefit of binstubs (for a Gem)?
Not having to shell out explicitly to bundle exec
all the time when running commands, similar like you'd have in a Rails app, i.e.:
bundle exec rake test
bundle exec rubocop ...
# vs
./bin/rake test
./bin/rubocop
It's simply that my muscle memory started to favour calling things out of ./bin/... rather than using bundle exec
(or a be
alias) 😄
spec.bindir = 'exe'