-
Notifications
You must be signed in to change notification settings - Fork 0
/
boxxspring-workers.gemspec
33 lines (23 loc) · 1.14 KB
/
boxxspring-workers.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path( "../lib", __FILE__ )
require 'boxxspring-worker-version'
Gem::Specification.new do | gem |
gem.version = Boxxspring::Worker::VERSION
gem.license = 'MS-RL'
gem.name = 'boxxspring-workers'
gem.summary = "Bedrocket Media Ventrures Boxxspring Worker framework."
gem.description = "The boxxspring workers gem is implements the framework used to construct boxxspring workers."
gem.homepage = "http://bedrocket.com"
gem.authors = [ "Kristoph Cichocki-Romanov" ]
gem.email = "[email protected]"
gem.require_paths = [ 'lib' ]
gem.files = Dir.glob( "{lib}/**/*" )
gem.add_runtime_dependency( "unimatrix" )
gem.add_runtime_dependency( "aws-sdk", "~> 2" )
gem.add_runtime_dependency( "cloudwatchlogger", "~> 0.1.1" )
gem.add_runtime_dependency( "boxxspring", "~> 2" )
gem.add_runtime_dependency( "redis", "~> 3.2.1" )
gem.add_runtime_dependency( "remote_syslog_logger", "~> 1.0" )
gem.add_development_dependency( "pry", "~> 0.10" )
gem.add_development_dependency( "pry-byebug", "~> 3.1" )
end