diff --git a/.gitignore b/.gitignore index 6ffee68..9ded13d 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ spec/test_app/config/credentials/ # rspec failure tracking .rspec_status .byebug_history +/vendor/bundle/ diff --git a/app/models/concerns/data_drip/hookable.rb b/app/models/concerns/data_drip/hookable.rb index 15e6c49..d70cfe9 100644 --- a/app/models/concerns/data_drip/hookable.rb +++ b/app/models/concerns/data_drip/hookable.rb @@ -13,7 +13,7 @@ def run_status_change_hooks end run_hook(:before, status) - run_around_hook(status) {} + run_around_hook(status) { } run_hook(:after, status) end