Sha256: 35bad059ed47635e4aa621c4ee7b29b2d62806c284b3e62f1fc6e75b032a547d
Contents?: true
Size: 932 Bytes
Versions: 2
Compression:
Stored size: 932 Bytes
Contents
require 'reek/source/core_extras' require 'reek/source/source_code' require 'reek/source/source_locator' module Reek module Source # # A collection of source code. If the collection is initialized with an array # it is assumed to be a list of file paths. Otherwise it is assumed to be a # single unit of Ruby source code. # class SourceRepository def self.parse source case source when Array new 'dir', Source::SourceLocator.new(source).all_sources when Source::SourceCode new source.desc, [source] else src = source.to_reek_source new src.desc, [src] end end include Enumerable attr_reader :description def initialize description, sources @description = description @sources = sources end def each &block @sources.each(&block) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
reek-1.3.8 | lib/reek/source/source_repository.rb |
reek-1.3.7 | lib/reek/source/source_repository.rb |