-
Notifications
You must be signed in to change notification settings - Fork 8
/
snap_deploy.gemspec
30 lines (26 loc) · 1.29 KB
/
snap_deploy.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'snap_deploy/version'
Gem::Specification.new do |spec|
spec.name = "snap_deploy"
spec.version = SnapDeploy::VERSION
spec.authors = ["Snap CI"]
spec.email = ["[email protected]"]
spec.summary = %q{Deploy your application in a Snap}
spec.description = %q{A simple rubygem to help continuously deploy your application}
spec.homepage = "https://snap-ci.com"
spec.license = "MIT"
spec.files = `git ls-files`.split($\) + Dir["bundle/**/*"] - Dir["**/*.gem"] + Dir['bin/*'] - Dir["bundle/ruby/2.0.0/gems/*/{spec,test,specs,tests,examples,doc,doc-api,benchmarks,benchmark,feature,features}/**/*"]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '~> 2.2'
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_runtime_dependency 'ansi'
spec.add_runtime_dependency "clamp"
spec.add_runtime_dependency "aws-sdk", '1.53.0'
spec.add_runtime_dependency "mime-types"
spec.add_runtime_dependency "heroics"
spec.add_runtime_dependency "rendezvous"
end