class DiffRunner::InvocationRunner

Public Class Methods

new(action, pager) click to toggle source
# File lib/diff-runner/invocation_runner.rb, line 4
def initialize(action, pager)
        @action = action
        @pager = pager
end

Public Instance Methods

run() click to toggle source
# File lib/diff-runner/invocation_runner.rb, line 9
def run
        @pager.present @action.output
end