-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquarto.gemspec
80 lines (76 loc) · 2.68 KB
/
quarto.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{quarto}
s.version = "1.6.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jarrett Colby"]
s.date = %q{2009-06-24}
s.default_executable = %q{quarto}
s.description = %q{Quarto is a Ruby framework for generating collections of documents from XML. It steps in where XSLT just won't cut it. Potential applications include web sites and e-books. It's built on top of ERB and REXML.}
s.email = %q{[email protected]}
s.executables = ["quarto"]
s.extra_rdoc_files = [
"README"
]
s.files = [
"README",
"Rakefile",
"VERSION",
"bin/quarto",
"lib/quarto.rb",
"lib/quarto/children.rb",
"lib/quarto/config.rb",
"lib/quarto/element_wrapper.rb",
"lib/quarto/generator.rb",
"lib/quarto/html_transformer.rb",
"lib/quarto/inheritable_attributes.rb",
"lib/quarto/init_project.rb",
"lib/quarto/rails_helper.rb",
"lib/quarto/rendering.rb",
"lib/quarto/transformation_helper.rb",
"lib/quarto/transformer.rb",
"lib/quarto/url_helper.rb",
"lib/quarto/xml_doc.rb",
"quarto.gemspec"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/jarrett/quarto}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{generates HTML or any other format from XML}
s.test_files = [
"spec/children_spec.rb",
"spec/element_wrapper_spec.rb",
"spec/generator_spec.rb",
"spec/html_tranformer_spec.rb",
"spec/init_project_spec.rb",
"spec/matchers/file_matchers.rb",
"spec/matchers/rexml_matchers.rb",
"spec/rendering_spec.rb",
"spec/sample_models.rb",
"spec/sample_project/generate.rb",
"spec/sample_project/models/company.rb",
"spec/sample_project/models/employee.rb",
"spec/sample_project/models/location.rb",
"spec/sample_project/models/mascot.rb",
"spec/sample_project/models/product.rb",
"spec/sample_project/transformers/descriptions_transformer.rb",
"spec/sample_project/urls.rb",
"spec/spec_helper.rb",
"spec/transformation_helper_spec.rb",
"spec/transformer_spec.rb",
"spec/url_helper_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, ["~> 2.3.2"])
else
s.add_dependency(%q<activesupport>, ["~> 2.3.2"])
end
else
s.add_dependency(%q<activesupport>, ["~> 2.3.2"])
end
end