149c3ecc63
* --ask option ported to new location * --version option now works * MSF version updated * All specs passing
20 lines
235 B
Ruby
20 lines
235 B
Ruby
#
|
|
# Gems
|
|
#
|
|
|
|
require 'rails/engine'
|
|
|
|
#
|
|
# Project
|
|
#
|
|
|
|
require 'metasploit/framework/common_engine'
|
|
|
|
module Metasploit
|
|
module Framework
|
|
class Engine < Rails::Engine
|
|
include Metasploit::Framework::CommonEngine
|
|
end
|
|
end
|
|
end
|