Skip to content

Commit

Permalink
gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly committed Feb 17, 2010
1 parent 1cce9d8 commit de78d28
Showing 1 changed file with 32 additions and 25 deletions.
57 changes: 32 additions & 25 deletions astrails-safe.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Astrails Ltd."]
s.date = %q{2010-01-21}
s.date = %q{2010-02-17}
s.default_executable = %q{astrails-safe}
s.description = %q{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.
Expand All @@ -25,20 +25,8 @@ Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain S
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION.yml",
"bin/astrails-safe",
"examples/example_helper.rb",
"examples/integration/archive_integration_example.rb",
"examples/integration/cleanup_example.rb",
"examples/unit/archive_example.rb",
"examples/unit/config_example.rb",
"examples/unit/gpg_example.rb",
"examples/unit/gzip_example.rb",
"examples/unit/local_example.rb",
"examples/unit/mysqldump_example.rb",
"examples/unit/pgdump_example.rb",
"examples/unit/s3_example.rb",
"examples/unit/svndump_example.rb",
"lib/astrails/safe.rb",
"lib/astrails/safe/archive.rb",
"lib/astrails/safe/backup.rb",
Expand All @@ -59,6 +47,20 @@ Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain S
"lib/astrails/safe/svndump.rb",
"lib/astrails/safe/tmp_file.rb",
"lib/extensions/mktmpdir.rb",
"spec/integration/archive_integration_spec.rb",
"spec/integration/cleanup_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/unit/archive_spec.rb",
"spec/unit/cloudfiles_spec.rb",
"spec/unit/config_spec.rb",
"spec/unit/gpg_spec.rb",
"spec/unit/gzip_spec.rb",
"spec/unit/local_spec.rb",
"spec/unit/mysqldump_spec.rb",
"spec/unit/pgdump_spec.rb",
"spec/unit/s3_spec.rb",
"spec/unit/svndump_spec.rb",
"templates/script.rb"
]
s.homepage = %q{http://blog.astrails.com/astrails-safe}
Expand All @@ -67,18 +69,20 @@ Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain S
s.rubygems_version = %q{1.3.5}
s.summary = %q{Backup filesystem and databases (MySQL and PostgreSQL) locally or to a remote server/service (with encryption)}
s.test_files = [
"examples/example_helper.rb",
"examples/integration/archive_integration_example.rb",
"examples/integration/cleanup_example.rb",
"examples/unit/archive_example.rb",
"examples/unit/config_example.rb",
"examples/unit/gpg_example.rb",
"examples/unit/gzip_example.rb",
"examples/unit/local_example.rb",
"examples/unit/mysqldump_example.rb",
"examples/unit/pgdump_example.rb",
"examples/unit/s3_example.rb",
"examples/unit/svndump_example.rb"
"spec/integration/archive_integration_spec.rb",
"spec/integration/cleanup_spec.rb",
"spec/spec_helper.rb",
"spec/unit/archive_spec.rb",
"spec/unit/cloudfiles_spec.rb",
"spec/unit/config_spec.rb",
"spec/unit/gpg_spec.rb",
"spec/unit/gzip_spec.rb",
"spec/unit/local_spec.rb",
"spec/unit/mysqldump_spec.rb",
"spec/unit/pgdump_spec.rb",
"spec/unit/s3_spec.rb",
"spec/unit/svndump_spec.rb",
"examples/example_helper.rb"
]

if s.respond_to? :specification_version then
Expand All @@ -89,14 +93,17 @@ Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain S
s.add_runtime_dependency(%q<aws-s3>, [">= 0"])
s.add_runtime_dependency(%q<cloudfiles>, [">= 0"])
s.add_runtime_dependency(%q<net-sftp>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
else
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<cloudfiles>, [">= 0"])
s.add_dependency(%q<net-sftp>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
end
else
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<cloudfiles>, [">= 0"])
s.add_dependency(%q<net-sftp>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
end
end

0 comments on commit de78d28

Please sign in to comment.