forked from fredwu/ssync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ssync.gemspec
25 lines (22 loc) · 1.03 KB
/
ssync.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 -*-
require File.dirname(__FILE__) + "/lib/ssync/version"
Gem::Specification.new do |s|
s.name = "ssync"
s.version = Ssync::VERSION
s.date = Date.today.to_s
s.authors = ["Fred Wu", "Ryan Allen"]
s.email = ["[email protected]", "[email protected]"]
s.summary = %q{Ssync, an optimised S3 sync tool using the power of Unix!}
s.description = %q{Ssync, an optimised S3 sync tool using the power of Unix!}
s.homepage = %q{http://github.com/fredwu/ssync}
s.extra_rdoc_files = ["README.md"]
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = s.name
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency(%q<aws-s3>, ["~> 0.6.2"])
s.add_runtime_dependency(%q<thor>, ["~> 0.14.4"])
end