Sha256: 27daa6decd843fa9fef0a4e10a2c03ca25773980ffabc0067c050070f52353cc
Contents?: true
Size: 1.44 KB
Versions: 5
Compression:
Stored size: 1.44 KB
Contents
=begin Copyright 2010-2022 Ecsypno <http://www.ecsypno.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni module Component # Includes some useful methods for the components. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> module Utilities include Arachni::Utilities # @param [String] filename # Filename, without the path. # @param [Block] block # The block to be passed each line as it's read. def read_file( filename, &block ) component_path = block_given? ? block.source_location.first : caller_path(1) # The name of the component that called us. component_name = File.basename( component_path, '.rb' ) # The path to the component's data file directory. path = File.expand_path( File.dirname( component_path ) ) + "/#{component_name}/" File.open( "#{path}/#{filename}" ) do |file| if block_given? # I really hope that ruby frees each line as soon as possible # otherwise this provides no advantage file.each { |line| yield line.strip } else file.read.lines.map { |l| l.strip } end end end extend self end end end
Version data entries
5 entries across 5 versions & 1 rubygems