lib/erbook.rb in erbook-6.1.0 vs lib/erbook.rb in erbook-7.0.0
- old
+ new
@@ -1,17 +1,24 @@
+#--
+# Copyright 2007 Suraj N. Kurapati
+# See the LICENSE file for details.
+#++
+
require 'rubygems'
+gem 'inochi', '~> 1'
require 'inochi'
Inochi.init :ERBook,
:program => 'erbook',
- :version => '6.1.0',
- :release => '2009-02-14',
+ :version => '7.0.0',
+ :release => '2009-05-03',
:website => 'http://snk.tuxfamily.org/lib/erbook/',
:tagline => 'Extensible document processor based on eRuby',
:require => {
- # gems needed by the default 'xhtml' format
- 'maruku' => '~> 0.5',
- 'coderay' => '>= 0.7',
+ 'ember' => '~> 0', # for eRuby template processing
+ 'maruku' => '~> 0.5', # for Markdown to XHTML conversion
+ 'coderay' => '>= 0.8', # for syntax coloring of source code
+ 'rainpress' => '~> 1', # for minifying CSS
}
module ERBook
FORMATS_DIR = File.join(INSTALL, 'fmt')
FORMAT_FILES = Dir[File.join(FORMATS_DIR, '*.yaml')]