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: 520dd233806924fc5d79d893d64d43bfc4179ffa
4
- data.tar.gz: 1f6b7965fe802a7b8d0f16d58035f5734877f390
3
+ metadata.gz: c558f3859bda208baa71099d5ec085fa853d45e4
4
+ data.tar.gz: a6428c0622f9f8dddd0e27da64fbb7bfc8190557
5
5
  SHA512:
6
- metadata.gz: e6fa695fa6721b0b5f777493704fb2b591e862344b432a1e636e9a5383d940fe9261759d17e17fea6cccc7d21095799e6cc8c542c7403e5c73f18aa6cbae97e5
7
- data.tar.gz: be746f644ce2a57d16f471c960e4b117f7bd855cd0bb6cb46b79800e2b0d69df1d7e92421a71819e52f72a915faa41291239511a1916f57340833a30cf65a32e
6
+ metadata.gz: 73ae2ad2e56e7c881296c09e28528831d068d3f612b18cab52d5de1c0bdf8e6bbfabb77a12ed80f472680bd05fdbedca2d69452550a03c59a0203d35c3f2ed17
7
+ data.tar.gz: 33212cd87c6820c5fe30609e757f7ecd1fb68b5bbcb94fd2b1e8d522280f361512de50868060d76e03ac9097d8e40ae1c8f76b4d4bd6805719664514f58a30b5
@@ -348,7 +348,7 @@ module Rubinius::ToolSet.current::TS
348
348
  parser.input string
349
349
  transforms.each { |x| parser.enable_transform x }
350
350
 
351
- compiler.generator.processor TestGenerator
351
+ compiler.generator.processor Rubinius::TestGenerator
352
352
 
353
353
  compiler.run
354
354
  end
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Rubinius::ToolSet.current::TS
2
2
  module Compiler
3
- VERSION = "2.0.0"
3
+ VERSION = "2.0.1"
4
4
  end
5
5
  end
@@ -1,4 +1,5 @@
1
1
  # coding: utf-8
2
+ require 'rubinius/toolset'
2
3
  require './lib/rubinius/compiler/version'
3
4
 
4
5
  Gem::Specification.new do |spec|
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.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-14 00:00:00.000000000 Z
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.6
87
+ rubygems_version: 2.0.7
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: Rubinius bytecode compiler.