-
Notifications
You must be signed in to change notification settings - Fork 10
/
nimbus.gemspec
26 lines (20 loc) · 993 Bytes
/
nimbus.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
# encoding: utf-8
require File.expand_path "#{File.dirname(__FILE__)}/lib/nimbus/version"
Gem::Specification.new do |s|
s.name = 'nimbus'
s.version = Nimbus::VERSION
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Random Forest algorithm for Genomics"
s.description = "Nimbus is a Ruby gem to implement Random Forest in a genomic selection context."
s.authors = ['Juanjo Bazán', 'Oscar González Recio']
s.email = ["[email protected]"]
s.homepage = 'http://nimbusgem.org'
s.license = "MIT"
s.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
s.files = %w(MIT-LICENSE.txt README.md CONTRIBUTING.md CODE_OF_CONDUCT.md) + Dir.glob("{spec,lib/**/*}") & `git ls-files -z`.split("\0")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency("rspec", "~> 3.12")
end