Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
inspec / lib / utils / enumerable_delegation.rb
Size: Mime:
# encoding: utf-8

module EnumerableDelegation
  include Enumerable

  def each(&block)
    @params.each(&block)
  end
end