Sha256: 96717a23422eb56fbaf58333f59f1bdd3f13fea83fe2afcf2847f466f93a8609
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true module Expire # Create playground with example data class Playground STEP_WIDTHS = { 'hourly' => 'hour', 'daily' => 'day', 'weekly' => 'week', 'monthly' => 'month', 'yearly' => 'year' }.freeze def self.create(base) new(base).create end def initialize(base) @base = base @backups_dir = Pathname.new("#{base}/backups") @options = { hourly: 42, daily: 15, weekly: 15, monthly: 25, yearly: 5 } end attr_reader :backups_dir, :base, :options def create raise_if_backups_dir_exists oldest_backup = Time.now STEP_WIDTHS.each do |adjective, noun| options[adjective.to_sym].times do oldest_backup = oldest_backup.ago(1.send(noun)) mkbackup(oldest_backup) end end end private def mkbackup(time) backup_name = time.strftime('%Y-%m-%dT%H:%M') FileUtils.mkdir_p("#{backups_dir}/#{backup_name}") end def raise_if_backups_dir_exists return unless FileTest.exist?(backups_dir) raise( PathAlreadyExistsError, "Will not create playground in existing path #{backups_dir}" ) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
expire-0.2.2 | lib/expire/playground.rb |
expire-0.2.1 | lib/expire/playground.rb |