-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson-odf-report.gemspec
26 lines (21 loc) · 1007 Bytes
/
json-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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "json-odf-report/version"
Gem::Specification.new do |s|
s.name = %q{json-odf-report}
s.version = JODFReport::VERSION
s.authors = ["Shawn Ning"]
s.description = %q{Generates ODF files, given a template (.odt) and a json object, replacing tags by the data in json}
s.email = %q{[email protected]}
#s.has_rdoc = false
s.homepage = %q{http://railty.github.com/json-odf-report/}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Generates ODF files, using an ODT template and a json object, replacing tags by the data in json}
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', "~> 1.2.2")
s.add_runtime_dependency('zip-zip', "~> 0.3.0")
s.add_runtime_dependency('nokogiri', ">= 1.10.2")
end