forked from mlartz/rflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rflow.gemspec
36 lines (30 loc) · 1.31 KB
/
rflow.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rflow/version"
Gem::Specification.new do |s|
s.name = "rflow"
s.version = RFlow::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 1.9"
s.authors = ["Michael L. Artz"]
s.email = ["michael.artz@redjack.com"]
s.homepage = "https://github.com/redjack/rflow"
s.license = "Apache-2.0"
s.summary = %q{A Ruby flow-based programming framework}
s.description = %q{A Ruby flow-based programming framework that utilizes ZeroMQ for component connections and Avro for serialization}
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency "uuidtools", "~> 2.1"
s.add_dependency "log4r", "~> 1.1"
s.add_dependency "sqlite3", "~> 1.3"
s.add_dependency "activerecord", "~> 3.2"
s.add_dependency "avro", "~> 1.7.5"
s.add_dependency "em-zeromq", "~> 0.4.2"
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rspec", "~> 2.6"
s.add_development_dependency "rake", ">= 0.8.7"
s.add_development_dependency "yard", "~> 0.8.7"
end