Skip to content

Instantly share code, notes, and snippets.

@MostlyFocusedMike
Last active May 5, 2018 20:34
Show Gist options
  • Save MostlyFocusedMike/a41b280e023120e3c000495820c4e979 to your computer and use it in GitHub Desktop.
Save MostlyFocusedMike/a41b280e023120e3c000495820c4e979 to your computer and use it in GitHub Desktop.
class Show
attr_accessor :stand_up, :club
@@all = []
def initialize(stand_up, club)
@stand_up = stand_up
@club = club
@@all << self
end
def self.all
@@all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment