summaryrefslogtreecommitdiff
path: root/jni/ruby/lib/rdoc/generator/ri.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/lib/rdoc/generator/ri.rb')
-rw-r--r--jni/ruby/lib/rdoc/generator/ri.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/jni/ruby/lib/rdoc/generator/ri.rb b/jni/ruby/lib/rdoc/generator/ri.rb
new file mode 100644
index 0000000..b9c4141
--- /dev/null
+++ b/jni/ruby/lib/rdoc/generator/ri.rb
@@ -0,0 +1,30 @@
+##
+# Generates ri data files
+
+class RDoc::Generator::RI
+
+ RDoc::RDoc.add_generator self
+
+ ##
+ # Description of this generator
+
+ DESCRIPTION = 'creates ri data files'
+
+ ##
+ # Set up a new ri generator
+
+ def initialize store, options #:not-new:
+ @options = options
+ @store = store
+ @store.path = '.'
+ end
+
+ ##
+ # Writes the parsed data store to disk for use by ri.
+
+ def generate
+ @store.save
+ end
+
+end
+