Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Created February 18, 2013 22:56
Show Gist options
  • Select an option

  • Save steveklabnik/4981528 to your computer and use it in GitHub Desktop.

Select an option

Save steveklabnik/4981528 to your computer and use it in GitHub Desktop.
gschool blog feed link converter
text = `curl https://raw.github.com/gSchool/submissions/master/writing/index.markdown`
text.split("\n").each do |line|
next unless line =~ /\*/
line =~ /\* (?:\w|\s)+: (.*)/
puts $1 + "/feed.xml"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment