public
Description: Ruby LaTeX to PDF preprocessor (and Rails plugin)
Homepage: http://rtex.rubyforge.org
Clone URL: git://github.com/bruce/rtex.git
Click here to lend your support to: rtex and make a donation at www.pledgie.com !
bruce (author)
Wed Apr 23 00:57:17 -0700 2008
commit  743635b21adcd72a5ab267785e24486cea6922e5
tree    5d146eaa34832980104e7a07005f5fbf9ffc7894
parent  6dd96a728c9af0a44fc9e7fbd136f27c52666faa
rtex / Rakefile
100644 20 lines (14 sloc) 0.498 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.description = "LaTeX preprocessor for PDF generation; Rails plugin"
PROJ.summary = PROJ.description
 
PROJ.version = RTeX::Version::STRING
 
task 'gem:package' => 'manifest:assert'