rVM 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rvm/classes/block.rb +2 -2
- data/lib/rvm/classes/error.rb +1 -1
- data/lib/rvm/classes/list.rb +13 -0
- data/lib/rvm/functions.rb +2 -2
- data/lib/rvm/functions/array/at.rb +22 -0
- data/lib/rvm/functions/array/size.rb +22 -0
- data/lib/rvm/functions/logic/or.rb +2 -2
- data/lib/rvm/interpreter.rb +63 -34
- data/lib/rvm/languages/ecma.rb +389 -343
- data/lib/rvm/plugin.rb +1 -1
- metadata +4 -2
data/lib/rvm/plugin.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rVM
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Heinz N. Gies
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-07-
|
12
|
+
date: 2008-07-11 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -37,7 +37,9 @@ files:
|
|
37
37
|
- lib/rvm/functions/all.rb
|
38
38
|
- lib/rvm/functions/array
|
39
39
|
- lib/rvm/functions/array/append.rb
|
40
|
+
- lib/rvm/functions/array/at.rb
|
40
41
|
- lib/rvm/functions/array/set_at.rb
|
42
|
+
- lib/rvm/functions/array/size.rb
|
41
43
|
- lib/rvm/functions/array.rb
|
42
44
|
- lib/rvm/functions/general
|
43
45
|
- lib/rvm/functions/general/cmp.rb
|