forked from sandrods/odf-report
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathodf-report.gemspec
33 lines (29 loc) · 1.41 KB
/
odf-report.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{odf-report}
s.version = "0.3.1"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Sandro Duarte"]
s.date = %q{2010-05-31}
s.description = %q{Generates ODF files, given a template (.odt) and data, replacing tags}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["lib/odf-report.rb", "README.textile"]
s.files = %w{lib/odf-report.rb odf-report.gemspec README.textile test/test.odt test/test.rb Manifest lib/odf-report/report.rb lib/odf-report/table.rb lib/odf-report/section.rb lib/odf-report/file_ops.rb lib/odf-report/hash_gsub.rb }
s.has_rdoc = false
s.homepage = %q{}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Odf-report", "--main", "README.textile"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Generates ODF files, given a template (.odt) and data, replacing tags}
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<rubyzip>, [">= 0", "= 0.9.1"])
else
s.add_dependency(%q<rubyzip>, [">= 0", "= 0.9.1"])
end
else
s.add_dependency(%q<rubyzip>, [">= 0", "= 0.9.1"])
end
end