Sha256: e20d5942fcdac9cf92ae4acde4b01b4689c506009e042a3d3958c72697b63f31

Contents?: true

Size: 879 Bytes

Versions: 1

Compression:

Stored size: 879 Bytes

Contents

#--
# Copyright protects this work.
# See LICENSE file for details.
#++

require 'rubygems'
gem 'inochi', '~> 1'
require 'inochi'

Inochi.init :ERBook,
  :program => 'erbook',
  :version => '9.0.0',
  :release => '2009-10-18',
  :website => 'http://snk.tuxfamily.org/lib/erbook/',
  :tagline => 'Write books, manuals, and documents in eRuby',
  :require => {
    'ember'      => '~> 0',     # for eRuby template processing
    'maruku'     => '~> 0.5',   # for Markdown to XHTML conversion
    'coderay'    => '>= 0.8',   # for syntax coloring of source code
    'haml'       => '>= 2.2.2', # for generating HTML and CSS
    'mime-types' => '>= 1.16',  # for detecting MIME types
    'json'       => nil,        # for emitting JSON
  }

module ERBook
  FORMATS_DIR = File.join(INSTALL, 'fmt')
  FORMAT_FILES = Dir[File.join(FORMATS_DIR, '*.yaml')]
end

require 'erbook/document'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erbook-9.0.0 lib/erbook.rb