Skip to content

Instantly share code, notes, and snippets.

@kfatehi
Created November 3, 2012 05:06
Show Gist options
  • Save kfatehi/4006115 to your computer and use it in GitHub Desktop.
Save kfatehi/4006115 to your computer and use it in GitHub Desktop.
# classes im using for this task lol
class SupportAnalyzer
end
class UnsupportedClip
attr_reader :clip, :reasons
def initialize(clip)
@clip = clip
@reasons = []
end
def <<(why)
@reasons << why
end
end
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment