rinruby 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/rinruby.rb +2 -2
  2. metadata +2 -2
@@ -59,7 +59,7 @@
59
59
 
60
60
  class RinRuby
61
61
 
62
- VERSION = '1.1.0'
62
+ VERSION = '1.1.1'
63
63
 
64
64
  require 'socket'
65
65
 
@@ -355,7 +355,7 @@ class RinRuby
355
355
  #
356
356
  #Of course it would be confusing to use the shorthand notation to assign a variable named eval, echo, or any other already defined function. RinRuby would assume you were calling the function, rather than trying to assign a variable.
357
357
  #
358
- #Ruby supports arrays containing elements with different types, but in R all the elements of a vector must be of the same type. When assigning an array containing differing types of variables, RinRuby will follow R’s conversion conventions. An array that contains any Strings will result in a character vector in R. If the array does not contain any Strings, but it does contain a Float or a large integer (in absolute value), then the result will be a numeric vector of Doubles in R. If there are only integers that are suffciently small (in absolute value), then the result will be a numeric vector of integers in R.
358
+ #When assigning an array containing differing types of variables, RinRuby will follow R’s conversion conventions. An array that contains any Strings will result in a character vector in R. If the array does not contain any Strings, but it does contain a Float or a large integer (in absolute value), then the result will be a numeric vector of Doubles in R. If there are only integers that are suffciently small (in absolute value), then the result will be a numeric vector of integers in R.
359
359
 
360
360
  def assign(name, value)
361
361
  if assignable?(name)
metadata CHANGED
@@ -40,12 +40,12 @@ requirements:
40
40
  - R (http://www.r-project.org), an environment for statistical computing and graphics
41
41
  authors:
42
42
  - David B. Dahl
43
- date: 2008-11-17 06:00:00 +00:00
43
+ date: 2008-11-27 06:00:00 +00:00
44
44
  platform: ruby
45
45
  test_files: []
46
46
 
47
47
  version: !ruby/object:Gem::Version
48
- version: 1.1.0
48
+ version: 1.1.1
49
49
  require_paths:
50
50
  - lib
51
51
  dependencies: []