forked from drnic/s3sync
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRakefile
More file actions
21 lines (18 loc) · 742 Bytes
/
Rakefile
File metadata and controls
21 lines (18 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "cprobert-s3sync"
gem.summary = %Q{Fork of s3sync to be compatible with ruby 2.x}
gem.email = "cprobert@gmail.com"
gem.homepage = "https://github.com/cprobert/s3sync"
gem.authors = ["cprobert"]
gem.files.include FileList.new('lib/**/*.rb', "bin/*",
"History.txt", "PostInstall.txt", "VERSION", "README.rdoc", "Rakefile")
gem.executables = ["s3sync", "s3cmd"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end