Skip to content

Instantly share code, notes, and snippets.

@baldwindavid
Created September 3, 2009 20:52
Show Gist options
  • Save baldwindavid/180535 to your computer and use it in GitHub Desktop.
Save baldwindavid/180535 to your computer and use it in GitHub Desktop.
desc "Cleanup characters"
task :cleanup => :environment do
ContentItem.all.each do |item|
item.update_attribute :body, item.body.gsub('’', "'") unless item.body.blank?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment