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 !
Add utility code from `bones' for gem creation
bruce (author)
Sat Apr 19 23:11:43 -0700 2008
commit  ca72426be16b37334f7d49fd11298f3e8a5fde13
tree    6b1c6ac55458c8fce4d1370038d78c96f569f92b
parent  6dd1b3e3ede7eadd35cb04fe1f68a12bffbb90d6
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
0
@@ -1 +1,34 @@
0
+HISTORY.rdoc
0
+Manifest.txt
0
+README.rdoc
0
+README_RAILS.rdoc
0
+Rakefile
0
+bin/rtex
0
+init.rb
0
+lib/rtex.rb
0
+lib/rtex/document.rb
0
+lib/rtex/escaping.rb
0
+lib/rtex/framework/merb.rb
0
+lib/rtex/framework/rails.rb
0
+lib/rtex/tempdir.rb
0
+lib/rtex/version.rb
0
+tasks/doc.rake
0
+tasks/gem.rake
0
+tasks/manifest.rake
0
+tasks/post_load.rake
0
+tasks/setup.rb
0
+tasks/test.rake
0
+test/document_test.rb
0
+test/filter_test.rb
0
+test/fixtures/first.tex
0
+test/fixtures/first.tex.erb
0
+test/fixtures/fragment.tex.erb
0
+test/fixtures/text.textile
0
+test/tempdir_test.rb
0
+test/test_helper.rb
0
+test/tmp/rtex-071EE944-B2FA-4A3B-9764-1B5143833EB7/document.tex
0
+test/tmp/rtex-592F93A7-6198-4B00-B638-33855344A29B/document.tex
0
+test/tmp/rtex-96736595-5175-4602-9DC1-ABA096CC0E3D/document.tex
0
+vendor/instiki/LICENSE
0
+vendor/instiki/redcloth_for_tex.rb
...
1
2
 
3
4
5
6
7
 
8
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
 
 
1
2
 
 
 
 
3
4
 
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
0
@@ -1,10 +1,21 @@
0
-require 'rake'
0
-require 'rake/testtask'
0
+require File.dirname(__FILE__) << "/lib/rtex/version"
0
 
0
-Rake::TestTask.new do |t|
0
- t.test_files = FileList['test/**/*_test.rb']
0
- t.verbose = true
0
-end
0
+load 'tasks/setup.rb'
0
 
0
-task :default => :test
0
+PROJ.name = 'rtex'
0
+PROJ.authors = ['Bruce Williams', 'Wiebe Cazemier']
0
+PROJ.email = ['bruce@codefluency.com']
0
+PROJ.url = 'http://rtex.rubyforge.org'
0
+PROJ.rubyforge_name = 'rtex'
0
+
0
+PROJ.libs = %w[]
0
+PROJ.ruby_opts = []
0
+PROJ.test_opts = []
0
+
0
+PROJ.description = "LaTeX preprocessor for PDF generation; Rails plugin"
0
+PROJ.summary = PROJ.description
0
+
0
+PROJ.version = RTex::Version::STRING
0
+
0
+task 'gem:package' => 'manifest:assert'
...
48
49
50
51
 
 
 
52
53
54
...
48
49
50
 
51
52
53
54
55
56
0
@@ -48,7 +48,9 @@
0
     end
0
     plugin_path = File.join(plugins, 'rtex')
0
     FileUtils.cp_r(File.dirname(__FILE__) << '/..', plugin_path)
0
- FileUtils.rm_rf(File.join(plugin_path, 'bin'))
0
+ %w(Rakefile Manifest.txt bin tasks).each do |prune|
0
+ FileUtils.rm_rf(File.join(plugin_path, prune)) rescue nil
0
+ end
0
     STDERR.puts "Installed at #{plugin_path}"
0
     exit
0
   end

Comments

    No one has commented yet.