Files
metasploit-gs/lib/metasm/misc/metasm-all.rb
T
Joshua Drake 8057c7e969 sync up with metasm tip, yay for Yoann and autoload
git-svn-id: file:///home/svn/framework3/trunk@12252 4d416f70-5f16-0410-b530-b9f4589650da
2011-04-06 17:40:01 +00:00

14 lines
441 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, to avoid using ruby autoload mechanism
require File.join(File.dirname(__FILE__), '..', 'metasm')
module Metasm
Const_autorequire.values.flatten.each { |f| require File.join('metasm', f) }
$:.pop if $:.last == Metasmdir
end