Files
metasploit-gs/lib/metasm/misc/metasm-all.rb
T
Joshua Drake f7020af01a update metasm to tip
git-svn-id: file:///home/svn/framework3/trunk@10278 4d416f70-5f16-0410-b530-b9f4589650da
2010-09-09 18:19:35 +00:00

18 lines
435 B
Ruby

# This file is part of Metasm, the Ruby assembly manipulation suite
# Copyright (C) 2006-2009 Yoann GUILLOT
#
# Licence is LGPL, see LICENCE in the top-level directory
# this file loads all metasm files and removes the autorequire feature
# on const_missing
require 'metasm'
class Module
alias const_missing premetasm_const_missing
end
module Metasm
Const_autorequire.values.flatten.each { |f| require 'metasm/'+f }
end