def initialize(io = nil)
super('install', false, true)
@io = io || Logger.new(STDOUT)
@version = nil
@path = Juicer.home
self.short_desc = "Install a third party library"
self.description = "Installs a third party used by Juicer. Downloads necessary binaries and licenses\ninto Juicer installation directory, usually ~/.juicer\n"
self.options = CmdParse::OptionParserWrapper.new do |opt|
opt.on('-v', '--version [VERSION]', 'Specify version of library to install') { |version| @version = version }
end
end