-
Notifications
You must be signed in to change notification settings - Fork 4
/
rasper.gemspec
28 lines (24 loc) · 1.02 KB
/
rasper.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rasper/version'
Gem::Specification.new do |gem|
gem.name = "rasper"
gem.date = %q{2013-07-10}
gem.executables << 'rasper'
gem.version = Rasper::VERSION
gem.authors = ["Rodrigo Manhães"]
gem.email = ["[email protected]"]
gem.description = 'JRuby client to JasperReports API.'
gem.summary = "JRuby client to JasperReports API.\nCurrently, only does compilation of JRXML files and generation of PDF reports."
gem.homepage = "https://github.com/rodrigomanhaes/rasper"
gem.licenses = ['MIT']
gem.files = Dir.glob('lib/**/*.rb') +
%w(README.rst LICENSE.txt Rakefile Gemfile CHANGELOG)
gem.require_paths = ["lib"]
gem.add_dependency 'builder'
gem.add_dependency 'activesupport'
gem.add_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'docsplit'
end