mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
72925a7145
Signed-off-by: David Alexander <opensource@thelonelyghost.com>
9 lines
123 B
Ruby
9 lines
123 B
Ruby
# encoding: utf-8
|
|
|
|
module EnumerableDelegation
|
|
include Enumerable
|
|
|
|
def each(&block)
|
|
@params.each(&block)
|
|
end
|
|
end
|