forked from reidmorrison/jruby-jms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjruby-jms.gemspec
More file actions
21 lines (19 loc) · 844 Bytes
/
jruby-jms.gemspec
File metadata and controls
21 lines (19 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path("../lib", __FILE__)
# Maintain gem's version:
require 'jms/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'jruby-jms'
spec.version = JMS::VERSION
spec.platform = 'java'
spec.authors = ['Reid Morrison']
spec.email = ['reidmo@gmail.com']
spec.homepage = 'https://github.com/reidmorrison/jruby-jms'
spec.summary = 'JRuby interface into JMS'
spec.description = 'JRuby-JMS is a Java and Ruby library that exposes the Java JMS API in a ruby friendly way. For JRuby only.'
spec.files = FileList["./**/*"].exclude('*.gem', './nbproject/*').map{|f| f.sub(/^\.\//, '')}
spec.test_files = Dir["test/**/*"]
spec.license = "Apache License V2.0"
spec.has_rdoc = true
spec.add_dependency 'gene_pool'
end