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.
Files changed (7) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +6 -0
  3. data/Gemfile +1 -7
  4. data/gems.slim +24 -0
  5. data/gems.yml +118 -24
  6. data/sciruby-full.gemspec +2 -2
  7. metadata +74 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 722553b5d325d82e95f7bff362269cb4d05b5b33
4
- data.tar.gz: 19d8f6ca3d7a790125304ccedfe96479413fbf9e
3
+ metadata.gz: c6b127ab65b244a67b4b2a5369d1404d783598aa
4
+ data.tar.gz: 5a63a94b262ab9e1d7bd3ed108c0a22845208114
5
5
  SHA512:
6
- metadata.gz: 07c07d324a569c898ba950b841c5c62a53e6add9d705cdeffa73bf1587d73d40e30ebb5281db97ff2d003235314c62bae3d793d18da0a8a2889f92853f43c718
7
- data.tar.gz: e3bd367855b668f1aa40e940015706c269ad255164e88d83dc5f516d561690504a7fd697d464820eb0e145b73b4b232bbfa5ea00998d394246a148360675085a
6
+ metadata.gz: ad12806e45d15f8024885de3042d632cc28467c2cb0d7decc4c6f54f6466da9dfa3b79c562b9812966d7b5e8792b90b9b4867f97ce2e6fe3bae95f4aa78add28
7
+ data.tar.gz: e38b49659cfb5e3760584093c67bda0267811018d0a4a5ab873b81a09cfdf1d67601b8fb4227c4075c233c700cf59734de6d345901f53bac0faac8ed71f9b4c7
data/CHANGES CHANGED
@@ -1,3 +1,9 @@
1
+ 0.2.3 (2015-06-09)
2
+
3
+ * Simpler SciRuby.gems api
4
+ * Added gems.yml
5
+ * Updated list of sciruby gems
6
+
1
7
  0.2.2 (2015-06-09)
2
8
 
3
9
  * Add SciRuby::Gems and SciRuby.gems
data/Gemfile CHANGED
@@ -1,8 +1,2 @@
1
- $: << File.join(File.dirname(__FILE__), 'lib')
2
- require 'sciruby'
3
-
4
1
  source 'https://rubygems.org'
5
-
6
- SciRuby.gems.all.each do |name, options|
7
- gem name, *options[:version], require: options[:require].first
8
- end
2
+ gemspec name: 'sciruby-full'
@@ -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: 'Numerical matrix library'
5
- module: [NMatrix, NVector]
4
+ description: Numerics matrix library
5
+ module: [N, NMatrix, NVector]
6
+ category: numerics
7
+
6
8
  gsl-nmatrix:
7
- description: 'Bindings for the GNU scientific library'
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: 'Plotting library'
15
+ description: Plotting library
16
+ category: plotting
17
+
13
18
  nyaplot:
14
- description: 'Plotting library'
19
+ description: Plotting library
20
+ category: plotting
21
+
15
22
  plotrb:
16
- description: 'Plotting library'
23
+ description: Plotting library
24
+ category: plotting
25
+
17
26
  gnuplot:
18
- description: 'Plotting library'
27
+ description: Plotting library
28
+ category: plotting
19
29
 
20
30
  iruby:
21
31
  module: IRuby
22
- description: 'Ruby kernel for Jupyter'
32
+ description: Ruby kernel for Jupyter
33
+ category: user interface
34
+
23
35
  pry:
24
36
  module: Pry
25
- description: 'Ruby repl'
37
+ description: Ruby repl
38
+ category: user interface
39
+
26
40
  awesome_print:
27
41
  module: ~
28
- description: 'Pretty object printing'
42
+ description: Pretty object printing
43
+ category: utilities
29
44
 
30
45
  daru:
31
- description: 'Dataframe library'
46
+ description: Dataframe library
47
+ category: database
32
48
 
33
49
  integration:
34
- description: 'Numerical integration'
50
+ description: Numerical integration
51
+ category: numerics
52
+
35
53
  minimization:
36
- description: 'Numerical minimization'
54
+ description: Numerical minimization
55
+ category: numerics
56
+
37
57
  distribution:
38
- description: 'Statistical distributions'
58
+ description: Statistical distributions
59
+ category: statistics
39
60
 
40
61
  statsample:
41
- descriptions: 'Statistics'
62
+ description: Statistics
63
+ category: statistics
64
+
42
65
  statsample-glm:
43
- descriptions: 'Statistics'
66
+ description: Statistics
44
67
  module: ~
68
+ category: statistics
69
+
45
70
  statsample-bivariate-extension:
46
- descriptions: 'Statistics'
71
+ description: Statistics
47
72
  module: ~
48
- #statsample-timeseries: # currently not working because of activesupport dependency
49
- # descriptions: 'Statistics'
50
- # module: ~
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: 'Helper methods for Matrix'
82
+ description: Helper methods for Matrix
53
83
  module: ~
84
+ category: numerics
54
85
 
55
86
  publisci:
56
- description: 'Publishing toolkit'
87
+ description: Publishing toolkit
57
88
  module: PubliSci
89
+ category: publishing
58
90
 
59
91
  ai4r:
60
- description: 'Artificial intelligence'
92
+ description: Artificial intelligence
93
+ category: machine learning
61
94
 
62
95
  bio:
63
- description: 'Bioinformatics suite'
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: ~
@@ -1,2 +1,2 @@
1
- SCIRUBY_FULL = true
2
- load 'sciruby.gemspec'
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.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.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.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