git-svn-id: https://beef.googlecode.com/svn/trunk@503 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
20 lines
254 B
Ruby
20 lines
254 B
Ruby
module BeEF
|
|
|
|
#
|
|
#
|
|
#
|
|
class Configuration < ParseConfig
|
|
|
|
include Singleton
|
|
|
|
def initialize(configuration_file="#{$root_dir}/config.ini")
|
|
super(configuration_file)
|
|
end
|
|
|
|
def get(key)
|
|
get_value(key)
|
|
end
|
|
|
|
end
|
|
|
|
end |