hanami / cli

Hanami command line
MIT License
28 stars 31 forks source link

Bundle install during hanami install #269

Closed timriley closed 2 days ago

timriley commented 2 days ago

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".

See also https://github.com/hanami/rspec/pull/30

Fixes #265