ruby_posix_mq.git  about / heads / tags
POSIX message queues for Ruby
blob 350ba53859f286e4fb4582d09c09749920919a01 812 bytes (raw)
$ git show HEAD:posix_mq.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
20
21
22
23
24
25
 
# -*- encoding: binary -*-
ENV["VERSION"] ||= '2.4.1'
if File.exist?('.manifest')
  manifest = IO.readlines('.manifest').map!(&:chomp!)
else
  manifest = `git ls-files`.split("\n")
end

Gem::Specification.new do |s|
  s.name = %q{posix_mq}
  s.version = ENV["VERSION"].dup
  s.authors = ["Ruby POSIX MQ hackers"]
  s.description = File.read('README').split("\n\n")[1]
  s.email = %q{ruby-posix-mq@bogomips.org}
  s.executables = %w(posix-mq-rb)
  s.extensions = %w(ext/posix_mq/extconf.rb)
  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
    File.exist?(f)
  end
  s.files = manifest
  s.homepage = 'https://bogomips.org/ruby_posix_mq/'
  s.summary = 'POSIX message queues for Ruby'
  s.test_files = manifest.grep(%r{\Atest/test_.*\.rb\z})
  s.licenses = %w(GPL-2.0 LGPL-3.0+)
end

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