mirror of
https://github.com/inspec/inspec
synced 2025-03-02 14:27:12 +00:00
8 lines
105 B
Ruby
8 lines
105 B
Ruby
|
|
module EnumerableDelegation
|
|
include Enumerable
|
|
|
|
def each(&block)
|
|
@params.each(&block)
|
|
end
|
|
end
|