forked from colinsurprenant/redstorm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
redstorm.gemspec
27 lines (22 loc) · 1.03 KB
/
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
libdir = File.expand_path('../lib/', __FILE__)
$:.unshift libdir unless $:.include?(libdir)
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.license = "Apache 2.0"
s.rubyforge_project = 'redstorm'
s.files = Dir.glob("{lib/**/*}") + Dir.glob("{ivy/*.xml}") + Dir.glob("{examples/**/*}") + Dir.glob("{src/**/*.java}") + Dir.glob("{bin/**/*}") + %w(redstorm.gemspec Rakefile README.md CHANGELOG.md LICENSE.md)
s.require_paths = ['lib']
s.bindir = 'bin'
s.executables = ['redstorm']
s.add_development_dependency 'rspec', '~> 2.13'
s.add_development_dependency 'rspec-mocks', '~> 2.13'
s.add_development_dependency 'pry'
s.add_runtime_dependency 'rake'
end