forked from aleksandrs-ledovskis/capistrano-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapistrano-s3.gemspec
25 lines (23 loc) · 1.1 KB
/
capistrano-s3.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
# encoding: utf-8
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'capistrano/s3/version'
Gem::Specification.new do |s|
s.authors = ['Jean-Philippe Doyle','Josh Delsman','Aleksandrs Ļedovskis','Douglas Jarquin', 'Amit Barvaz']
s.email = ['jeanphilippe.doyle@hooktstudios.com']
s.description = 'Enables static websites deployment to Amazon S3 website buckets using Capistrano.'
s.summary = 'Build and deploy a static website to Amazon S3'
s.homepage = 'http://github.com/hooktstudios/capistrano-s3'
s.licenses = ['MIT']
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.name = 'capistrano-s3'
s.require_paths = ['lib']
s.version = Capistrano::S3::VERSION
s.cert_chain = ['certs/j15e.pem']
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
# Gem dependencies
s.add_dependency 'aws-sdk', '~> 1.11'
s.add_dependency 'capistrano', '>= 2'
s.add_dependency 'mime-types', '~> 1.23'
end