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
|
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'date'
require 'gruff/version'
Gem::Specification.new do |s|
s.name = %q{gruff}
s.version = Gruff::VERSION
s.authors = ['Geoffrey Grosenbach', 'Uwe Kubosch']
s.date = Date.today.to_s
s.description = %q{Beautiful graphs for one or multiple datasets. Can be used on websites or in documents.}
s.email = %q{boss@topfunky.com}
s.files = `git ls-files`.split($/).reject{|f| f =~ /^test#{File::ALT_SEPARATOR || File::SEPARATOR}output/}
s.homepage = %q{https://github.com/topfunky/gruff}
s.require_paths = %w(lib)
s.summary = %q{Beautiful graphs for one or multiple datasets.}
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
s.specification_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
if defined? JRUBY_VERSION
s.platform = 'java'
s.add_dependency 'rmagick4j', '>= 0.3.9'
else
s.add_dependency 'rmagick', '>= 2.13.4'
end
s.add_development_dependency('rake')
s.add_development_dependency('test-unit')
s.license = 'MIT'
end
|