Sha256: b1045c27c5b5a0e1cdfe9129ed70ee3216b9daad533471c7e3c4961d814774f5

Contents?: true

Size: 487 Bytes

Versions: 73

Compression:

Stored size: 487 Bytes

Contents

# frozen_string_literal: true

require "active_support/time_with_zone"

module ActiveSupport
  module EachTimeWithZone #:nodoc:
    def each(&block)
      ensure_iteration_allowed
      super
    end

    def step(n = 1, &block)
      ensure_iteration_allowed
      super
    end

    private

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

Range.prepend(ActiveSupport::EachTimeWithZone)

Version data entries

73 entries across 65 versions & 10 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/core_ext/range/each.rb
activesupport-5.2.8 lib/active_support/core_ext/range/each.rb
activesupport-5.2.7.1 lib/active_support/core_ext/range/each.rb
activesupport-5.2.7 lib/active_support/core_ext/range/each.rb
activesupport-5.2.6.3 lib/active_support/core_ext/range/each.rb
activesupport-5.2.6.2 lib/active_support/core_ext/range/each.rb
activesupport-5.2.6.1 lib/active_support/core_ext/range/each.rb
activesupport-5.2.6 lib/active_support/core_ext/range/each.rb
activesupport-5.2.4.6 lib/active_support/core_ext/range/each.rb
activesupport-5.2.5 lib/active_support/core_ext/range/each.rb
activesupport-5.2.4.5 lib/active_support/core_ext/range/each.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/range/each.rb
activesupport-5.2.4.4 lib/active_support/core_ext/range/each.rb
activesupport-5.2.4.3 lib/active_support/core_ext/range/each.rb
activesupport-6.0.2.2 lib/active_support/core_ext/range/each.rb
activesupport-5.2.4.2 lib/active_support/core_ext/range/each.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/each.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/range/each.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/range/each.rb
activesupport-6.0.2.1 lib/active_support/core_ext/range/each.rb