rubinius-compiler 2.0.0 → 2.0.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c558f3859bda208baa71099d5ec085fa853d45e4
|
|
4
|
+
data.tar.gz: a6428c0622f9f8dddd0e27da64fbb7bfc8190557
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73ae2ad2e56e7c881296c09e28528831d068d3f612b18cab52d5de1c0bdf8e6bbfabb77a12ed80f472680bd05fdbedca2d69452550a03c59a0203d35c3f2ed17
|
|
7
|
+
data.tar.gz: 33212cd87c6820c5fe30609e757f7ecd1fb68b5bbcb94fd2b1e8d522280f361512de50868060d76e03ac9097d8e40ae1c8f76b4d4bd6805719664514f58a30b5
|
|
@@ -134,7 +134,7 @@ module Rubinius::ToolSet.current::TS
|
|
|
134
134
|
stack = 0
|
|
135
135
|
|
|
136
136
|
while i < n
|
|
137
|
-
insn = InstructionSet[stream[i]]
|
|
137
|
+
insn = Rubinius::InstructionSet[stream[i]]
|
|
138
138
|
printf "[%3d] %04d %-28s" % [stack, i, insn.opcode.inspect]
|
|
139
139
|
|
|
140
140
|
args = stream[i+1, insn.size-1]
|
|
@@ -619,7 +619,7 @@ module Rubinius::ToolSet.current::TS
|
|
|
619
619
|
|
|
620
620
|
def send_with_splat(meth, args, priv=false, concat=false)
|
|
621
621
|
val = 0
|
|
622
|
-
val |= InstructionSet::CALL_FLAG_CONCAT if concat
|
|
622
|
+
val |= Rubinius::InstructionSet::CALL_FLAG_CONCAT if concat
|
|
623
623
|
set_call_flags val unless val == 0
|
|
624
624
|
|
|
625
625
|
allow_private if priv
|
data/rubinius-compiler.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubinius-compiler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Shirai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
86
|
rubyforge_project:
|
|
87
|
-
rubygems_version: 2.0.
|
|
87
|
+
rubygems_version: 2.0.7
|
|
88
88
|
signing_key:
|
|
89
89
|
specification_version: 4
|
|
90
90
|
summary: Rubinius bytecode compiler.
|