class RSpec::Core::Source::Cache

@private

def initialize(configuration)

def initialize(configuration)
  @sources_by_path = {}
  @syntax_highlighter = SyntaxHighlighter.new(configuration)
end

def source_from_file(path)

def source_from_file(path)
  @sources_by_path[path] ||= Source.from_file(path)
end