Skip to content

Instantly share code, notes, and snippets.

@mharris717
Created December 13, 2012 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mharris717/4278865 to your computer and use it in GitHub Desktop.
Save mharris717/4278865 to your computer and use it in GitHub Desktop.
def timelist
times = contents_by_selector("SBR.htm",".eventLine-time")
times.collect! { |x| [x,x] }
times.flatten!
return times
end
def timelist
times = contents_by_selector("SBR.htm",".eventLine-time")
times.collect! { |x| [x,x] }
return times.flatten
end
def timelist
times = contents_by_selector("SBR.htm",".eventLine-time")
return times.collect { |x| [x,x] }.flatten
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment