In the file https://github.com/adenaecommerce/pombo/blob/master/lib/pombo.rb#L30 ``` ruby def self.setup(&block) Configuration.setup(&block) end ``` to ``` ruby def self.setup Configuration.setup { yield if block_given? } end ```
In the file https://github.com/adenaecommerce/pombo/blob/master/lib/pombo.rb#L30
to