It's a bit dirty to crack, but you can disable the built-in call to 'bundle install' by overriding the run_bundle method:
def run_bundle ; end
If you still want your template to run bundle install , you can invoke it with the run command:
run "bundle install"
Alternatively, just use this line in your template:
run_bundle ; def run_bundle ; end
NTN.
hmans source share