Sha256: b25f079bcb754135a272157fa11e796f1c9f23d03821997d9922e3892343061c
Contents?: true
Size: 436 Bytes
Versions: 29
Compression:
Stored size: 436 Bytes
Contents
# frozen_string_literal: true module Dato module Dump module Operation class Root attr_reader :path def initialize(path) @operations = [] @path = path end def add(operation) @operations << operation end def perform operations.each(&:perform) end private attr_reader :operations end end end end
Version data entries
29 entries across 29 versions & 1 rubygems