-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathrinruby.gemspec
23 lines (19 loc) · 1.5 KB
/
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
# coding: utf-8
require_relative 'lib/rinruby/version'
Gem::Specification.new do |spec|
spec.name = "rinruby"
spec.version = RinRuby::VERSION
spec.authors = ["David Dahl", "Scott Crawford", "Claudio Bustos"]
spec.summary = %q{RinRuby is a Ruby library that integrates the R interpreter in Ruby}
spec.description = %q{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.}
spec.homepage = "http://rinruby.ddahl.org"
spec.license = "GPL-3.0"
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", ">= 3.0"
spec.add_development_dependency "simplecov"
end