Sha256: bed93ebfedf81f29d1983ec5f92c579f50f81612bce98b96e7c73f60800c7203
Contents?: true
Size: 436 Bytes
Versions: 2
Compression:
Stored size: 436 Bytes
Contents
# frozen_string_literal: true # @api private # @since 0.7.0 class SmartCore::Container::Entities::Base # @return [String] # # @api private # @since 0.7.0 attr_reader :external_name # @param external_name [String] # @return [void] # # @api private # @since 0.7.0 def initialize(external_name) @external_name = external_name end # @return [Any] # # @api private # @since 0.8.0 def reveal; end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
smart_core-0.8.1 | lib/smart_core/container/entities/base.rb |
smart_core-0.8.0 | lib/smart_core/container/entities/base.rb |