forked from theonestack/cfhighlander
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcfhighlander.gemspec
More file actions
33 lines (30 loc) · 1.43 KB
/
cfhighlander.gemspec
File metadata and controls
33 lines (30 loc) · 1.43 KB
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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rake'
require "cfhighlander.version"
Gem::Specification.new do |s|
s.name = 'cfhighlander'
s.version = Cfhighlander::VERSION
s.version = "#{s.version}.alpha.#{Time.now.getutc.to_i}" if ENV['TRAVIS'] and ENV['TRAVIS_BRANCH'] != 'master'
s.summary = 'DSL on top of cfndsl. Manage libraries of cloudformation components'
s.description = ''
s.authors = [ 'Nikola Tosic', 'Aaron Walker', 'Angus Vine']
s.email = 'theonestackcfhighlander@gmail.com'
s.files = FileList['cfndsl_ext/**/*', 'hl_ext/*', 'templates/*.erb', 'lib/**/*.rb', 'bin/*', 'README.md']
s.homepage = 'https://github.com/theonestack/cfhighlander/blob/master/README.md'
s.license = 'MIT'
s.executables << 'cfhighlander'
s.executables << 'cfcompile'
s.executables << 'cfpublish'
s.add_runtime_dependency 'highline', '>=1.7.10','<1.8'
s.add_runtime_dependency 'thor', '~>0.20', '<1'
s.add_runtime_dependency 'cfndsl', '~> 1', '<2'
s.add_runtime_dependency 'rubyzip', '>=2.0.0', '<3'
s.add_runtime_dependency 'aws-sdk-core', '~> 3','<4'
s.add_runtime_dependency 'aws-sdk-s3', '~> 1', '<2'
s.add_runtime_dependency 'aws-sdk-ec2', '~> 1', '<2'
s.add_runtime_dependency 'aws-sdk-cloudformation', '~> 1', '<2'
s.add_runtime_dependency 'git', '~> 1.4', '<2'
s.add_runtime_dependency 'duplicate','~> 1.1'
s.add_development_dependency 'rspec', '~> 3.7'
end