-
Notifications
You must be signed in to change notification settings - Fork 9
/
histogram.gemspec
34 lines (29 loc) · 1.07 KB
/
histogram.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'histogram/version'
Gem::Specification.new do |spec|
spec.name = "histogram"
spec.version = Histogram::VERSION
spec.authors = ["John T. Prince"]
spec.email = ["[email protected]"]
spec.description = %q{gives objects the ability to 'histogram' in several useful ways}
spec.summary = %q{histograms data in different ways}
spec.homepage = "https://github.com/jtprince/histogram"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
[ "bundler ~> 1.3",
"rake ~> 10.1.0",
"simplecov ~> 0.7.1",
"rspec ~> 2.13.0",
"rdoc"
].each do |argline|
spec.add_development_dependency *argline.split(' ', 2).compact
end
unless RUBY_PLATFORM =~ /java/
spec.add_development_dependency "narray"
end
end