malloc 0.1.3 → 0.1.4
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/malloc.gemspec +2 -2
- metadata +5 -5
data/malloc.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require 'date'
|
|
2
2
|
Gem::Specification.new do |s|
|
|
3
3
|
s.name = %q{malloc}
|
|
4
|
-
s.version = '0.1.
|
|
4
|
+
s.version = '0.1.4'
|
|
5
5
|
# gem1.8 help platforms
|
|
6
6
|
# CURRENT, LINUX_586, WIN32, RUBY, RUBY, or DARWIN
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.description = %q{This gem defines the class Malloc. Malloc#new allows you to allocate memory, using Malloc#+ one can do pointer manipulation, and Malloc#read and Malloc#write provide reading Ruby strings from memory and writing Ruby strings to memory.}
|
|
13
13
|
s.author = %q{Jan Wedekind}
|
|
14
14
|
s.email = %q{jan@wedesoft.de}
|
|
15
|
-
s.homepage = %q{http://
|
|
15
|
+
s.homepage = %q{http://wedesoft.github.com/malloc/}
|
|
16
16
|
s.files = [ 'malloc.gemspec', 'README', 'COPYING' ] +
|
|
17
17
|
Dir.glob( 'lib/*.rb' ) +
|
|
18
18
|
Dir.glob( 'ext/*.cc' ) +
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: malloc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Wedekind
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-12-
|
|
12
|
+
date: 2009-12-03 00:00:00 +00:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -26,15 +26,15 @@ files:
|
|
|
26
26
|
- README
|
|
27
27
|
- COPYING
|
|
28
28
|
- lib/malloc_ext.rb
|
|
29
|
+
- ext/error.cc
|
|
29
30
|
- ext/malloc.cc
|
|
30
31
|
- ext/init.cc
|
|
31
|
-
- ext/error.cc
|
|
32
|
-
- ext/malloc.hh
|
|
33
32
|
- ext/error.hh
|
|
33
|
+
- ext/malloc.hh
|
|
34
34
|
- ext/extconf.rb
|
|
35
35
|
- tests/ts_malloc.rb
|
|
36
36
|
has_rdoc: true
|
|
37
|
-
homepage: http://
|
|
37
|
+
homepage: http://wedesoft.github.com/malloc/
|
|
38
38
|
licenses: []
|
|
39
39
|
|
|
40
40
|
post_install_message:
|