Sha256: f6723e0a2beaa05c27311d87644506d754e236f3b44137d543cd0a447a8c4237

Contents?: true

Size: 979 Bytes

Versions: 1

Compression:

Stored size: 979 Bytes

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  warn e.message
  warn "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'juwelier'
Juwelier::Tasks.new do |gem|
  gem.name = "rds-rotate-db-snapshots"
  gem.homepage = "http://github.com/serg-kovalev/rds-rotate-db-snapshots"
  gem.license = "MIT"
  gem.summary = %(Amazon RDS DB snapshot rotator)
  gem.description = %(Provides a simple way to rotate RDS DB snapshots with configurable retention periods.)
  gem.email = "kovserg@gmail.com"
  gem.authors = ["Siarhei Kavaliou"]
  gem.version = File.exist?('VERSION') ? File.read('VERSION') : ""
end
Juwelier::RubygemsDotOrgTasks.new

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "rds-rotate-db-snapshots #{version}"
  rdoc.rdoc_files.include('README*')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rds-rotate-db-snapshots-0.5.2 Rakefile