Skip to content

Instantly share code, notes, and snippets.

@pjc0247
Created June 18, 2015 05:09
Show Gist options
  • Save pjc0247/bf0a14285419398a21db to your computer and use it in GitHub Desktop.
Save pjc0247/bf0a14285419398a21db to your computer and use it in GitHub Desktop.
class Foo
attr_accessor :bar
visible_owner :bar
end
class Chicken
def initialize
@foo = Foo.new
@foo.bar = 1234
end
end
begin
foo = Foo.new
foo.bar = 1234
chicken = Chicken.new
chicken.foo.bar = 1234 # error
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment