lib/spruz/range_plus.rb



module Spruz
  module RangePlus
    def +(other)
      to_a + other.to_a
    end
  end
end