This will ensure that gems added to the Gemfile by our first-party extensions (hanami-cli) are installed during hanami new, rather than requiring the user to run their own manual bundle install afterwards.
This requires the first-party extension gems to use a before "install" command hook, instead of the current after "install".
This will ensure that gems added to the
Gemfile
by our first-party extensions (hanami-cli) are installed duringhanami new
, rather than requiring the user to run their own manualbundle install
afterwards.This requires the first-party extension gems to use a
before "install"
command hook, instead of the currentafter "install"
.See also https://github.com/hanami/rspec/pull/30
Fixes #265