forked from clbustos/rinruby
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrootapp-rinruby.gemspec
33 lines (30 loc) · 1.49 KB
/
rootapp-rinruby.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rinruby/version'
Gem::Specification.new do |spec|
spec.name = "rootapp-rinruby"
spec.version = RinRuby::VERSION
spec.author = "ROOT devs"
spec.email = "[email protected]"
spec.summary = %q{RinRuby is a Ruby library that integrates the R interpreter in Ruby}
spec.description = <<-EOF
RinRuby is a Ruby library that integrates the R interpreter in Ruby, making
R's statistical routines and graphics available within Ruby. The library
consists of a single Ruby script that is simple to install and does not
require any special compilation or installation of R. Since the library is
100% pure Ruby, it works on a variety of operating systems, Ruby
implementations, and versions of R. RinRuby's methods are simple, making for
readable code. The {website [rinruby.ddahl.org]}[http://rinruby.ddahl.org]
describes RinRuby usage, provides comprehensive documentation, gives several
examples, and discusses RinRuby's implementation.
EOF
spec.homepage = "https://github.com/Root-App/rinruby"
spec.license = "GPLv3"
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"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end