Class: Pronto::Blacklist
- Inherits:
-
Runner
- Object
- Runner
- Pronto::Blacklist
- Defined in:
- lib/pronto/blacklist.rb
Instance Method Summary collapse
Instance Method Details
#run ⇒ Object
7 8 9 10 11 12 13 14 |
# File 'lib/pronto/blacklist.rb', line 7 def run return [] unless @patches @patches.select { |patch| patch.additions > 0 } .map { |patch| inspect(patch) } .flatten .compact end |