dgilperez/schedule_attributes

View on GitHub
lib/schedule_attributes/extensions/ice_cube.rb

Summary

Maintainability
A
0 mins
Test Coverage
class IceCube::Rule
  def ==(other)
    to_hash == other.try(:to_hash)
  end
end

class IceCube::Schedule
  def ==(other)
    to_hash == other.try(:to_hash)
  end
end