Sha256: dcbdf23f5df1191c7ad0e51a005fb357a83d948d2655885d0cd5b8c499a7486f
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'astrails/safe/version' Gem::Specification.new do |spec| spec.name = "akupchanko-astrails-safe" spec.version = Astrails::Safe::VERSION spec.authors = ["Vitaly Kushner"] spec.email = ["we@astrails.com"] spec.description = <<-DESC Astrails-Safe is a simple tool to backup databases (MySQL and PostgreSQL), Subversion repositories (with svndump) and just files. Backups can be stored locally or remotely and can be enctypted. Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain FTP/SFTP. DESC spec.summary = %Q{Backup filesystem and databases (MySQL and PostgreSQL) locally or to a remote server/service (with encryption)} spec.homepage = "http://astrails.com/blog/astrails-safe" spec.license = "MIT" spec.default_executable = %q{astrails-safe} spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "aws-s3" spec.add_dependency "cloudfiles" spec.add_dependency "net-sftp" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "rr", "~> 1.0.4" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
akupchanko-astrails-safe-0.3.1 | akupchanko-astrails-safe.gemspec |