rootapp-rinruby 3.0.0
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.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/.travis.yml +16 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +33 -0
- data/History.txt +26 -0
- data/LICENSE.txt +646 -0
- data/Manifest.txt +9 -0
- data/README.md +21 -0
- data/Rakefile +9 -0
- data/lib/rinruby/version.rb +3 -0
- data/lib/rinruby.rb +739 -0
- data/rootapp-rinruby.gemspec +33 -0
- data/spec/rinruby_spec.rb +172 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +28 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3674c751b6e2bab3092c78749e1a9903eec21aaf
|
4
|
+
data.tar.gz: c09d463dac52f838b3404a021840a3e0f0b013c2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8cae525aa4896f7b1290668738d7cd1e30b3b1b774018e0d66d0ead236a937d0c6dca78d9ed12ce33497115f079b2a038f482de83cec265daacc67ee3378e180
|
7
|
+
data.tar.gz: 6502bc046bdf5dae42825169cde211d36b0bdcb8fb5f264b7dd66ffe6316ad6753642b3c0e1a2c7f0e76d9da6fc5563011b3d1c3bad25d09ff282faad33bfcf1
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rinruby (2.0.3)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.2.5)
|
10
|
+
rake (10.3.2)
|
11
|
+
rspec (3.0.0)
|
12
|
+
rspec-core (~> 3.0.0)
|
13
|
+
rspec-expectations (~> 3.0.0)
|
14
|
+
rspec-mocks (~> 3.0.0)
|
15
|
+
rspec-core (3.0.2)
|
16
|
+
rspec-support (~> 3.0.0)
|
17
|
+
rspec-expectations (3.0.2)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.0.0)
|
20
|
+
rspec-mocks (3.0.2)
|
21
|
+
rspec-support (~> 3.0.0)
|
22
|
+
rspec-support (3.0.2)
|
23
|
+
|
24
|
+
PLATFORMS
|
25
|
+
ruby
|
26
|
+
|
27
|
+
DEPENDENCIES
|
28
|
+
rake
|
29
|
+
rinruby!
|
30
|
+
rspec
|
31
|
+
|
32
|
+
BUNDLED WITH
|
33
|
+
1.12.4
|
data/History.txt
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
=== 2.0.3 / 2012-07-31
|
2
|
+
* Update README.txt
|
3
|
+
|
4
|
+
=== 2.0.2 / 2011-02-03
|
5
|
+
|
6
|
+
* Updated RSpec to 2.0. Should work on Windows [clbustos]
|
7
|
+
* 64-bit version is in x64 [Rob Heittman]
|
8
|
+
* Adapt to different Rterm.exe locations [Rob Heittman]
|
9
|
+
|
10
|
+
=== 2.0.1 / 2010-05-01
|
11
|
+
* Reimplemented Rinruby.new with ordered parameters, for complete backwards compatibility
|
12
|
+
|
13
|
+
=== 2.0.0 / 2010-04-26
|
14
|
+
* Changed RinRuby initialize, with option Hash instead of ordered parameters.
|
15
|
+
|
16
|
+
=== 1.2.0 / 2010-04-23
|
17
|
+
|
18
|
+
* Fixed to works on Ruby 1.9
|
19
|
+
* Pull and push of Matrixes
|
20
|
+
* Faster implementation using functions on R sended at beginning of session
|
21
|
+
* Regression tests and specifications via RSpec
|
22
|
+
|
23
|
+
=== 1.1.1 / 2008
|
24
|
+
|
25
|
+
* Last official version on RubyForge
|
26
|
+
|