aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/range/each.rb
blob: f666480fe61449a7e64ae53d5fa4b3b495f22753 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Range #:nodoc:

  def each_with_time_with_zone(&block)
    ensure_iteration_allowed
    each_without_time_with_zone(&block)
  end
  # TODO: change to Module#prepend as soon as the fix is backported to MRI 2.2:
  # https://bugs.ruby-lang.org/issues/10847
  alias_method :each_without_time_with_zone, :each
  alias_method :each, :each_with_time_with_zone

  def step_with_time_with_zone(n = 1, &block)
    ensure_iteration_allowed
    step_without_time_with_zone(n, &block)
  end
  # TODO: change to Module#prepend as soon as the fix is backported to MRI 2.2:
  # https://bugs.ruby-lang.org/issues/10847
  alias_method :step_without_time_with_zone, :step
  alias_method :step, :step_with_time_with_zone

  private
  def ensure_iteration_allowed
    if first.is_a?(Time)
      raise TypeError, "can't iterate from #{first.class}"
    end
  end
end