class Hash
Public Instance Methods
without(*keys)
click to toggle source
# File lib/cfnbackup/utils.rb, line 37 def without(*keys) dup.without!(*keys) end
without!(*keys)
click to toggle source
# File lib/cfnbackup/utils.rb, line 41 def without!(*keys) reject! { |key| keys.include?(key) } end