-
Notifications
You must be signed in to change notification settings - Fork 42
/
squid.gemspec
26 lines (21 loc) · 1.12 KB
/
squid.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'squid/version'
Gem::Specification.new do |spec|
spec.name = 'squid'
spec.version = Squid::VERSION
spec.authors = ['claudiob']
spec.email = ['claudiob@gmail.com']
spec.summary = %q{Generates graphs in PDF files.}
spec.description = %q{Squid expands Prawn providing method to easily draw graphs in PDF files.}
spec.homepage = 'https://github.com/fullscreen/squid'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.2.0' # support for 2.1 has ended
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'matrix', '>= 0.1.0' # no longer a default gem as of 3.1
spec.add_dependency 'prawn', '~> 2.2'
spec.add_dependency 'activesupport', '>= 4.0' # 3.2 does not have ActiveSupport::NumberHelper#number_to_rounded
end