-
Notifications
You must be signed in to change notification settings - Fork 23
/
cfhighlander.gemspec
36 lines (32 loc) · 1.52 KB
/
cfhighlander.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
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 = '[email protected]'
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', '~>1.2', '<2'
s.add_runtime_dependency 'cfndsl', '~> 1.3', '<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_runtime_dependency 'rexml', '~>3.2', '<4'
s.add_development_dependency 'rspec', '~> 3.7'
s.required_ruby_version = '>= 3.1'
end