This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 162
/
deployinator.gemspec
38 lines (34 loc) · 1.65 KB
/
deployinator.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
37
38
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'deployinator/version'
Gem::Specification.new do |gem|
gem.name = "etsy-deployinator"
gem.version = Deployinator::VERSION
gem.authors = ["JPaul"]
gem.email = ["[email protected]"]
gem.description = %q{Deployinator as a Gem}
gem.summary = %q{Rewrite of deployinator to be a gem}
gem.homepage = "http://github.com/etsy/Deployinator"
gem.licenses = ["MIT"]
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 1.9.3'
gem.add_development_dependency "mocha", "~> 0.14"
gem.add_development_dependency "test-unit", ">= 3"
gem.add_development_dependency "rdoc", "~> 4.2"
gem.add_runtime_dependency "rake", "~> 10", ">= 10.3.2"
gem.add_runtime_dependency "json", "~> 1.8"
gem.add_runtime_dependency "mustache", "~> 0.99"
# pony pulls in mail >2.0. mail 3.0 needs ruby 2 or greater. to maintain ruby 1.9 compat we're pinning mail here
gem.add_runtime_dependency "mail", "2.6.3"
gem.add_runtime_dependency "pony", "~> 1.5"
gem.add_runtime_dependency "tlsmail", "~> 0.0"
gem.add_runtime_dependency "eventmachine", "~> 1.0", ">= 1.0.4"
gem.add_runtime_dependency "eventmachine-tail", "~> 0.6", ">= 0.6.5"
gem.add_runtime_dependency "em-websocket", "~> 0.5", ">= 0.5.1"
gem.add_runtime_dependency "sinatra", "~> 1.4", ">=1.4.3"
gem.add_runtime_dependency "celluloid", "~> 0.16"
end