sciruby-full 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +5 -0
  3. data/Gemfile +5 -31
  4. data/README.rdoc +7 -1
  5. data/gems.yml +63 -0
  6. metadata +5 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fd9529da5eb32ddbb107c5d6cf6e794abc0bea82
4
- data.tar.gz: 6cee1dfd519b6736ee040d3684305779c6b98f83
3
+ metadata.gz: 722553b5d325d82e95f7bff362269cb4d05b5b33
4
+ data.tar.gz: 19d8f6ca3d7a790125304ccedfe96479413fbf9e
5
5
  SHA512:
6
- metadata.gz: 50992c1c09eeb5c38fc8c494eb69055b511ed9a311c701e3eb0f484a8899f4e2aeeb08b73b176e6a718d7734690243354887e9481c1ded05a26868d6073bda16
7
- data.tar.gz: 9c76671917b8f64fda106087721a25abd8be351c4a1ef8016acb04e94cd8de2851f0ba54b79d4a7c5e245a320b5b5e20746ca1d08dc2ff1a33a45e5b411d61f4
6
+ metadata.gz: 07c07d324a569c898ba950b841c5c62a53e6add9d705cdeffa73bf1587d73d40e30ebb5281db97ff2d003235314c62bae3d793d18da0a8a2889f92853f43c718
7
+ data.tar.gz: e3bd367855b668f1aa40e940015706c269ad255164e88d83dc5f516d561690504a7fd697d464820eb0e145b73b4b232bbfa5ea00998d394246a148360675085a
data/CHANGES CHANGED
@@ -1,3 +1,8 @@
1
+ 0.2.2 (2015-06-09)
2
+
3
+ * Add SciRuby::Gems and SciRuby.gems
4
+ * SciRuby libraries can be autoloaded
5
+
1
6
  0.2.1 (2015-06-08)
2
7
 
3
8
  * Initial release as a meta gem
data/Gemfile CHANGED
@@ -1,34 +1,8 @@
1
- # This file specifies all gems which are installed by the `sciruby-full` gem or recommended by the `sciruby` gem.
1
+ $: << File.join(File.dirname(__FILE__), 'lib')
2
+ require 'sciruby'
2
3
 
3
4
  source 'https://rubygems.org'
4
5
 
5
- gem 'nmatrix'
6
- gem 'gsl-nmatrix'
7
-
8
- gem 'rubyvis'
9
- gem 'nyaplot'
10
- gem 'plotrb'
11
- gem 'gnuplot'
12
-
13
- gem 'iruby'
14
- gem 'pry'
15
- gem 'awesome_print'
16
-
17
- gem 'daru'
18
-
19
- gem 'integration'
20
- gem 'minimization'
21
- gem 'distribution'
22
-
23
- gem 'statsample'
24
- gem 'statsample-glm'
25
- gem 'statsample-bivariate-extension'
26
- #gem 'statsample-timeseries' # currently not working because of activesupport dependency
27
- gem 'extendmatrix'
28
-
29
- gem 'publisci'
30
-
31
- gem 'ai4r'
32
-
33
- # from the bioruby project
34
- gem 'bio'
6
+ SciRuby.gems.all.each do |name, options|
7
+ gem name, *options[:version], require: options[:require].first
8
+ end
data/README.rdoc CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  Tools for Scientific Computing in Ruby
4
4
 
5
- * {Installation}[https://github.com/SciRuby/sciruby/wiki/Installation]
6
5
  * {Website}[http://sciruby.com]
7
6
  * {Google+}[https://plus.google.com/109304769076178160953/posts]
8
7
  * {NMatrix}[http://github.com/SciRuby/nmatrix]
@@ -13,6 +12,13 @@ Ruby has for some time had no equivalent to the beautifully constructed numpy, s
13
12
 
14
13
  We are not the first with this idea, but we are trying to bring it to life.
15
14
 
15
+ == Installation
16
+
17
+ gem install sciruby
18
+ gem install sciruby-full
19
+
20
+ See also the {guide in the wiki}[https://github.com/SciRuby/sciruby/wiki/Installation].
21
+
16
22
  == License
17
23
 
18
24
  Copyright (c) 2010 onward, The Ruby Science Foundation.
data/gems.yml ADDED
@@ -0,0 +1,63 @@
1
+ # Specify all gems which are installed by the `sciruby-full` gem or recommended by the `sciruby` gem.
2
+
3
+ nmatrix:
4
+ description: 'Numerical matrix library'
5
+ module: [NMatrix, NVector]
6
+ gsl-nmatrix:
7
+ description: 'Bindings for the GNU scientific library'
8
+ require: gsl
9
+ module: GSL
10
+
11
+ rubyvis:
12
+ description: 'Plotting library'
13
+ nyaplot:
14
+ description: 'Plotting library'
15
+ plotrb:
16
+ description: 'Plotting library'
17
+ gnuplot:
18
+ description: 'Plotting library'
19
+
20
+ iruby:
21
+ module: IRuby
22
+ description: 'Ruby kernel for Jupyter'
23
+ pry:
24
+ module: Pry
25
+ description: 'Ruby repl'
26
+ awesome_print:
27
+ module: ~
28
+ description: 'Pretty object printing'
29
+
30
+ daru:
31
+ description: 'Dataframe library'
32
+
33
+ integration:
34
+ description: 'Numerical integration'
35
+ minimization:
36
+ description: 'Numerical minimization'
37
+ distribution:
38
+ description: 'Statistical distributions'
39
+
40
+ statsample:
41
+ descriptions: 'Statistics'
42
+ statsample-glm:
43
+ descriptions: 'Statistics'
44
+ module: ~
45
+ statsample-bivariate-extension:
46
+ descriptions: 'Statistics'
47
+ module: ~
48
+ #statsample-timeseries: # currently not working because of activesupport dependency
49
+ # descriptions: 'Statistics'
50
+ # module: ~
51
+ extendmatrix:
52
+ description: 'Helper methods for Matrix'
53
+ module: ~
54
+
55
+ publisci:
56
+ description: 'Publishing toolkit'
57
+ module: PubliSci
58
+
59
+ ai4r:
60
+ description: 'Artificial intelligence'
61
+
62
+ bio:
63
+ description: 'Bioinformatics suite'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sciruby-full
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - SciRuby Development Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-08 00:00:00.000000000 Z
11
+ date: 2015-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sciruby
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.2.1
19
+ version: 0.2.2
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.1
26
+ version: 0.2.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: nmatrix
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -317,6 +317,7 @@ files:
317
317
  - Gemfile
318
318
  - LICENSE.txt
319
319
  - README.rdoc
320
+ - gems.yml
320
321
  - sciruby-full.gemspec
321
322
  homepage: http://sciruby.com
322
323
  licenses: