Sha256: 735d138019ca85f0c7975b84394043b7bcf7040640037781a8572dc4c5fea9f2

Contents?: true

Size: 527 Bytes

Versions: 1

Compression:

Stored size: 527 Bytes

Contents

# Ronn is a humane text format and toolchain for authoring manpages (and
# things that appear as manpages from a distance). Use it to build /
# install standard UNIX roff(7) formatted manpages or to generate
# beautiful HTML manpages.
module Ronn
  VERSION = '0.5'

  require 'ronn/document'
  require 'ronn/roff'

  # Create a new Ronn::Document for the given ronn file. See
  # Ronn::Document.new for usage information.
  def self.new(filename, attributes={}, &block)
    Document.new(filename, attributes, &block)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ronn-0.5 lib/ronn.rb