This repository was archived by the owner on Jun 22, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathplotrb.gemspec
More file actions
Latest commit
27 lines (23 loc) · 1.04 KB
/
Copy pathplotrb.gemspec
File metadata and controls
27 lines (23 loc) · 1.04 KB
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.newdo |spec|
spec.name='plotrb'
spec.version=Plotrb::VERSION
spec.authors=['Zuhao Wan']
spec.email='wanzuhao@gmail.com'
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