Sha256: 182e51796d2a087022e844b6d29bd17c20ac7e68782b0f51d3b09b011f1f3c9b
Contents?: true
Size: 437 Bytes
Versions: 15
Compression:
Stored size: 437 Bytes
Contents
# frozen_string_literal: true module ConvenientService module Support ## # @abstract Subclass and override {#initialize} and {#call} to implement a Command. # class Command class << self ## # TODO: Specs. # def call(...) new(...).call end end ## # TODO: Specs. Raise error if not overridden. # def call end end end end
Version data entries
15 entries across 15 versions & 1 rubygems