forked from avarteq/artex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartex.gemspec
36 lines (32 loc) · 2.15 KB
/
artex.gemspec
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
34
35
36
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{artex}
s.version = "2.1.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bruce Williams, Wiebe Cazemier, Julian Fischer, Matthias Folz"]
s.date = %q{2011-03-08}
s.description = %q{LaTeX preprocessor for PDF generation; Rails plugin}
s.email = %q{artex@avarteq.de}
s.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/artex.rb", "lib/artex/document.rb", "lib/artex/escaping.rb", "lib/artex/framework/merb.rb", "lib/artex/framework/rails.rb", "lib/artex/pdf.rb", "lib/artex/tempdir.rb", "lib/artex/version.rb"]
s.files = ["CHANGELOG", "Manifest", "README.rdoc", "Rakefile", "artex.gemspec", "init.rb", "lib/artex.rb", "lib/artex/document.rb", "lib/artex/escaping.rb", "lib/artex/framework/merb.rb", "lib/artex/framework/rails.rb", "lib/artex/pdf.rb", "lib/artex/tempdir.rb", "lib/artex/version.rb", "rails/init.rb", "test/document_test.rb", "test/filter_test.rb", "test/fixtures/first.tex", "test/fixtures/first.tex.erb", "test/fixtures/fragment.tex.erb", "test/fixtures/text.textile", "test/tempdir_test.rb", "test/test_helper.rb", "vendor/instiki/LICENSE", "vendor/instiki/redcloth_for_tex.rb", "test/pdf_test.rb"]
s.homepage = %q{http://github.com/avarteq/artex}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Artex", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{artex}
s.rubygems_version = %q{1.6.0}
s.summary = %q{LaTeX preprocessor for PDF generation; Rails plugin}
s.test_files = ["test/tempdir_test.rb", "test/test_helper.rb", "test/pdf_test.rb", "test/document_test.rb", "test/filter_test.rb"]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<Shoulda>, [">= 0"])
s.add_development_dependency(%q<echoe>, [">= 0"])
else
s.add_dependency(%q<Shoulda>, [">= 0"])
s.add_dependency(%q<echoe>, [">= 0"])
end
else
s.add_dependency(%q<Shoulda>, [">= 0"])
s.add_dependency(%q<echoe>, [">= 0"])
end
end