Sha256: 8dfc311b7c5b51972be9228d88d7b148f47fe7cb0bb3bea7ff4ef0ad1a35d5a3
Contents?: true
Size: 1.87 KB
Versions: 8
Compression:
Stored size: 1.87 KB
Contents
=begin Copyright 2010-2013 Tasos Laskos <tasos.laskos@gmail.com> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =end require 'addressable/uri' require 'digest/sha1' require 'cgi' module Arachni module Module # # Includes some useful methods for the system, the modules etc... # # @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> # module Utilities include Arachni::Utilities # # Gets module data files from 'modules/[modtype]/[modname]/[filename]' # # @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 ) mod_path = block_given? ? block.source_location.first : caller.first.split(':').first # the name of the module that called us mod_name = File.basename( mod_path, ".rb" ) # the path to the module's data file directory path = File.expand_path( File.dirname( mod_path ) ) + '/' + mod_name + '/' file = File.open( path + '/' + filename ) 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 ensure file.close end extend self end end end
Version data entries
8 entries across 8 versions & 1 rubygems