wilson 1.1.0 → 1.1.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.
- data.tar.gz.sig +3 -4
- data/History.txt +10 -0
- data/Rakefile +8 -4
- data/lib/wilson.rb +5 -2
- data/test/test_wilson.rb +2 -2
- metadata +4 -4
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
KyԆ�P?oҖ�<��s-nE���j�[u��̝x�t-����QK41�-��M2O'd;�&d`�w=�z��x�,Y~��y��������>�� �}s �N!�v�ń�sy����NT$V�Q��[��Z��w��
|
1
|
+
%��9AL���ꦂB����#�Lx�� Bۑ{P���[H=����pc�;[S>͍4Z�!�r�����F#�1�07g���Dܤm��ؤ5r�~�v#%r� �g��0������-(
|
2
|
+
�|vWjȤ�y�����b����=���T�%偵�z�Q�>J���s>,�q�l{@;<!Dn�6�/o
|
3
|
+
��~#�����(�#��B���s}�Vj�"rZ>�����+�߽m
|
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -2,11 +2,15 @@
|
|
2
2
|
|
3
3
|
require 'rubygems'
|
4
4
|
require 'hoe'
|
5
|
-
require './lib/wilson.rb'
|
6
5
|
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
Hoe.plugin :seattlerb
|
7
|
+
|
8
|
+
h = Hoe.spec 'wilson' do
|
9
|
+
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
|
10
|
+
|
11
|
+
self.rubyforge_name = 'seattlerb'
|
12
|
+
|
13
|
+
multiruby_skip << '1.9'
|
10
14
|
end
|
11
15
|
|
12
16
|
namespace :test do
|
data/lib/wilson.rb
CHANGED
@@ -31,7 +31,7 @@ end
|
|
31
31
|
# Smalltalk SuperPowers at OOPSLA 2008.
|
32
32
|
|
33
33
|
module Wilson
|
34
|
-
VERSION = '1.1.
|
34
|
+
VERSION = '1.1.1'
|
35
35
|
|
36
36
|
##
|
37
37
|
# Assembler parses the NASM documentation and creates Command
|
@@ -1125,12 +1125,15 @@ module Wilson
|
|
1125
1125
|
end
|
1126
1126
|
end # module Wilson
|
1127
1127
|
|
1128
|
+
require 'rbconfig'
|
1129
|
+
|
1128
1130
|
module Ruby
|
1129
1131
|
extend DL::Importable
|
1130
1132
|
|
1131
1133
|
typealias "VALUE", "unsigned long", proc { |v| v.object_id << 1 }
|
1132
1134
|
|
1133
|
-
|
1135
|
+
dir = File.join(Config::CONFIG["prefix"], "lib")
|
1136
|
+
dlload File.join(dir, "libruby.dylib")
|
1134
1137
|
|
1135
1138
|
extern "void rb_define_method(VALUE, char*, void*, int)"
|
1136
1139
|
end
|
data/test/test_wilson.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
require '
|
2
|
+
require 'minitest/autorun'
|
3
3
|
require 'wilson'
|
4
4
|
|
5
5
|
class X
|
@@ -18,7 +18,7 @@ class X
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
-
class TestWilson <
|
21
|
+
class TestWilson < MiniTest::Unit::TestCase
|
22
22
|
# MachineCodeX86Test initialize-release
|
23
23
|
|
24
24
|
def setup
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wilson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Davis
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
FBHgymkyj/AOSqKRIpXPhjC6
|
31
31
|
-----END CERTIFICATE-----
|
32
32
|
|
33
|
-
date: 2009-
|
33
|
+
date: 2009-06-23 00:00:00 -07:00
|
34
34
|
default_executable:
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
@@ -41,7 +41,7 @@ dependencies:
|
|
41
41
|
requirements:
|
42
42
|
- - ">="
|
43
43
|
- !ruby/object:Gem::Version
|
44
|
-
version:
|
44
|
+
version: 2.3.0
|
45
45
|
version:
|
46
46
|
description: |-
|
47
47
|
Wilson is a pure ruby x86 assembler. No, really. Worst Idea Evar.
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
requirements: []
|
95
95
|
|
96
96
|
rubyforge_project: seattlerb
|
97
|
-
rubygems_version: 1.3.
|
97
|
+
rubygems_version: 1.3.4
|
98
98
|
signing_key:
|
99
99
|
specification_version: 3
|
100
100
|
summary: Wilson is a pure ruby x86 assembler
|
metadata.gz.sig
CHANGED
Binary file
|