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 18:31:53 -0700 2008
commit  4c3a42bdcd10d2af8f4c19b8db22b6b0b08c9719
tree    9f9ab7614ca6ac85c9efda9ad857fe64578c21f3
parent  2cd1e38c9af08c525d80710fa165e451b0dd5411
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'