Sha256: 63b3c01d6f2a23f1f9863f1c1a14c974e5b6f41b29d3097b742d2d7247465f9a

Contents?: true

Size: 692 Bytes

Versions: 8

Compression:

Stored size: 692 Bytes

Contents

# frozen_string_literal: true

require 'duckface'

module CleanArchitecture
  module Interfaces
    module UseCaseHistoryEntry
      extend Duckface::ActsAsInterface

      def extra_parameters_hash
        raise NotImplementedError
      end

      def failure_messages
        raise NotImplementedError
      end

      def prior_target_state
        raise NotImplementedError
      end

      def succeeded?
        raise NotImplementedError
      end

      def target_identifier
        raise NotImplementedError
      end

      def use_case_class_name
        raise NotImplementedError
      end

      def user_identifier
        raise NotImplementedError
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
clean-architecture-1.0.1 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-1.0.0 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-0.2.0 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-0.1.0 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-0.0.5 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-0.0.4 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-0.0.3 lib/clean_architecture/interfaces/use_case_history_entry.rb
clean-architecture-0.0.1 lib/clean_architecture/interfaces/use_case_history_entry.rb