mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
10 lines
123 B
Ruby
10 lines
123 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
module EnumerableDelegation
|
||
|
include Enumerable
|
||
|
|
||
|
def each(&block)
|
||
|
@params.each(&block)
|
||
|
end
|
||
|
end
|