public
Description: A rails plugin to backup Mysql to Amazon S3
Homepage:
Clone URL: git://github.com/xaviershay/db2s3.git
Click here to lend your support to: db2s3 and make a donation at www.pledgie.com !
db2s3 / Rakefile
100644 19 lines (17 sloc) 0.634 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
desc "Create test database"
task :create_test_db do
  `mysqladmin -u root create db2s3_unittest`
end
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = 'db2s3'
    gemspec.summary = "Summarize your gem"
    gemspec.description = 'db2s3 provides rake tasks for backing up and restoring your DB to S3'
    gemspec.email = 'contact@rhnh.net'
    gemspec.homepage = 'http://github.com/xaviershay/db2s3'
    gemspec.authors = ['Xavier Shay']
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end