forked from reidmorrison/rubywmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubywmq.gemspec
37 lines (34 loc) · 1.26 KB
/
rubywmq.gemspec
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
26
27
28
29
30
31
32
33
34
35
36
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'wmq/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
# Exclude locally compiled files since they are platform specific
excludes = [
/lib.wmq.constants\.rb/,
/lib.wmq.constants_admin\.rb/,
/ext.wmq_structs\.c/,
/ext.wmq_reason\.c/,
/ext.Makefile/,
/ext.*\.o/,
/ext.wmq\.so/,
/\.gem$/,
/\.log$/,
/nbproject/
]
s.name = 'rubywmq'
s.version = WMQ::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Reid Morrison', 'Ajaya Agrawalla']
s.email = ['reidmo@gmail.com']
s.homepage = 'https://github.com/reidmorrison/rubywmq'
s.summary = 'Native Ruby interface into WebSphere MQ'
s.description = 'RubyWMQ is a high performance native Ruby interface into WebSphere MQ.'
s.files = Dir['./**/*'].select {|node | excludes.none? {|exclude| exclude.match?(node)}}.map { |f| f.sub(/^\.\//, '') } + ['.document']
s.test_files = Dir['test/**/*']
s.license = 'Apache-2.0'
s.has_rdoc = true
s.extensions << 'ext/extconf.rb'
s.requirements << 'WebSphere MQ v5.3, v6 or v7 Client or Server with Development Kit'
s.required_ruby_version = '>= 1.9'
end