Sha256: f42d98f3f5b978504c4dee75a27f39906fae9bbe9716e34424b1f6989be3b777

Contents?: true

Size: 727 Bytes

Versions: 10

Compression:

Stored size: 727 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Service
    module Plugins
      module HasResult
        module Entities
          class Result
            module Plugins
              module HasResultShortSyntax
                module Concern
                  include Support::Concern

                  instance_methods do
                    ##
                    # NOTE: `Support::Delegate` is NOT used intentionally in order to NOT pollute the public interface.
                    #
                    def [](key)
                      data[key]
                    end
                  end
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
convenient_service-0.8.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.7.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.6.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.5.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.4.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.3.1 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.3.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.2.1 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.2.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
convenient_service-0.1.0 lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb