Skip to content

Instantly share code, notes, and snippets.

@shadeslayer
Created December 11, 2014 13:27
Show Gist options
  • Save shadeslayer/d9ebd10399396d4601a2 to your computer and use it in GitHub Desktop.
Save shadeslayer/d9ebd10399396d4601a2 to your computer and use it in GitHub Desktop.
class Foo < Array
def initialize(magic: false)
super
puts magic
end
end
Foo.new(magic: true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment