Skip to content

Instantly share code, notes, and snippets.

@bnymn
Created March 18, 2017 01:47
Show Gist options
  • Save bnymn/f7e5be054d90e0b070d5bca0950bbd32 to your computer and use it in GitHub Desktop.
Save bnymn/f7e5be054d90e0b070d5bca0950bbd32 to your computer and use it in GitHub Desktop.
puts "FUNDINGS"
puts "================================="
fundings = page.css("div.past_financing > div > div > ul.startup_rounds > li");
fundings.each do |funding|
header = funding.css("div.details > div.header > div.type").text.gsub(/\s+/, "");
date = funding.css("div.details > div.header > div.date_display").text.gsub(/\s+/, "");
raised = funding.css("div.details > div.raised").text.gsub(/\s+/, "");
puts "Raised: #{raised} (#{header}) (#{date})"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment