Sha256: 3127f468f76ba97a0daaf717ac2ba9400472b89907732b3a5e61c769c86b474b
Contents?: true
Size: 617 Bytes
Versions: 24
Compression:
Stored size: 617 Bytes
Contents
# frozen_string_literal: true require_relative "snapshot_archive/version" require_relative "snapshot_archive/cfg" module SnapshotArchive class Error < StandardError; end DESCRIPTION = <<~TEXT.chomp Save and restore snapshots of stateful services to a central archive. The default action is to backup all databases for the current rails apps, however, custom actions can easily be configured. See https://github.com/petekinnecom/snapshot_archive for the full README. TEXT class << self def configure yield(Cfg.instance) end end end require_relative "snapshot_archive/cli"
Version data entries
24 entries across 24 versions & 1 rubygems