rinruby 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/spec/spec.opts ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ -f s
@@ -0,0 +1,17 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ require 'rinruby'
4
+ require 'spec'
5
+ require 'spec/autorun'
6
+
7
+ require 'matrix'
8
+
9
+ Spec::Runner.configure do |config|
10
+
11
+ end
12
+
13
+ class String
14
+ def deindent
15
+ gsub /^[ \t]*/, ''
16
+ end
17
+ end
metadata CHANGED
@@ -1,54 +1,120 @@
1
1
  --- !ruby/object:Gem::Specification
2
- required_ruby_version: !ruby/object:Gem::Requirement
3
- requirements:
4
- - - '>='
5
- - !ruby/object:Gem::Version
6
- version: "0"
7
- version:
8
- email: rinruby@ddahl.org
9
- cert_chain: []
10
-
11
- summary: Accessing the R interpreter from pure Ruby
12
- post_install_message:
13
- extra_rdoc_files: []
14
-
15
- homepage: http://rinruby.ddahl.org
16
- signing_key:
17
2
  name: rinruby
18
- rdoc_options: []
19
-
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.0
5
+ platform: ruby
6
+ authors:
7
+ - David Dahl
8
+ - Claudio Bustos
20
9
  autorequire:
21
- rubyforge_project: rinruby
22
- executables: []
10
+ bindir: bin
11
+ cert_chain:
12
+ - |
13
+ -----BEGIN CERTIFICATE-----
14
+ MIIDMjCCAhqgAwIBAgIBADANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhjbGJ1
15
+ c3RvczEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
16
+ MB4XDTEwMDMyOTIxMzg1NVoXDTExMDMyOTIxMzg1NVowPzERMA8GA1UEAwwIY2xi
17
+ dXN0b3MxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
18
+ bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf8JVMGqE7m5kYb+PNN
19
+ neZv2pcXV5fQCi6xkyG8bi2/SIFy/LyxuvLzEeOxBeaz1Be93bayIUquOIqw3dyw
20
+ /KXWa31FxuNuvAm6CN8fyeRYX/ou4cw3OIUUnIvB7RMNIu4wbgeM6htV/QEsNLrv
21
+ at1/mh9JpqawPrcjIOVMj4BIp67vmzJCaUf+S/H2uYtSO09F+YQE3tv85TPeRmqU
22
+ yjyXyTc/oJiw1cXskUL8UtMWZmrwNLHXuZWWIMzkjiz3UNdhJr/t5ROk8S2WPznl
23
+ 0bMy/PMIlAbqWolRn1zl2VFJ3TaXScbqImY8Wf4g62b/1ZSUlGrtnLNsCYXrWiso
24
+ UPUCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFGu9
25
+ rrJ1H64qRmNNu3Jj/Qjvh0u5MA0GCSqGSIb3DQEBBQUAA4IBAQCV0Unka5isrhZk
26
+ GjqSDqY/6hF+G2pbFcbWUpjmC8NWtAxeC+7NGV3ljd0e1SLfoyBj4gnFtFmY8qX4
27
+ K02tgSZM0eDV8TpgFpWXzK6LzHvoanuahHLZEtk/+Z885lFene+nHadkem1n9iAB
28
+ cs96JO9/JfFyuXM27wFAwmfHCmJfPF09R4VvGHRAvb8MGzSVgk2i06OJTqkBTwvv
29
+ JHJdoyw3+8bw9RJ+jLaNoQ+xu+1pQdS2bb3m7xjZpufml/m8zFCtjYM/7qgkKR8z
30
+ /ZZt8lCiKfFArppRrZayE2FVsps4X6WwBdrKTMZ0CKSXTRctbEj1BAZ67eoTvBBt
31
+ rpP0jjs0
32
+ -----END CERTIFICATE-----
23
33
 
24
- description:
25
- specification_version: 2
34
+ date: 2010-04-26 00:00:00 -04:00
26
35
  default_executable:
36
+ dependencies:
37
+ - !ruby/object:Gem::Dependency
38
+ name: rubyforge
39
+ type: :development
40
+ version_requirement:
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 2.0.4
46
+ version:
47
+ - !ruby/object:Gem::Dependency
48
+ name: hoe
49
+ type: :development
50
+ version_requirement:
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: 2.6.0
56
+ version:
57
+ description: |-
58
+ RinRuby is a Ruby library that integrates the R interpreter in Ruby, making R's statistical routines and graphics available within Ruby. The library consists of a single Ruby script that is simple to install and does not require any special compilation or installation of R. Since the library is 100% pure Ruby, it works on a variety of operating systems, Ruby implementations, and versions of R. RinRuby's methods are simple, making for readable code. The {website [rinruby.ddahl.org]}[http://rinruby.ddahl.org] describes RinRuby usage, provides comprehensive documentation, gives several examples, and discusses RinRuby's implementation.
59
+
60
+
61
+ Copyright 2005-2008 David B. Dahl
62
+
63
+ Developed by David B. Dahl
64
+ Documented by David B. Dahl and Scott Crawford
65
+ Homepage: http://rinruby.ddahl.org
66
+
67
+ Contributors: Claudio Bustos
68
+ email:
69
+ - rinruby_AT_ddahl.org
70
+ - clbustos_AT_gmail.com
71
+ executables: []
72
+
73
+ extensions: []
74
+
75
+ extra_rdoc_files:
76
+ - History.txt
77
+ - LICENSE.txt
78
+ - Manifest.txt
79
+ - README.txt
27
80
  files:
81
+ - History.txt
82
+ - LICENSE.txt
83
+ - Manifest.txt
84
+ - README.txt
85
+ - Rakefile
28
86
  - lib/rinruby.rb
87
+ - spec/rinruby_spec.rb
88
+ - spec/spec.opts
89
+ - spec/spec_helper.rb
90
+ has_rdoc: true
91
+ homepage: http://rinruby.ddahl.org/
92
+ licenses: []
93
+
94
+ post_install_message:
95
+ rdoc_options:
96
+ - --main
29
97
  - README.txt
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: "0"
105
+ version:
30
106
  required_rubygems_version: !ruby/object:Gem::Requirement
31
107
  requirements:
32
- - - '>='
108
+ - - ">="
33
109
  - !ruby/object:Gem::Version
34
110
  version: "0"
35
111
  version:
36
- extensions: []
112
+ requirements: []
37
113
 
38
- rubygems_version: 1.2.0
39
- requirements:
40
- - R (http://www.r-project.org), an environment for statistical computing and graphics
41
- authors:
42
- - David B. Dahl
43
- date: 2008-11-27 06:00:00 +00:00
44
- platform: ruby
114
+ rubyforge_project: rinruby
115
+ rubygems_version: 1.3.5
116
+ signing_key:
117
+ specification_version: 3
118
+ summary: RinRuby is a Ruby library that integrates the R interpreter in Ruby, making R's statistical routines and graphics available within Ruby
45
119
  test_files: []
46
120
 
47
- version: !ruby/object:Gem::Version
48
- version: 1.1.1
49
- require_paths:
50
- - lib
51
- dependencies: []
52
-
53
- bindir: bin
54
- has_rdoc: true
metadata.gz.sig ADDED
Binary file