Skip to content

Instantly share code, notes, and snippets.

@ganmacs
Last active August 29, 2015 14:20
Show Gist options
  • Save ganmacs/097353b76befb74e9566 to your computer and use it in GitHub Desktop.
Save ganmacs/097353b76befb74e9566 to your computer and use it in GitHub Desktop.
forwadable tekina
require 'forwardable'
class A
extend Forwardable
def_delegators :@ary, :size, :[]=, :[], :<<, :to_s, :inspect
def initialize
@ary = []
end
end
a = A.new
a << 1
p a[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment