forked from zuhao/plotrb
-
Notifications
You must be signed in to change notification settings - Fork 6
/
plotrb.gemspec
27 lines (23 loc) · 1.04 KB
/
plotrb.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 'plotrb/version'
Gem::Specification.new do |spec|
spec.name = 'plotrb'
spec.version = Plotrb::VERSION
spec.authors = ['Zuhao Wan']
spec.email = '[email protected]'
spec.description = %q{Plotrb is a plotting tool in Ruby.}
spec.summary = %q{Plotrb is a plotting tool in Ruby, built on Vega and D3, and is part of the SciRuby Project.}
spec.homepage = 'https://github.com/sciruby/plotrb'
spec.license = 'BSD 2-clause'
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 = %w(lib)
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'yard'
spec.add_dependency 'yajl-ruby'
spec.add_dependency 'activemodel'
end