Sha256: cbf9f6b962eb0bb6bcfd042d078f4d5e38cdabf03a69882559f805a13bfc380c

Contents?: true

Size: 433 Bytes

Versions: 26

Compression:

Stored size: 433 Bytes

Contents

if Enumerable.instance_method(:each_with_index).arity.zero?
  require 'backports/tools'
  require 'enumerator'

  module Enumerable
    def each_with_index_with_optional_args_and_block(*args)
      return to_enum(:each_with_index, *args) unless block_given?
      idx = 0
      each(*args) { |o| yield(o, idx); idx += 1 }
      self
    end
    Backports.alias_method_chain self, :each_with_index, :optional_args_and_block
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
scout_realtime-1.0.5 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-1.0.4 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-1.0.3 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-1.0.3.pre lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-1.0.2 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-1.0.1 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-1.0.0 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-0.5.5 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-0.5.5.pre lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-0.5.4 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.6.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.5.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.4.1 lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-0.5.3 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-0.5.2 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
scout_realtime-0.5.1 lib/vendor/backports-3.3.5/lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.4.0 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.3.5 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.3.4 lib/backports/1.9.1/enumerable/each_with_index.rb
backports-3.3.3 lib/backports/1.9.1/enumerable/each_with_index.rb