forked from sirupsen/sysvmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsysvmq.gemspec
22 lines (19 loc) · 851 Bytes
/
sysvmq.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "sysvmq"
spec.version = '0.2.3'
spec.authors = ["Simon Eskildsen"]
spec.email = ["[email protected]"]
spec.summary = %q{Ruby wrapper for SysV Message Queues}
spec.description = %q{Ruby wrapper for SysV Message Queues}
spec.homepage = "https://github.com/Sirupsen/sysvmq"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extensions = ["ext/extconf.rb"]
end