Skip to content

Instantly share code, notes, and snippets.

@bcantin
Created June 24, 2010 14:46
Show Gist options
  • Save bcantin/451540 to your computer and use it in GitHub Desktop.
Save bcantin/451540 to your computer and use it in GitHub Desktop.
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