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 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
@@ -0,0 +1,3 @@
1
+ pkg
2
+ doc
3
+ *~
data/.travis.yml ADDED
@@ -0,0 +1,16 @@
1
+ language:
2
+ ruby
3
+
4
+ rvm:
5
+ - '1.8.7'
6
+ - '1.9.3'
7
+ - '2.0.0'
8
+ - '2.1.1'
9
+ - jruby-19mode
10
+ # - rbx-2.1.1
11
+ script:
12
+ bundle exec rspec
13
+
14
+ before_install:
15
+ - sudo apt-get update -qq
16
+ - sudo apt-get install -y r-base r-base-dev
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rinruby.gemspec
4
+ gemspec
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
+