AlkantarClanX12

Your IP : 18.225.195.4


Current Path : /proc/self/root/opt/alt/ruby33/share/gems/gems/rdoc-6.6.3.1/lib/rdoc/generator/
Upload File :
Current File : //proc/self/root/opt/alt/ruby33/share/gems/gems/rdoc-6.6.3.1/lib/rdoc/generator/ri.rb

# frozen_string_literal: true
##
# 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