malloc 1.3.1 → 1.3.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.
Files changed (2) hide show
  1. data/Rakefile +2 -2
  2. metadata +2 -2
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/loaders/makefile'
7
7
  require 'rbconfig'
8
8
 
9
9
  PKG_NAME = 'malloc'
10
- PKG_VERSION = '1.3.1'
10
+ PKG_VERSION = '1.3.2'
11
11
  CXX = ENV[ 'CXX' ] || 'g++'
12
12
  STRIP = ENV[ 'STRIP' ] || 'strip'
13
13
  RB_FILES = FileList[ 'lib/**/*.rb' ]
@@ -46,7 +46,7 @@ task :all => [ SO_FILE ]
46
46
 
47
47
  file SO_FILE => OBJ do |t|
48
48
  sh "#{CXX} -shared -o #{t.name} #{OBJ} #{$LIBRUBYARG}"
49
- sh "#{STRIP} --strip-all #{t.name}"
49
+ sh "#{STRIP} #{t.name}"
50
50
  end
51
51
 
52
52
  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
- - 1
9
- version: 1.3.1
8
+ - 2
9
+ version: 1.3.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jan Wedekind