sciruby-full 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +6 -0
- data/Gemfile +1 -7
- data/gems.slim +24 -0
- data/gems.yml +118 -24
- data/sciruby-full.gemspec +2 -2
- metadata +74 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6b127ab65b244a67b4b2a5369d1404d783598aa
|
4
|
+
data.tar.gz: 5a63a94b262ab9e1d7bd3ed108c0a22845208114
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad12806e45d15f8024885de3042d632cc28467c2cb0d7decc4c6f54f6466da9dfa3b79c562b9812966d7b5e8792b90b9b4867f97ce2e6fe3bae95f4aa78add28
|
7
|
+
data.tar.gz: e38b49659cfb5e3760584093c67bda0267811018d0a4a5ab873b81a09cfdf1d67601b8fb4227c4075c233c700cf59734de6d345901f53bac0faac8ed71f9b4c7
|
data/CHANGES
CHANGED
data/Gemfile
CHANGED
data/gems.slim
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
ruby:
|
2
|
+
require 'sciruby'
|
3
|
+
doctype html
|
4
|
+
html
|
5
|
+
head
|
6
|
+
title SciRuby gems
|
7
|
+
link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
|
8
|
+
body
|
9
|
+
h1 SciRuby gems
|
10
|
+
table.table.table-striped
|
11
|
+
thead
|
12
|
+
tr
|
13
|
+
th Name
|
14
|
+
th Category
|
15
|
+
th Description
|
16
|
+
th Autoloaded modules
|
17
|
+
tbody
|
18
|
+
- SciRuby.gems.each_value.sort_by {|gem| gem[:category] }.chunk {|gem| gem[:category] }.each do |cat, gems|
|
19
|
+
- gems.sort_by {|gem| gem [:name] }.each do |gem|
|
20
|
+
tr
|
21
|
+
td = gem[:name]
|
22
|
+
td = gem[:category]
|
23
|
+
td = gem[:description]
|
24
|
+
td = gem[:module].join(', ')
|
data/gems.yml
CHANGED
@@ -1,63 +1,157 @@
|
|
1
1
|
# Specify all gems which are installed by the `sciruby-full` gem or recommended by the `sciruby` gem.
|
2
2
|
|
3
3
|
nmatrix:
|
4
|
-
description:
|
5
|
-
module: [NMatrix, NVector]
|
4
|
+
description: Numerics matrix library
|
5
|
+
module: [N, NMatrix, NVector]
|
6
|
+
category: numerics
|
7
|
+
|
6
8
|
gsl-nmatrix:
|
7
|
-
description:
|
9
|
+
description: Bindings for the GNU scientific library
|
8
10
|
require: gsl
|
9
11
|
module: GSL
|
12
|
+
category: numerics
|
10
13
|
|
11
14
|
rubyvis:
|
12
|
-
description:
|
15
|
+
description: Plotting library
|
16
|
+
category: plotting
|
17
|
+
|
13
18
|
nyaplot:
|
14
|
-
description:
|
19
|
+
description: Plotting library
|
20
|
+
category: plotting
|
21
|
+
|
15
22
|
plotrb:
|
16
|
-
description:
|
23
|
+
description: Plotting library
|
24
|
+
category: plotting
|
25
|
+
|
17
26
|
gnuplot:
|
18
|
-
description:
|
27
|
+
description: Plotting library
|
28
|
+
category: plotting
|
19
29
|
|
20
30
|
iruby:
|
21
31
|
module: IRuby
|
22
|
-
description:
|
32
|
+
description: Ruby kernel for Jupyter
|
33
|
+
category: user interface
|
34
|
+
|
23
35
|
pry:
|
24
36
|
module: Pry
|
25
|
-
description:
|
37
|
+
description: Ruby repl
|
38
|
+
category: user interface
|
39
|
+
|
26
40
|
awesome_print:
|
27
41
|
module: ~
|
28
|
-
description:
|
42
|
+
description: Pretty object printing
|
43
|
+
category: utilities
|
29
44
|
|
30
45
|
daru:
|
31
|
-
description:
|
46
|
+
description: Dataframe library
|
47
|
+
category: database
|
32
48
|
|
33
49
|
integration:
|
34
|
-
description:
|
50
|
+
description: Numerical integration
|
51
|
+
category: numerics
|
52
|
+
|
35
53
|
minimization:
|
36
|
-
description:
|
54
|
+
description: Numerical minimization
|
55
|
+
category: numerics
|
56
|
+
|
37
57
|
distribution:
|
38
|
-
description:
|
58
|
+
description: Statistical distributions
|
59
|
+
category: statistics
|
39
60
|
|
40
61
|
statsample:
|
41
|
-
|
62
|
+
description: Statistics
|
63
|
+
category: statistics
|
64
|
+
|
42
65
|
statsample-glm:
|
43
|
-
|
66
|
+
description: Statistics
|
44
67
|
module: ~
|
68
|
+
category: statistics
|
69
|
+
|
45
70
|
statsample-bivariate-extension:
|
46
|
-
|
71
|
+
description: Statistics
|
47
72
|
module: ~
|
48
|
-
|
49
|
-
|
50
|
-
|
73
|
+
category: statistics
|
74
|
+
|
75
|
+
statsample-timeseries:
|
76
|
+
exclude: because of activesupport conflict
|
77
|
+
description: Statistics
|
78
|
+
module: ~
|
79
|
+
category: statistics
|
80
|
+
|
51
81
|
extendmatrix:
|
52
|
-
description:
|
82
|
+
description: Helper methods for Matrix
|
53
83
|
module: ~
|
84
|
+
category: numerics
|
54
85
|
|
55
86
|
publisci:
|
56
|
-
description:
|
87
|
+
description: Publishing toolkit
|
57
88
|
module: PubliSci
|
89
|
+
category: publishing
|
58
90
|
|
59
91
|
ai4r:
|
60
|
-
description:
|
92
|
+
description: Artificial intelligence
|
93
|
+
category: machine learning
|
61
94
|
|
62
95
|
bio:
|
63
|
-
description:
|
96
|
+
description: Bioinformatics suite
|
97
|
+
category: biology
|
98
|
+
|
99
|
+
ruby-fftw3:
|
100
|
+
module: FFTW3
|
101
|
+
exclude: because it works only with narray
|
102
|
+
description: Fast Fourier transformation
|
103
|
+
category: numerics
|
104
|
+
|
105
|
+
ruby-band:
|
106
|
+
exclude: because of dependencies
|
107
|
+
description: Data mining
|
108
|
+
category: machine learning
|
109
|
+
module: ~
|
110
|
+
|
111
|
+
classifier:
|
112
|
+
description: Machine learning
|
113
|
+
category: machine learning
|
114
|
+
|
115
|
+
stuff-classifier:
|
116
|
+
description: Machine learning
|
117
|
+
category: machine learning
|
118
|
+
module: StuffClassifier
|
119
|
+
|
120
|
+
decisiontree:
|
121
|
+
description: Machine learning
|
122
|
+
category: machine learning
|
123
|
+
module: DecisionTree
|
124
|
+
|
125
|
+
irtruby:
|
126
|
+
exclude: because of dependencies
|
127
|
+
description: Machine learning
|
128
|
+
category: machine learning
|
129
|
+
module: IRT
|
130
|
+
|
131
|
+
ruby-opencv:
|
132
|
+
description: Computer vision
|
133
|
+
exclude: because of dependencies
|
134
|
+
category: computer vision
|
135
|
+
module: OpenCV
|
136
|
+
|
137
|
+
ruby-fann:
|
138
|
+
description: Neural networks
|
139
|
+
category: machine learning
|
140
|
+
module: RubyFann
|
141
|
+
|
142
|
+
rb-libsvm:
|
143
|
+
description: Support vector machines (machine learning)
|
144
|
+
category: machine learning
|
145
|
+
module: Libsvm
|
146
|
+
|
147
|
+
sciruby:
|
148
|
+
description: SciRuby meta gem
|
149
|
+
category: meta
|
150
|
+
exclude: to avoid circular dependencies
|
151
|
+
module: ~
|
152
|
+
|
153
|
+
sciruby-full:
|
154
|
+
description: SciRuby meta gem (Full installation)
|
155
|
+
category: meta
|
156
|
+
exclude: to avoid circular dependencies
|
157
|
+
module: ~
|
data/sciruby-full.gemspec
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
SCIRUBY_FULL = true
|
2
|
-
|
1
|
+
::SCIRUBY_FULL = true
|
2
|
+
eval(File.read('sciruby.gemspec'), TOPLEVEL_BINDING, 'sciruby.gemspec')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sciruby-full
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SciRuby Development Team
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.2.
|
19
|
+
version: 0.2.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.2.
|
26
|
+
version: 0.2.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: nmatrix
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -304,6 +304,76 @@ dependencies:
|
|
304
304
|
- - ">="
|
305
305
|
- !ruby/object:Gem::Version
|
306
306
|
version: '0'
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: classifier
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - ">="
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: '0'
|
314
|
+
type: :runtime
|
315
|
+
prerelease: false
|
316
|
+
version_requirements: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - ">="
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: '0'
|
321
|
+
- !ruby/object:Gem::Dependency
|
322
|
+
name: stuff-classifier
|
323
|
+
requirement: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - ">="
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '0'
|
328
|
+
type: :runtime
|
329
|
+
prerelease: false
|
330
|
+
version_requirements: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - ">="
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: '0'
|
335
|
+
- !ruby/object:Gem::Dependency
|
336
|
+
name: decisiontree
|
337
|
+
requirement: !ruby/object:Gem::Requirement
|
338
|
+
requirements:
|
339
|
+
- - ">="
|
340
|
+
- !ruby/object:Gem::Version
|
341
|
+
version: '0'
|
342
|
+
type: :runtime
|
343
|
+
prerelease: false
|
344
|
+
version_requirements: !ruby/object:Gem::Requirement
|
345
|
+
requirements:
|
346
|
+
- - ">="
|
347
|
+
- !ruby/object:Gem::Version
|
348
|
+
version: '0'
|
349
|
+
- !ruby/object:Gem::Dependency
|
350
|
+
name: ruby-fann
|
351
|
+
requirement: !ruby/object:Gem::Requirement
|
352
|
+
requirements:
|
353
|
+
- - ">="
|
354
|
+
- !ruby/object:Gem::Version
|
355
|
+
version: '0'
|
356
|
+
type: :runtime
|
357
|
+
prerelease: false
|
358
|
+
version_requirements: !ruby/object:Gem::Requirement
|
359
|
+
requirements:
|
360
|
+
- - ">="
|
361
|
+
- !ruby/object:Gem::Version
|
362
|
+
version: '0'
|
363
|
+
- !ruby/object:Gem::Dependency
|
364
|
+
name: rb-libsvm
|
365
|
+
requirement: !ruby/object:Gem::Requirement
|
366
|
+
requirements:
|
367
|
+
- - ">="
|
368
|
+
- !ruby/object:Gem::Version
|
369
|
+
version: '0'
|
370
|
+
type: :runtime
|
371
|
+
prerelease: false
|
372
|
+
version_requirements: !ruby/object:Gem::Requirement
|
373
|
+
requirements:
|
374
|
+
- - ">="
|
375
|
+
- !ruby/object:Gem::Version
|
376
|
+
version: '0'
|
307
377
|
description: Scientific gems for Ruby (Full installation)
|
308
378
|
email:
|
309
379
|
- sciruby-dev@googlegroups.com
|
@@ -317,6 +387,7 @@ files:
|
|
317
387
|
- Gemfile
|
318
388
|
- LICENSE.txt
|
319
389
|
- README.rdoc
|
390
|
+
- gems.slim
|
320
391
|
- gems.yml
|
321
392
|
- sciruby-full.gemspec
|
322
393
|
homepage: http://sciruby.com
|