forked from colinsurprenant/redstorm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
redstorm.gemspec
28 lines (21 loc) · 1020 Bytes
/
redstorm.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'red_storm/version'
Gem::Specification.new do |s|
s.name = "redstorm"
s.version = RedStorm::VERSION
s.authors = ["Colin Surprenant"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/colinsurprenant/redstorm"
s.summary = "JRuby on Storm"
s.description = "JRuby integration & DSL for the Storm distributed realtime computation system"
s.required_rubygems_version = ">= 1.3.0"
s.rubyforge_project = "redstorm"
s.files = Dir.glob("{lib/**/*}") + Dir.glob("{examples/**/*.rb}") + Dir.glob("{src/**/*.java}") + Dir.glob("{bin/**/*}") + %w(Rakefile pom.xml README.md CHANGELOG.md LICENSE.md TODO.md)
s.require_paths = %w[lib]
s.bindir = 'bin'
s.executables = ['redstorm']
s.add_development_dependency "rubyforge"
s.add_runtime_dependency "rake", ["~> 0.9.2"]
s.add_runtime_dependency "ruby-maven", ["~> 3.0.3.0.28.5"]
end