forked from sandrods/odf-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodf-report.gemspec
25 lines (20 loc) · 890 Bytes
/
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "odf-report/version"
Gem::Specification.new do |s|
s.name = %q{odf-report}
s.version = ODFReport::VERSION
s.authors = ["Sandro Duarte"]
s.description = %q{Generates ODF files, given a template (.odt) and data, replacing tags}
s.email = %q{sandrods@gmail.com}
s.has_rdoc = false
s.homepage = %q{http://sandrods.github.com/odf-report/}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Generates ODF files, given a template (.odt) and data, replacing tags}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency('rubyzip', "~> 0.9.4")
s.add_runtime_dependency('nokogiri', "~> 1.5.0")
end