public
Description: Ruby LaTeX to PDF preprocessor (and Rails plugin)
Homepage: http://rtex.rubyforge.org
Clone URL: git://github.com/bruce/rtex.git
Search Repo:
Click here to lend your support to: rtex and make a donation at www.pledgie.com !
bruce (author)
Tue May 06 19:41:25 -0700 2008
commit  44c8101c353ff577d1e1501b334c016c6d754ced
tree    6849c60a594404f48f61be1ea732fc8f0361a9cd
parent  4c3a42bdcd10d2af8f4c19b8db22b6b0b08c9719
rtex / Rakefile
100644 23 lines (16 sloc) 0.588 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.dirname(__FILE__) << "/lib/rtex/version"
 
load 'tasks/setup.rb'
 
PROJ.name = 'rtex'
PROJ.authors = ['Bruce Williams', 'Wiebe Cazemier']
PROJ.email = ['bruce@codefluency.com']
PROJ.url = 'http://rtex.rubyforge.org'
PROJ.rubyforge_name = 'rtex'
 
PROJ.libs = %w[]
PROJ.ruby_opts = []
PROJ.test_opts = []
 
PROJ.rdoc_main = 'README.rdoc'
PROJ.rdoc_include.push 'README.rdoc', 'README_RAILS.rdoc'
 
PROJ.description = "LaTeX preprocessor for PDF generation; Rails plugin"
PROJ.summary = PROJ.description
 
PROJ.version = RTeX::Version::STRING
 
task 'gem:package' => 'manifest:assert'