Sha256: e56129381373ee874b606be65ae8a04065d876a39b9c7e5fe24fd49fa43665df
Contents?: true
Size: 585 Bytes
Versions: 27
Compression:
Stored size: 585 Bytes
Contents
# encoding: utf-8 # Useful module to help loading all logstash content when # running coverage analysis module CoverageHelper ## # Skip list used to avoid loading certain patterns within # the logstash directories, this patterns are excluded becuause # of potential problems or because they are going to be loaded # in another way. ## SKIP_LIST = Regexp.union([ /^lib\/bootstrap\/rspec.rb$/, /^lib\/logstash\/util\/prctl.rb$/ ]) def self.eager_load Dir.glob("lib/**/*.rb") do |file| next if file =~ SKIP_LIST require file end end end
Version data entries
27 entries across 24 versions & 3 rubygems