class Forematter::Commands::Unset

Public Instance Methods

run() click to toggle source
# File lib/forematter/commands/unset.rb, line 11
def run
  files_with(field).each do |file|
    file.delete(field)
    file.write
  end
end