sciruby-full 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +5 -0
- data/CONTRIBUTING.md +6 -3
- data/README.md +17 -11
- data/sciruby-full.gemspec +27 -3
- metadata +145 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0bd010d7a2f53606cace8d949c09c8c7acf69b4
|
4
|
+
data.tar.gz: e36ae336095980ce56291afb960fa00bde72c24c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3bfef5bad343550f6c8260067e95377c858a3204e70472a5b2e1234d1fdadbb68b8ca0d10309af9d072423e42871040e2a92dcd9ccba33aca53e82d5a5a21d5
|
7
|
+
data.tar.gz: 125e0f21c33df869c76c411f9ebcbe681b47e81d6edf721d9f1e70c997db0646787474b3f077c055edc178fc34a429707540efab241ffc3370008a328eaef648
|
data/CHANGES
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -6,13 +6,14 @@ This guide covers way in which you can contribute.
|
|
6
6
|
|
7
7
|
There are various ways in which you can improve SciRuby. Coding and documentation are the two primary possibilities and participate in the [mailing list][mailing-list] -- suggesting ideas and changes is very important!
|
8
8
|
|
9
|
-
Apart from adding features and functionality, you can also create tests
|
9
|
+
Apart from adding features and functionality, you can also create tests, guides on how to do something using SciRuby, document the libraries and help find and fix bugs.
|
10
10
|
|
11
|
-
Start by visiting our [issue tracker](https://github.com/SciRuby/sciruby/issues?state=open)
|
11
|
+
Start by visiting our [issue tracker](https://github.com/SciRuby/sciruby/issues?state=open) and the
|
12
|
+
[status list of the various gems](http://gems.sciruby.com). If you want to start contributing, there's probably something with which you can help.
|
12
13
|
|
13
14
|
## Projects
|
14
15
|
|
15
|
-
SciRuby is an umbrella for many other projects in Ruby.
|
16
|
+
SciRuby is an umbrella for many other projects in Ruby. The most important one at the time is [NMatrix][nmatrix], as it's very hard to create some scientific library that doesn't need a good numerical linear algebra library to deal with vectors and matrices.
|
16
17
|
|
17
18
|
So, the SciRuby subprojects are, in no particular order:
|
18
19
|
|
@@ -21,6 +22,7 @@ So, the SciRuby subprojects are, in no particular order:
|
|
21
22
|
- [Distribution][distribution]: Diverse statistical distributions. Uses C (statistics2/GSL) or Java extensions when available.
|
22
23
|
- [Integration][integration]: Integration methods.
|
23
24
|
- [Minimization][minimization]: Various minimization algorithms in pure Ruby.
|
25
|
+
- [IRuby][iruby]: Ruby kernel for the IPython/Jupyter notebook
|
24
26
|
|
25
27
|
## Documentation
|
26
28
|
|
@@ -43,4 +45,5 @@ Before commiting any code, you *MUST* read our [Contributor Agreement](http://gi
|
|
43
45
|
[distribution]: https://github.com/SciRuby/distribution
|
44
46
|
[integration]: https://github.com/SciRuby/integration
|
45
47
|
[minimization]: https://github.com/SciRuby/minimization
|
48
|
+
[iruby]: https://github.com/SciRuby/iruby
|
46
49
|
[rdoc]: http://rdoc.rubyforge.org/
|
data/README.md
CHANGED
@@ -4,34 +4,40 @@ Tools for Scientific Computing in Ruby
|
|
4
4
|
|
5
5
|
* [Website](http://sciruby.com)
|
6
6
|
* [NMatrix](http://github.com/SciRuby/nmatrix)
|
7
|
-
* [List of gems](
|
8
|
-
* [Travis
|
7
|
+
* [List of scientific gems](http://gems.sciruby.com)
|
8
|
+
* [Travis CI](https://travis-ci.org/SciRuby/sciruby)
|
9
9
|
|
10
10
|
## Description
|
11
11
|
|
12
|
-
This gem acts as a meta gem which provides collects multiple scientific gems, including numeric and visualization libraries.
|
12
|
+
This gem acts as a meta gem which provides collects multiple [scientific gems](http://gems.sciruby.com), including numeric and visualization libraries.
|
13
13
|
|
14
14
|
## Getting started
|
15
15
|
|
16
16
|
Installation:
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
~~~
|
19
|
+
gem install sciruby
|
20
|
+
gem install sciruby-full
|
21
|
+
~~~
|
20
22
|
|
21
23
|
If you want to have a full-blown installation, install `sciruby-full`.
|
22
24
|
|
23
25
|
Start a notebook server:
|
24
26
|
|
25
|
-
|
27
|
+
~~~
|
28
|
+
iruby notebook
|
29
|
+
~~~
|
26
30
|
|
27
31
|
Enter commands:
|
28
32
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
+
~~~ ruby
|
34
|
+
require 'sciruby'
|
35
|
+
# Scientific gems are auto loaded, you can use them directly!
|
36
|
+
plot = Nyaplot::Plot.new
|
37
|
+
sc = plot.add(:scatter, [0,1,2,3,4], [-1,2,-3,4,-5])
|
38
|
+
~~~
|
33
39
|
|
34
|
-
Take a look at [gems.yml](gems.yml) or the [list of gems](
|
40
|
+
Take a look at [gems.yml](gems.yml) or the [list of gems](http://gems.sciruby.com) for interesting gems which are included in `sciruby-full`.
|
35
41
|
|
36
42
|
## License
|
37
43
|
|
data/sciruby-full.gemspec
CHANGED
@@ -1,3 +1,27 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
require File.expand_path(File.join(__FILE__, '..', 'scripts', 'helper.rb'))
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = __FILE__.sub('.gemspec', '')
|
5
|
+
s.date = Date.today.to_s
|
6
|
+
s.version = SciRuby::VERSION
|
7
|
+
s.authors = ['SciRuby Development Team']
|
8
|
+
s.email = ['sciruby-dev@googlegroups.com']
|
9
|
+
s.license = 'BSD'
|
10
|
+
s.homepage = 'http://sciruby.com'
|
11
|
+
s.summary =
|
12
|
+
s.description = "Scientific gems for Ruby#{__FILE__ =~ /full/ ? ' (Full installation)' : ''}"
|
13
|
+
|
14
|
+
if __FILE__ =~ /full/
|
15
|
+
s.files = %w(CHANGES CONTRIBUTING.md README.md LICENSE sciruby-full.gemspec)
|
16
|
+
|
17
|
+
s.add_runtime_dependency 'sciruby', "= #{SciRuby::VERSION}"
|
18
|
+
Helper.sciruby_gems(true).each {|gem| s.add_runtime_dependency gem[:name], *gem[:version] }
|
19
|
+
else
|
20
|
+
s.files = `git ls-files`.split($/)
|
21
|
+
s.files.delete 'sciruby-full.gemspec'
|
22
|
+
|
23
|
+
m = "Please consider installing 'sciruby-full' or the following gems:\n"
|
24
|
+
Helper.sciruby_gems(false).each {|gem| m << " * #{gem[:name]} - #{gem[:description]}\n" }
|
25
|
+
s.post_install_message = m << "\n"
|
26
|
+
end
|
27
|
+
end
|
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.
|
4
|
+
version: 0.2.5
|
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-
|
11
|
+
date: 2015-06-21 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.
|
19
|
+
version: 0.2.5
|
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.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: ai4r
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +66,34 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '1.6'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bibsync
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bibtex-ruby
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '4.0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '4.0'
|
69
97
|
- !ruby/object:Gem::Dependency
|
70
98
|
name: bio
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,6 +234,34 @@ dependencies:
|
|
206
234
|
- - "~>"
|
207
235
|
- !ruby/object:Gem::Version
|
208
236
|
version: '2.6'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: gruff
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - "~>"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '0.6'
|
244
|
+
type: :runtime
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - "~>"
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: '0.6'
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: histogram
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - "~>"
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '0.2'
|
258
|
+
type: :runtime
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - "~>"
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '0.2'
|
209
265
|
- !ruby/object:Gem::Dependency
|
210
266
|
name: integration
|
211
267
|
requirement: !ruby/object:Gem::Requirement
|
@@ -234,6 +290,48 @@ dependencies:
|
|
234
290
|
- - "~>"
|
235
291
|
- !ruby/object:Gem::Version
|
236
292
|
version: '0.2'
|
293
|
+
- !ruby/object:Gem::Dependency
|
294
|
+
name: liblinear-ruby
|
295
|
+
requirement: !ruby/object:Gem::Requirement
|
296
|
+
requirements:
|
297
|
+
- - "~>"
|
298
|
+
- !ruby/object:Gem::Version
|
299
|
+
version: '0.0'
|
300
|
+
type: :runtime
|
301
|
+
prerelease: false
|
302
|
+
version_requirements: !ruby/object:Gem::Requirement
|
303
|
+
requirements:
|
304
|
+
- - "~>"
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
version: '0.0'
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: measurable
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - "~>"
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: '0.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.0'
|
321
|
+
- !ruby/object:Gem::Dependency
|
322
|
+
name: mikon
|
323
|
+
requirement: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - "~>"
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '0.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.0'
|
237
335
|
- !ruby/object:Gem::Dependency
|
238
336
|
name: minimization
|
239
337
|
requirement: !ruby/object:Gem::Requirement
|
@@ -276,6 +374,48 @@ dependencies:
|
|
276
374
|
- - "~>"
|
277
375
|
- !ruby/object:Gem::Version
|
278
376
|
version: '0.1'
|
377
|
+
- !ruby/object:Gem::Dependency
|
378
|
+
name: omoikane
|
379
|
+
requirement: !ruby/object:Gem::Requirement
|
380
|
+
requirements:
|
381
|
+
- - "~>"
|
382
|
+
- !ruby/object:Gem::Version
|
383
|
+
version: '0.0'
|
384
|
+
type: :runtime
|
385
|
+
prerelease: false
|
386
|
+
version_requirements: !ruby/object:Gem::Requirement
|
387
|
+
requirements:
|
388
|
+
- - "~>"
|
389
|
+
- !ruby/object:Gem::Version
|
390
|
+
version: '0.0'
|
391
|
+
- !ruby/object:Gem::Dependency
|
392
|
+
name: parallel
|
393
|
+
requirement: !ruby/object:Gem::Requirement
|
394
|
+
requirements:
|
395
|
+
- - "~>"
|
396
|
+
- !ruby/object:Gem::Version
|
397
|
+
version: '1.6'
|
398
|
+
type: :runtime
|
399
|
+
prerelease: false
|
400
|
+
version_requirements: !ruby/object:Gem::Requirement
|
401
|
+
requirements:
|
402
|
+
- - "~>"
|
403
|
+
- !ruby/object:Gem::Version
|
404
|
+
version: '1.6'
|
405
|
+
- !ruby/object:Gem::Dependency
|
406
|
+
name: phys-units
|
407
|
+
requirement: !ruby/object:Gem::Requirement
|
408
|
+
requirements:
|
409
|
+
- - "~>"
|
410
|
+
- !ruby/object:Gem::Version
|
411
|
+
version: '0.9'
|
412
|
+
type: :runtime
|
413
|
+
prerelease: false
|
414
|
+
version_requirements: !ruby/object:Gem::Requirement
|
415
|
+
requirements:
|
416
|
+
- - "~>"
|
417
|
+
- !ruby/object:Gem::Version
|
418
|
+
version: '0.9'
|
279
419
|
- !ruby/object:Gem::Dependency
|
280
420
|
name: plotrb
|
281
421
|
requirement: !ruby/object:Gem::Requirement
|
@@ -509,3 +649,4 @@ signing_key:
|
|
509
649
|
specification_version: 4
|
510
650
|
summary: Scientific gems for Ruby (Full installation)
|
511
651
|
test_files: []
|
652
|
+
has_rdoc:
|