Sha256: eaffbe812b7c2d6794ab68dde6ab082337f784dfbcad55aa63089e3bb438a44b

Contents?: true

Size: 493 Bytes

Versions: 23

Compression:

Stored size: 493 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Common
    module Plugins
      module HasInternals
        module Entities
          class Internals
            module Concern
              include Support::Concern

              instance_methods do
                def ==(other)
                  return unless other.instance_of?(self.class)

                  true
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
convenient_service-0.2.1 lib/convenient_service/common/plugins/has_internals/entities/internals/concern.rb
convenient_service-0.2.0 lib/convenient_service/common/plugins/has_internals/entities/internals/concern.rb
convenient_service-0.1.0 lib/convenient_service/common/plugins/has_internals/entities/internals/concern.rb