-
Notifications
You must be signed in to change notification settings - Fork 301
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Added config option for prune_bundler #68
Conversation
@@ -58,6 +58,7 @@ Configurable options, shown here with defaults: Please note the configuration op | |||
set :puma_worker_timeout, nil | |||
set :puma_init_active_record, false | |||
set :puma_preload_app, true | |||
set :puma_prune_bundler, false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wrong indentation
Fixed the indentation |
@@ -17,6 +17,7 @@ namespace :load do | |||
set :puma_error_log, -> { File.join(shared_path, 'log', 'puma_error.log') } | |||
set :puma_init_active_record, false | |||
set :puma_preload_app, true | |||
set :puma_prune_bundler, false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indentation is still wrong
Thanks. Fix the other indentation , squash your commits and i will merge. |
Ugh! Sorry about that, not using my normal editor. |
Added config option for prune_bundler
👍 |
Fixes #55