-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcfn-flow.gemspec
32 lines (26 loc) · 965 Bytes
/
cfn-flow.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 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'cfn_flow/version'
Gem::Specification.new do |s|
s.name = 'cfn-flow'
s.version = CfnFlow::VERSION
s.license = 'MIT'
s.authors = ["Aaron Suggs"]
s.description = "A practical worflow for AWS CloudFormation"
s.email = "[email protected]"
s.files = Dir.glob("{bin,lib}/**/*") + %w(Rakefile README.md)
s.executables = ['cfn-flow']
s.homepage = 'http://github.com/kickstarter/cfn-flow'
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.summary = "A CLI for CloudFormation templates"
s.test_files = Dir.glob("spec/**/*")
s.required_ruby_version = '>= 2.2.0'
s.add_dependency 'aws-sdk', '>= 2.1.8', '~> 2.1'
s.add_dependency 'thor', '~> 0.18'
s.add_dependency 'multi_json'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
#s.add_development_dependency 'appraisal'
end