malloc 0.1.1 → 0.1.2
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 +4 -4
- metadata +5 -5
data/malloc.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
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.2'
|
5
5
|
# gem1.8 help platforms
|
6
6
|
# CURRENT, LINUX_586, WIN32, RUBY, RUBY, or DARWIN
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
# s.platform = 'x86-mswin32-universal'
|
9
9
|
# s.platform = Gem::Platform::WIN32
|
10
10
|
s.date = Date.today.to_s
|
11
|
-
s.summary = %q{
|
12
|
-
s.description = %q{
|
11
|
+
s.summary = %q{Object for raw memory allocation and pointer operations}
|
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
15
|
s.homepage = %q{http://www.wedesoft.demon.co.uk/hornetseye-api/files/Malloc-rb.html}
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
# s.rubyforge_project = %q{malloc}
|
27
27
|
s.extensions = %w{ext/extconf.rb}
|
28
28
|
s.has_rdoc = false
|
29
|
-
# s.extra_rdoc_files =
|
29
|
+
# s.extra_rdoc_files = [ 'README' ]
|
30
30
|
# s.rdoc_options = %w{--main README}
|
31
31
|
s.required_ruby_version = '>= 1.8.5'
|
32
32
|
s.requirements << 'GNU/Linux'
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Wedekind
|
@@ -13,7 +13,7 @@ date: 2009-12-02 00:00:00 +00:00
|
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
16
|
+
description: 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.
|
17
17
|
email: jan@wedesoft.de
|
18
18
|
executables: []
|
19
19
|
|
@@ -26,11 +26,11 @@ 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
|
@@ -61,6 +61,6 @@ rubyforge_project:
|
|
61
61
|
rubygems_version: 1.3.5
|
62
62
|
signing_key:
|
63
63
|
specification_version: 3
|
64
|
-
summary:
|
64
|
+
summary: Object for raw memory allocation and pointer operations
|
65
65
|
test_files:
|
66
66
|
- tests/ts_malloc.rb
|