malloc 1.3.2 → 1.3.3

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 (2) hide show
  1. data/Rakefile +1 -3
  2. metadata +2 -2
data/Rakefile CHANGED
@@ -7,9 +7,8 @@ require 'rake/loaders/makefile'
7
7
  require 'rbconfig'
8
8
 
9
9
  PKG_NAME = 'malloc'
10
- PKG_VERSION = '1.3.2'
10
+ PKG_VERSION = '1.3.3'
11
11
  CXX = ENV[ 'CXX' ] || 'g++'
12
- STRIP = ENV[ 'STRIP' ] || 'strip'
13
12
  RB_FILES = FileList[ 'lib/**/*.rb' ]
14
13
  CC_FILES = FileList[ 'ext/*.cc' ]
15
14
  HH_FILES = FileList[ 'ext/*.hh' ] + FileList[ 'ext/*.tcc' ]
@@ -46,7 +45,6 @@ task :all => [ SO_FILE ]
46
45
 
47
46
  file SO_FILE => OBJ do |t|
48
47
  sh "#{CXX} -shared -o #{t.name} #{OBJ} #{$LIBRUBYARG}"
49
- sh "#{STRIP} #{t.name}"
50
48
  end
51
49
 
52
50
  task :test => [ SO_FILE ]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 3
8
- - 2
9
- version: 1.3.2
8
+ - 3
9
+ version: 1.3.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jan Wedekind