class Kubes::Compiler::Strategy::Pass

Public Instance Methods

run() click to toggle source
# File lib/kubes/compiler/strategy/pass.rb, line 3
def run
  # use filehandle instead of content. write is aware of this and handles properly
  io = File.read(@path)
  Result.new(@save_file, io)
end