Method: Blower::Context#unset

Defined in:
lib/blower/context.rb

#unset(*names) ⇒ Object

Remove context variables

Parameters:

  • names

    The names to remove from the variables.



64
65
66
67
68
# File 'lib/blower/context.rb', line 64

def unset (*names)
  names.each do |name|
    @data.delete name
  end
end