lib/bmg/relation/in_memory.rb in bmg-0.13.0 vs lib/bmg/relation/in_memory.rb in bmg-0.14.0
- old
+ new
@@ -5,10 +5,12 @@
def initialize(type, operand)
@operand = operand
@type = type
end
- attr_reader :type, :operand
+ attr_accessor :type
+ protected :type=
+ attr_reader :operand
public
def each(&bl)
@operand.each(&bl)