forked from ruport/ruport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruport.gemspec
45 lines (30 loc) · 1.47 KB
/
ruport.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'ruport/version'
Gem::Specification.new do |s|
s.name = %q{ruport}
s.homepage = %q{http://github.com/ruport/ruport}
s.version = Ruport::VERSION
s.authors = ["Gregory Brown", "Mike Milner", "Andrew France"]
s.summary = %q{A generalized Ruby report generation and templating engine.}
s.description = %q{Ruby Reports is a software library that aims to make the task of reporting
less tedious and painful. It provides tools for data acquisition,
database interaction, formatting, and parsing/munging.
}
s.email = %q{[email protected]}
s.files = `git ls-files -- {lib,examples,test,util}/*`.split("\n") + %w[AUTHORS COPYING HACKING LICENSE README.rdoc Rakefile]
s.test_files = `git ls-files -- {examples,test}/*`.split("\n")
s.extra_rdoc_files = %w[LICENSE README.rdoc]
s.require_paths = %w[lib]
s.rdoc_options = ['--title', 'Ruport Documentation', '--main', 'README.rdoc', '-q']
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<fastercsv>, [">= 0"]) if RUBY_VERSION < "1.9"
s.add_runtime_dependency(%q<pdf-writer>, ["= 1.1.8"])
s.add_runtime_dependency(%q<prawn>, ["= 0.12.0"])
else
s.add_dependency(%q<fastercsv>, [">= 0"]) if RUBY_VERSION < "1.9"
s.add_dependency(%q<pdf-writer>, ["= 1.1.8"])
s.add_runtime_dependency(%q<prawn>, ["= 0.12.0"])
end
s.add_development_dependency(%q<rake>)
end