From de78d2883ab81d134e63031e1e2bd25f42a61b25 Mon Sep 17 00:00:00 2001 From: Vitaly Kushner Date: Wed, 17 Feb 2010 22:26:07 +0200 Subject: [PATCH] gemspec --- astrails-safe.gemspec | 57 ++++++++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 25 deletions(-) diff --git a/astrails-safe.gemspec b/astrails-safe.gemspec index cf9b1bf..85bef43 100644 --- a/astrails-safe.gemspec +++ b/astrails-safe.gemspec @@ -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. @@ -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", @@ -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} @@ -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 @@ -89,14 +93,17 @@ Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain S s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) end else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) end end