diff --git a/config/external.yaml b/config/external.yaml index 50fd4db..b1faec6 100644 --- a/config/external.yaml +++ b/config/external.yaml @@ -1,3 +1,9 @@ +async: + url: https://github.com/socketry/async + command: bundle exec bake test async-dns: url: https://github.com/socketry/async-dns command: CONSOLE_LEVEL=debug bundle exec rspec +falcon: + url: https://github.com/socketry/falcon + command: CONSOLE_LEVEL=debug bundle exec sus diff --git a/lib/console/logger.rb b/lib/console/logger.rb index 34cf551..8646eb8 100644 --- a/lib/console/logger.rb +++ b/lib/console/logger.rb @@ -68,6 +68,7 @@ def initialize(output, **options) def progress(subject, total, **options) options[:severity] ||= :info + # This isn't strictly speaking, a discrete event. So maybe the module is wrong. Event::Progress.new(self, subject, total, **options) end