inspec/lib/utils/enumerable_delegation.rb
David Alexander 72925a7145 Makes JSON resource enumerable, despite method_missing magic (#2910)
Signed-off-by: David Alexander <opensource@thelonelyghost.com>
2018-04-26 11:54:16 -04:00

9 lines
123 B
Ruby

# encoding: utf-8
module EnumerableDelegation
include Enumerable
def each(&block)
@params.each(&block)
end
end