mirror of
https://github.com/inspec/inspec
synced 2025-02-17 14:38:43 +00:00
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
|