Created
March 17, 2009 15:08
-
-
Save veezus/80589 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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