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 !
rtex / Rakefile
100644 23 lines (19 sloc) 0.727 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 'rubygems'
require 'echoe'
 
require File.dirname(__FILE__) << "/lib/rtex/version"
 
Echoe.new 'rtex' do |p|
  p.version = RTeX::Version::STRING
  p.author = ['Bruce Williams', 'Wiebe Cazemier']
  p.email = 'bruce@codefluency.com'
  p.project = 'rtex'
  p.summary = "LaTeX preprocessor for PDF generation; Rails plugin"
  p.url = "http://rtex.rubyforge.org"
  p.include_rakefile = true
  p.development_dependencies = %w(Shoulda echoe)
  p.rcov_options = '--exclude gems --exclude version.rb --sort coverage --text-summary --html -o coverage'
  p.ignore_pattern = /^(pkg|doc|site)|\.svn|CVS|\.bzr|\.DS|\.git/
  p.rubygems_version = nil
end
 
task :coverage do
  system "open coverage/index.html" if PLATFORM['darwin']
end