Skip to content

Instantly share code, notes, and snippets.

@gary
Created September 2, 2009 15:13
Show Gist options
  • Save gary/179755 to your computer and use it in GitHub Desktop.
Save gary/179755 to your computer and use it in GitHub Desktop.
def blogs?(obj)
return false if obj.nil?
blogs_event = /^(
(?:Culture|Politics)\ Blog |
Mick\ LaSalle:\ Maximum\ Strength\ Mick |
Niner\ Insider |
Tails\ of\ the\ City |
The\ (?:Poop|Mommy\ Files|Thin\ Green\ Line) |
Tim\ Goodman:\ Bastard\ Machine |
Village\ Green
)$/x
!!obj.title[blogs_event]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment