malloc 0.2.5 → 1.0.0

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.
Files changed (4) hide show
  1. data/README.md +4 -0
  2. data/Rakefile +4 -3
  3. metadata +3 -3
  4. data/README +0 -2
@@ -0,0 +1,4 @@
1
+ Malloc
2
+ ======
3
+ This Ruby extension defines the class {Hornetseye::Malloc}. {Hornetseye::Malloc.new} allows you to allocate memory, using {Hornetseye::Malloc#+} one can do pointer manipulation, and {Hornetseye::Malloc#read} and {Hornetseye::Malloc#write} provide reading Ruby strings from memory and writing Ruby strings to memory.
4
+
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake/packagetask'
6
6
  require 'rbconfig'
7
7
 
8
8
  PKG_NAME = 'malloc'
9
- PKG_VERSION = '0.2.5'
9
+ PKG_VERSION = '1.0.0'
10
10
  CXX = ENV[ 'CXX' ] || 'g++'
11
11
  STRIP = ENV[ 'STRIP' ] || 'strip'
12
12
  RB_FILES = FileList[ 'lib/**/*.rb' ]
@@ -15,9 +15,9 @@ HH_FILES = FileList[ 'ext/*.hh' ]
15
15
  TC_FILES = FileList[ 'test/tc_*.rb' ]
16
16
  TS_FILES = FileList[ 'test/ts_*.rb' ]
17
17
  SO_FILE = "ext/#{PKG_NAME}.so"
18
- PKG_FILES = [ 'Rakefile', 'README', 'COPYING', '.document' ] +
18
+ PKG_FILES = [ 'Rakefile', 'README.md', 'COPYING', '.document' ] +
19
19
  RB_FILES + CC_FILES + HH_FILES + TS_FILES + TC_FILES
20
- BIN_FILES = [ 'README', 'COPYING', '.document', SO_FILE ] +
20
+ BIN_FILES = [ 'README.md', 'COPYING', '.document', SO_FILE ] +
21
21
  RB_FILES + TS_FILES + TC_FILES
22
22
  SUMMARY = %q{Object for raw memory allocation and pointer operations}
23
23
  DESCRIPTION = %q{This Ruby extension defines the class Hornetseye::Malloc. Hornetseye::Malloc#new allows you to allocate memory, using Hornetseye::Malloc#+ one can do pointer manipulation, and Hornetseye::Malloc#read and Hornetseye::Malloc#write provide reading Ruby strings from memory and writing Ruby strings to memory.}
@@ -128,6 +128,7 @@ begin
128
128
  s.test_files = TC_FILES
129
129
  s.require_paths = [ 'lib', 'ext' ]
130
130
  s.rubyforge_project = %q{hornetseye}
131
+ s.add_development_dependency %q{rake}
131
132
  s.has_rdoc = 'yard'
132
133
  s.extra_rdoc_files = []
133
134
  s.rdoc_options = %w{--no-private}
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.2.5
4
+ version: 1.0.0
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: 2010-01-14 00:00:00 +00:00
12
+ date: 2010-03-02 00:00:00 +00:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -23,7 +23,7 @@ extra_rdoc_files: []
23
23
 
24
24
  files:
25
25
  - Rakefile
26
- - README
26
+ - README.md
27
27
  - COPYING
28
28
  - .document
29
29
  - lib/malloc_ext.rb
data/README DELETED
@@ -1,2 +0,0 @@
1
- This Ruby extension defines the class Hornetseye::Malloc. Hornetseye::Malloc#new allows you to allocate memory, using Hornetseye::Malloc#+ one can do pointer manipulation, and Hornetseye::Malloc#read and Hornetseye::Malloc#write provide reading Ruby strings from memory and writing Ruby strings to memory.
2
-