Top Level Namespace
Defined Under Namespace
Constant Summary collapse
- @@version =
'0.1.0'
Instance Method Summary collapse
-
#convert(options) {|new_help| ... } ⇒ Object
Converts a Javahelp jar file to the specified Eclipse plugin.
Instance Method Details
#convert(options) {|new_help| ... } ⇒ Object
Converts a Javahelp jar file to the specified Eclipse plugin.
14 15 16 17 18 19 |
# File 'lib/helpconverter.rb', line 14 def convert() old_help = JavaHelp::JarConverter.new([:from]) new_help = Eclipse::Plugin.new([:to]) yield new_help new_help.make_file_from(old_help) end |