mall.git  about / heads / tags
access the mallinfo(3) and mallopt(3) functions from Ruby
blob d4b9eab66bddf11a503f203234e4d85f96a33f22 676 bytes (raw)
$ git show HEAD:mall.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
 
manifest = File.exist?('.manifest') ?
  IO.readlines('.manifest').map!(&:chomp!) : `git ls-files`.split("\n")

Gem::Specification.new do |s|
  s.name = %q{mall}
  s.version = (ENV["VERSION"] || '1.0.2').dup
  s.authors = ["#{name} hackers"]
  s.description = File.read('README').split("\n\n")[1]
  s.email = %q{mall@yhbt.net}
  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
    File.exist?(f)
  end
  s.require_paths = %w(ext)
  s.files = manifest
  s.homepage = 'https://yhbt.net/mall/'
  s.summary =  'access malloc tuning/reporting functions + glibc extras'
  s.test_files = Dir["test/test_*.rb"]
  s.extensions = %w(ext/mall/extconf.rb)
end

git clone https://yhbt.net/mall.git