Skip to content

Instantly share code, notes, and snippets.

@rbxbx
Created June 30, 2010 14:27
Show Gist options
  • Save rbxbx/458721 to your computer and use it in GitHub Desktop.
Save rbxbx/458721 to your computer and use it in GitHub Desktop.
# Pull the english out of your specs, for great porting
lines = []
File.read(ARGV.pop).each_line do |line|
next unless line =~ /^\s*(context|it|describe)/
line.gsub(/#{$1}.*('|")/,'').gsub(/('|")\s+do/,'')
lines << line
end
puts lines.join
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment