Skip to content

Commit fdb286a

Browse files
committed
updated README for Ruby part
1 parent ed4f53d commit fdb286a

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

RubyScript/rb/README.rdoc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
= Ruby4Knime
22

3-
Ruby4Knime is realization of a special node type for http://knime.org that allow to use Ruby scripts for interactive data analytic.
4-
The main aims of this project are
3+
Ruby4Knime is a realization of special node types for http://knime.org that allow to use Ruby scripts for interactive data analytic.
4+
The main aims of this project are:
55
* provide possibility to use Ruby language for interactive data analysis;
66
* make the analysis more effective using clear and laconic Ruby style.
77

8-
knime.rb is the simple wrapper that allows to use Knime classes written in Java in the Ruby programming style.
8+
knime.rb is the simple mediator that allows to use KNIME`s classes written in Java in the Ruby programming style and also use all Java classes without any changes.
99

1010
= Simple examples
1111
These samples illustrate how to generate output data from input data of the node.
@@ -65,3 +65,10 @@ Samples that add new cells in functional style.
6565
$inData0.each do |row|
6666
$outContainer << $outContainer.createRowKey.stringCell(row.getCell(0).to_s.length.to_s).new_row
6767
end
68+
69+
= Other notes
70+
71+
Now it is possible to use any types of KNIME in the DataOutput table.
72+
Simply input a full qualified Java class name in the configuration dialog of
73+
the Ruby node. E.g. org.knime.core.data.def.ComplexNumberCell or
74+
org.knime.ext.textprocessing.data.DocumentCell.

0 commit comments

Comments
 (0)