Sha256: 523bf7568c45a0e2a9405062b019ca4d9a055d71096bb6be6437ede0b40a6a54

Contents?: true

Size: 427 Bytes

Versions: 4

Compression:

Stored size: 427 Bytes

Contents

# frozen_string_literal: true

# @api private
# @since 0.5.0
class SmartCore::Container::Entity
  # @return [String]
  #
  # @api private
  # @since 0.5.0
  attr_reader :external_name

  # @param external_name [String]
  # @return [void]
  #
  # @api private
  # @since 0.5.0
  def initialize(external_name)
    @external_name = external_name
  end

  # @return [void]
  #
  # @api private
  # @since 0.5.0
  def call; end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
smart_core-0.6.0 lib/smart_core/container/entity.rb
smart_core-0.5.2 lib/smart_core/container/entity.rb
smart_core-0.5.1 lib/smart_core/container/entity.rb
smart_core-0.5.0 lib/smart_core/container/entity.rb