Sha256: 01d39b9ea1e3d03e10720cb8d9b6b979b9ae58b08418981e2a07f7ae4715c754

Contents?: true

Size: 1015 Bytes

Versions: 2

Compression:

Stored size: 1015 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pgbackups-archive/version"

Gem::Specification.new do |s|
  s.name        = "pgbackups-archive"
  s.version     = PgbackupsArchive::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Kenny Johnston"]
  s.email       = ["kjohnston.ca@gmail.com"]
  s.homepage    = "http://github.com/kjohnston/pgbackups-archive"
  s.summary     = %q{A means of automating Heroku's pgbackups and archiving them to Amazon S3 via the fog gem.}
  s.description = %q{A means of automating Heroku's pgbackups and archiving them to Amazon S3 via the fog gem.}

  s.add_runtime_dependency "fog",    ">= 1.4.0"
  s.add_runtime_dependency "heroku", ">= 2.30.1"
  s.add_runtime_dependency "rake",   ">= 0.9.2.2"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pgbackups-archive-0.0.3 pgbackups-archive.gemspec
pgbackups-archive-0.0.1 pgbackups-archive.gemspec