class Fuci::CachedCommandRunner

Public Instance Methods

command_cache() click to toggle source
# File lib/fuci/cached_command_runner.rb, line 18
def command_cache
  @command_cache ||= CommandCache.new
end
run() click to toggle source
# File lib/fuci/cached_command_runner.rb, line 10
def run
  puts 'Running specs from last call to fuci.'

  IO.popen cached_command do |io|
    io.each { |string| puts string }
  end
end