forked from SciRuby/daru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daru.gemspec
70 lines (57 loc) · 2.47 KB
/
daru.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# coding: utf-8
$:.unshift File.expand_path("../lib", __FILE__)
require 'daru/version.rb'
Daru::DESCRIPTION = <<MSG
Daru (Data Analysis in RUby) is a library for analysis, manipulation and visualization
of data. Daru works seamlessly accross interpreters and leverages interpreter-specific
optimizations whenever they are available.
It is the default data storage gem for all the statsample gems (glm, timeseries, etc.)
and can be used with many others like mixed_models, gnuplotrb, nyaplot and iruby.
MSG
Gem::Specification.new do |spec|
spec.name = 'daru'
spec.version = Daru::VERSION
spec.authors = ['Sameer Deshmukh']
spec.email = ['sameer.deshmukh93@gmail.com']
spec.summary = %q{Data Analysis in RUby}
spec.description = Daru::DESCRIPTION
spec.homepage = "http://github.com/v0dro/daru"
spec.license = 'BSD-2'
spec.files = `git ls-files -z`.split("\x0")
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.post_install_message = <<-EOF
*************************************************************************
Thank you for installing daru!
oOOOOOo
,| oO
//| |
\\\\| |
`| |
`-----`
Hope you love daru! For enhanced interactivity and better visualizations,
consider using gnuplotrb and nyaplot with iruby. For statistics use the
statsample family.
Read the README for interesting use cases and examples.
Cheers!
*************************************************************************
EOF
spec.add_runtime_dependency 'reportbuilder', '~> 1.4'
spec.add_runtime_dependency 'spreadsheet', '~> 1.1.1'
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'rake', '~>10.5'
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rserve-client', '~> 0.3'
spec.add_development_dependency 'rspec', '~> 3.4'
spec.add_development_dependency 'awesome_print'
spec.add_development_dependency 'nyaplot', '~> 0.1.5'
spec.add_development_dependency 'nmatrix', '~> 0.2.1'
spec.add_development_dependency 'distribution', '~> 0.7'
spec.add_development_dependency 'rb-gsl', '~>1.16'
spec.add_development_dependency 'dbd-sqlite3'
spec.add_development_dependency 'dbi'
spec.add_development_dependency 'activerecord', '~> 4.0'
spec.add_development_dependency 'sqlite3'
end