public
Description: simple backup for mysql, posgresql, svn and files to s3 or local filesystem
Homepage: http://blog.astrails.com/astrails-safe
Clone URL: git://github.com/astrails/safe.git
Vitaly Kushner (author)
Tue Oct 20 09:25:54 -0700 2009
commit  925f523d10bab449a55c0a2ebf41e9a3fac7c375
tree    18c6355d4c971590a0d346d2eb65a435711d8d19
parent  d52e8bcf8f8f392a1c7a3c048b21995793b5d74d
safe / Rakefile
100644 54 lines (43 sloc) 1.732 kb
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
require 'rubygems'
require 'rake'
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "astrails-safe"
    gem.summary = %Q{Backup filesystem and databases (MySQL and PostgreSQL) to Amazon S3 (with encryption)}
    gem.description = "Simple tool to backup databases (MySQL and PostgreSQL) and filesystem locally or to Amazon S3 (with optional encryption)"
    gem.email = "we@astrails.com"
    gem.homepage = "http://blog.astrails.com/astrails-safe"
    gem.authors = ["Astrails Ltd.", "Mark Mansour"]
    gem.files = FileList["[A-Z]*.*", "{bin,examples,generators,lib,rails,spec,test,templates}/**/*", 'Rakefile', 'LICENSE*']
 
    gem.add_dependency("aws-s3")
    gem.add_dependency("net-sftp")
 
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
 
require 'micronaut/rake_task'
Micronaut::RakeTask.new(:examples) do |examples|
  examples.pattern = 'examples/**/*_example.rb'
  examples.ruby_opts << '-Ilib -Iexamples'
end
 
Micronaut::RakeTask.new(:rcov) do |examples|
  examples.pattern = 'examples/**/*_example.rb'
  examples.rcov_opts = '-Ilib -Iexamples -iastrails -x\/gems\/'
  examples.rcov = true
end
 
 
task :default => :examples
 
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end
 
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "safe #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end