Sha256: 9e01f00dbfadc9ffee1cb5fc82fc7e7304e33e2c8261f6210b8ff0db17d96301
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
module Avro module Builder # TODO: eventually this should be refactored into something standalone # instead of a module that is included to provide the file handling methods. module FileHandler module ClassMethods # Load paths are used to search for imports and extends. def load_paths @load_paths ||= Set.new end end def self.included(base) base.extend ClassMethods end def read_file(name) File.read(find_file(name)) end private def find_file(name) # Ensure that the file_name that is searched for begins with a slash (/) # and ends with a .rb extension. Additionally, if the name contains # a namespace then ensure that periods (.) are replaced by forward # slashes. E.g. for 'test.example' search for '/test/example.rb'. file_name = "/#{name.to_s.tr('.', '/').sub(/^\//, '').sub(/\.rb$/, '')}.rb" matches = self.class.load_paths.flat_map do |load_path| Dir["#{load_path}/**/*.rb"].select do |file_path| file_path.end_with?(file_name) end end raise "Multiple matches: #{matches}" if matches.size > 1 raise "File not found #{file_name}" if matches.empty? matches.first end end end end
Version data entries
4 entries across 4 versions & 1 rubygems