-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstacker.gemspec
34 lines (27 loc) · 1.1 KB
/
stacker.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
$LOAD_PATH.unshift File.expand_path '../lib', __FILE__
require 'stacker/version'
Gem::Specification.new do |s|
s.name = 'stacker'
s.version = Stacker::VERSION
s.summary = 'Easily assemble CloudFormation stacks.'
s.description = 'Stacker helps you assemple and manage CloudFormation stacks and dependencies.'
s.license = 'MIT'
s.files = Dir['lib/**/*']
s.executables = Dir['bin/*'].map{ |f| File.basename(f) }
s.has_rdoc = false
s.authors = ['Cotap, Inc.']
s.email = %w[martin@cotap.com evan@cotap.com]
s.homepage = 'https://github.com/cotap/stacker'
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'activesupport', '~> 4.0'
s.add_dependency 'aws-sdk', '~> 1.25'
s.add_dependency 'coderay', '~> 1.1'
s.add_dependency 'diffy', '~> 3.0'
s.add_dependency 'indentation', '~> 0.0'
s.add_dependency 'jsonlint', '~> 0.2.0'
s.add_dependency 'memoist', '~> 0.14'
s.add_dependency 'rainbow', '~> 1.1'
s.add_dependency 'thor', '~> 0.18'
s.add_development_dependency 'rake', '~> 10.4'
s.add_development_dependency 'rspec', '~> 2.99'
end