Sha256: 2fa5f2d6923f3eeb28c339892b96d9b0be18c37b4580b6e188e05ff2034dab17

Contents?: true

Size: 396 Bytes

Versions: 73

Compression:

Stored size: 396 Bytes

Contents

unless Object.const_defined? :Enumerator
  require 'enumerator'
  unless Enumerable::Enumerator.method_defined? :with_index
    class Enumerable::Enumerator
      def with_index(offset = 0)
        return to_enum(:with_index, offset) unless block_given?
        each do |*args|
          yield args.size == 1 ? args[0] : args, offset
          offset += 1
        end
      end
    end
  end
end

Version data entries

73 entries across 73 versions & 5 rubygems

Version Path
scout_realtime-0.5.3 lib/vendor/backports-3.3.5/lib/backports/1.8.7/enumerator/with_index.rb
scout_realtime-0.5.2 lib/vendor/backports-3.3.5/lib/backports/1.8.7/enumerator/with_index.rb
scout_realtime-0.5.1 lib/vendor/backports-3.3.5/lib/backports/1.8.7/enumerator/with_index.rb
backports-3.4.0 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.3.5 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.3.4 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.3.3 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.3.2 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.3.1 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.3.0 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.2.0 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.1.1 lib/backports/1.8.7/enumerator/with_index.rb
backports-3.1.0 lib/backports/1.8.7/enumerator/with_index.rb