Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/report_builder.rb

Overview

Add except method to Hash

Instance Method Summary collapse

Instance Method Details

#except(*keys) ⇒ Object



6
7
8
# File 'lib/report_builder.rb', line 6

def except(*keys)
  dup.except!(*keys)
end

#except!(*keys) ⇒ Object



10
11
12
13
# File 'lib/report_builder.rb', line 10

def except!(*keys)
  keys.each { |key| delete(key) }
  self
end