Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created October 27, 2008 18:04
Show Gist options
  • Save tenderlove/20149 to your computer and use it in GitHub Desktop.
Save tenderlove/20149 to your computer and use it in GitHub Desktop.
class A
def self.needs thing = nil
(@things ||= []) << thing if thing
@things
end
end
class B < A
needs :awesome
needs :america
end
class C < A
needs :not_awesome
end
p B.needs
p C.needs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment