Rakefile in backup-2.1.2 vs Rakefile in backup-2.2.0
- old
+ new
@@ -5,22 +5,22 @@
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "backup"
gem.summary = %Q{Backup is a gem/plugin that enables you to very easily create backups and transfer these to Amazon S3 or another server with SSH.}
gem.description = %Q{
- Backup is a Ruby Gem, written specifically for Ruby on Rails applications. This gem offers a quick and easy way
- to configure and run backups of your MySQL database (soon PostgreSQL and possibly more) and Archives (any files or folders)
- to "Amazon S3" or "any remotely accessible server using SCP". Backup handles: Compression, Archiving, Encryption and Backup Cleaning.
+ Backup is a Ruby Gem, written specifically for Ruby on Rails applications. This gem offers a quick and easy way to configure and run backups of your
+ MySQL/PostgreSQL databases (and practically even any other database you can dump through the command line). It can also make backups of your archives (any files or folders).
+ All backups can be transferred to either "Amazon S3" or "any remotely accessible server using the SCP, SFTP or FTP transfer methods".
+ Backup handles: Compression, Archiving, Encryption and Backup Cleaning.
}
gem.email = "meskyan@gmail.com"
- gem.homepage = ""
+ gem.homepage = "http://final-creation.com/open-source"
gem.authors = ["Michael van Rooijen"]
- gem.add_dependency "aws-s3", ">= 0.6.2"
- gem.add_dependency "net-ssh", ">= 2.0.15"
- gem.add_dependency "net-scp", ">= 1.0.2"
-# gem.files.include 'generators/**/*'
-# gem.files.include 'lib/**/*'
+ gem.add_dependency "aws-s3", ">= 0.6.2"
+ gem.add_dependency "net-ssh", ">= 2.0.15"
+ gem.add_dependency "net-scp", ">= 1.0.2"
+ gem.add_dependency "net-sftp", ">= 2.0.4"
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end