Skip to content

Instantly share code, notes, and snippets.

@goooooouwa
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save goooooouwa/88225d9ef15b353d3d6f to your computer and use it in GitHub Desktop.

Select an option

Save goooooouwa/88225d9ef15b353d3d6f to your computer and use it in GitHub Desktop.
remove trailing whitespaces. works for strings like "Window Furnishings " and "Bollards ".
ConstrBase::Trade.find_each do |trade|
if matches = /^((\S+\s+)+(\S*))\s*$/.match(trade.name)
trade.name = matches[1]
trade.save
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment