Sha256: 9640856560d7a878ad8ec63ff63c591e5ea3b9228b604e4277fba893ddade6d1

Contents?: true

Size: 648 Bytes

Versions: 190

Compression:

Stored size: 648 Bytes

Contents

# frozen_string_literal: true

require 'eac_ruby_utils/common_concern/module_setup'

module EacRubyUtils
  class CompareBy
    attr_reader :fields

    def initialize(fields)
      @fields = fields
    end

    def apply(klass)
      pself = self
      klass.include(::Comparable)
      %i[<=> eql?].each do |cmp_method|
        klass.define_method(cmp_method) do |other|
          pself.object_values(self).send(cmp_method, pself.object_values(other))
        end
      end
      klass.define_method(:hash) { pself.object_values(self).hash }
    end

    def object_values(object)
      fields.map { |field| object.send(field) }
    end
  end
end

Version data entries

190 entries across 190 versions & 3 rubygems

Version Path
eac_ruby_utils-0.123.0 lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.121.0 lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.120.0 lib/eac_ruby_utils/compare_by.rb
eac_tools-0.76.1 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.76.0 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.75.2 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.119.2 lib/eac_ruby_utils/compare_by.rb
eac_tools-0.75.1 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.75.0 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.119.1 lib/eac_ruby_utils/compare_by.rb
eac_tools-0.74.1 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.74.0 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.73.0 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.119.0 lib/eac_ruby_utils/compare_by.rb
eac_tools-0.72.0 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.118.1 lib/eac_ruby_utils/compare_by.rb
eac_ruby_utils-0.118.0 lib/eac_ruby_utils/compare_by.rb
eac_tools-0.70.1 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.70.0 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb
eac_tools-0.69.1 sub/eac_ruby_utils/lib/eac_ruby_utils/compare_by.rb