Sha256: af6e03d41ce1537a9bb23d4bbacda33526bde721390afb8b91f9a6d07223c852
Contents?: true
Size: 1.3 KB
Versions: 2
Compression:
Stored size: 1.3 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'webtranslateit/safe/version' Gem::Specification.new do |spec| spec.name = 'webtranslateit-safe' spec.version = WebTranslateIt::Safe::VERSION spec.authors = ['Edouard Briere', 'Vitaly Kushner'] spec.email = ['support@webtranslateit.com'] spec.required_ruby_version = '>= 3.2' spec.description = <<-DESC WebTranslateIt-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 = 'Backup filesystem and databases (MySQL and PostgreSQL) locally or to a remote server/service (with encryption)' spec.homepage = 'http://github.com/webtranslateit/safe' spec.license = 'MIT' spec.default_executable = 'webtranslateit-safe' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'aws-s3' spec.add_dependency 'cloudfiles' spec.add_dependency 'net-sftp' spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
webtranslateit-safe-0.4.2 | webtranslateit-safe.gemspec |
webtranslateit-safe-0.4.1 | webtranslateit-safe.gemspec |