wakaba260/slappy

View on GitHub
lib/slappy/slack_api/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Slappy
  module SlackAPI
    class Base
      include Findable

      def ==(other)
        return false unless other.instance_of? self.class
        other.id == id
      end
    end
  end
end