rinruby 2.0.3 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/.travis.yml +24 -0
- data/Gemfile +4 -0
- data/History.txt +47 -4
- data/Manifest.txt +2 -0
- data/{README.txt → README.md} +27 -18
- data/Rakefile +1 -2
- data/lib/rinruby.rb +271 -217
- data/lib/rinruby_without_r_constant.rb +24 -0
- data/lib/version.rb +3 -0
- data/rinruby.gemspec +24 -0
- data/spec/rinruby_spec.rb +212 -125
- data/spec/rinruby_without_r_constant_spec.rb +9 -0
- data/spec/spec_helper.rb +16 -4
- metadata +59 -59
- data/.gemtest +0 -0
metadata
CHANGED
@@ -1,117 +1,117 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rinruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
5
|
-
prerelease:
|
4
|
+
version: 2.1.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- David Dahl
|
8
|
+
- Scott Crawford
|
9
9
|
- Claudio Bustos
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2018-08-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: rake
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
18
|
requirements:
|
20
|
-
- -
|
19
|
+
- - ">="
|
21
20
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
21
|
+
version: '0'
|
23
22
|
type: :development
|
24
23
|
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
25
|
requirements:
|
28
|
-
- -
|
26
|
+
- - ">="
|
29
27
|
- !ruby/object:Gem::Version
|
30
|
-
version: '
|
28
|
+
version: '0'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rspec
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '2.11'
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2.11'
|
31
43
|
- !ruby/object:Gem::Dependency
|
32
44
|
name: hoe
|
33
45
|
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
46
|
requirements:
|
36
|
-
- -
|
47
|
+
- - ">="
|
37
48
|
- !ruby/object:Gem::Version
|
38
|
-
version: '
|
49
|
+
version: '0'
|
39
50
|
type: :development
|
40
51
|
prerelease: false
|
41
52
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
53
|
requirements:
|
44
|
-
- -
|
54
|
+
- - ">="
|
45
55
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
47
|
-
description:
|
48
|
-
making R'
|
56
|
+
version: '0'
|
57
|
+
description: RinRuby is a Ruby library that integrates the R interpreter in Ruby,
|
58
|
+
making R's statistical routines and graphics available within Ruby. The library
|
49
59
|
consists of a single Ruby script that is simple to install and does not require
|
50
|
-
any special compilation or installation of R.
|
60
|
+
any special compilation or installation of R. Since the library is 100% pure Ruby,
|
51
61
|
it works on a variety of operating systems, Ruby implementations, and versions of
|
52
|
-
R. RinRuby'
|
62
|
+
R. RinRuby's methods are simple, making for readable code. The {website [rinruby.ddahl.org]}[http://rinruby.ddahl.org]
|
53
63
|
describes RinRuby usage, provides comprehensive documentation, gives several examples,
|
54
|
-
and discusses RinRuby'
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
Copyright 2005-2008 David B. Dahl
|
59
|
-
|
60
|
-
|
61
|
-
Developed by David B. Dahl
|
62
|
-
|
63
|
-
Documented by David B. Dahl and Scott Crawford
|
64
|
-
|
65
|
-
Homepage: http://rinruby.ddahl.org
|
66
|
-
|
67
|
-
|
68
|
-
Contributors: Claudio Bustos'
|
64
|
+
and discusses RinRuby's implementation.
|
69
65
|
email:
|
70
|
-
-
|
71
|
-
-
|
66
|
+
- rinruby@ddahl.org
|
67
|
+
- scott@ddahl.org
|
68
|
+
- clbustos@gmail.com
|
72
69
|
executables: []
|
73
70
|
extensions: []
|
74
|
-
extra_rdoc_files:
|
75
|
-
- History.txt
|
76
|
-
- LICENSE.txt
|
77
|
-
- Manifest.txt
|
78
|
-
- README.txt
|
71
|
+
extra_rdoc_files: []
|
79
72
|
files:
|
73
|
+
- ".gitignore"
|
74
|
+
- ".travis.yml"
|
75
|
+
- Gemfile
|
80
76
|
- History.txt
|
81
77
|
- LICENSE.txt
|
82
78
|
- Manifest.txt
|
83
|
-
- README.
|
79
|
+
- README.md
|
84
80
|
- Rakefile
|
85
81
|
- lib/rinruby.rb
|
82
|
+
- lib/rinruby_without_r_constant.rb
|
83
|
+
- lib/version.rb
|
84
|
+
- rinruby.gemspec
|
86
85
|
- spec/rinruby_spec.rb
|
86
|
+
- spec/rinruby_without_r_constant_spec.rb
|
87
87
|
- spec/spec.opts
|
88
88
|
- spec/spec_helper.rb
|
89
|
-
|
90
|
-
|
91
|
-
|
89
|
+
homepage: http://rinruby.ddahl.org
|
90
|
+
licenses:
|
91
|
+
- Copyright 2005-2008 David B. Dahl
|
92
|
+
metadata: {}
|
92
93
|
post_install_message:
|
93
|
-
rdoc_options:
|
94
|
-
- --main
|
95
|
-
- README.txt
|
94
|
+
rdoc_options: []
|
96
95
|
require_paths:
|
97
96
|
- lib
|
98
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
-
none: false
|
100
98
|
requirements:
|
101
|
-
- -
|
99
|
+
- - ">="
|
102
100
|
- !ruby/object:Gem::Version
|
103
101
|
version: '0'
|
104
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
103
|
requirements:
|
107
|
-
- -
|
104
|
+
- - ">="
|
108
105
|
- !ruby/object:Gem::Version
|
109
106
|
version: '0'
|
110
107
|
requirements: []
|
111
|
-
rubyforge_project:
|
112
|
-
rubygems_version:
|
108
|
+
rubyforge_project:
|
109
|
+
rubygems_version: 2.6.11
|
113
110
|
signing_key:
|
114
|
-
specification_version:
|
115
|
-
summary: RinRuby is a Ruby library that integrates the R interpreter in Ruby
|
116
|
-
|
117
|
-
|
111
|
+
specification_version: 4
|
112
|
+
summary: RinRuby is a Ruby library that integrates the R interpreter in Ruby
|
113
|
+
test_files:
|
114
|
+
- spec/rinruby_spec.rb
|
115
|
+
- spec/rinruby_without_r_constant_spec.rb
|
116
|
+
- spec/spec.opts
|
117
|
+
- spec/spec_helper.rb
|
data/.gemtest
DELETED
File without changes
|