Skip to content

Instantly share code, notes, and snippets.

@veezus
Created March 17, 2009 15:08
Show Gist options
  • Save veezus/80589 to your computer and use it in GitHub Desktop.
Save veezus/80589 to your computer and use it in GitHub Desktop.
bill.description = if description = xml_document.at('titles/title[@type=official]')
description.text
end
bill.description = xml_document.at('titles/title[@type=official]') ? xml_document.at('titles/title[@type=official]').text : nil
bill.description = xml_document.at('titles/title[@type=official]') rescue nil
bill.description = description.text if description = xml_document.at('titles/title[@type=official]')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment