Conditions | 2 |
Total Lines | 4 |
Lines | 4 |
Ratio | 100 % |
Changes | 0 |
1 | # frozen_String_literal: true |
||
47 | View Code Duplication | def eql?(other) |
|
|
|||
48 | return false unless other.is_a?(self.class) |
||
49 | @owner == other.owner && @name == other.name |
||
50 | end |
||
51 | |||
64 |