Created
June 24, 2010 14:46
-
-
Save bcantin/451540 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
FIELDS = %w[id first_name last_name headline industry current_status | |
current_status_timestamp summary specialties proposal_comments | |
associations honors interests api_standard_profile_request picture_url] | |
FIELDS.each do |f| | |
define_method(f.to_sym) do | |
@doc.xpath("//#{f.gsub(/_/,'-')}").text | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment