mirror of
https://github.com/inspec/inspec
synced 2024-11-22 20:53:11 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
8 lines
105 B
Ruby
8 lines
105 B
Ruby
|
|
module EnumerableDelegation
|
|
include Enumerable
|
|
|
|
def each(&block)
|
|
@params.each(&block)
|
|
end
|
|
end
|