Skip to content

Instantly share code, notes, and snippets.

@t3hk0d3
Last active December 5, 2016 09:34
Show Gist options
  • Save t3hk0d3/08922855e46ec385edc7d8914aef68f7 to your computer and use it in GitHub Desktop.
Save t3hk0d3/08922855e46ec385edc7d8914aef68f7 to your computer and use it in GitHub Desktop.
class Foo
class << self
attr_accessor :boo
end
def initialize()
@@boo = "test"
end
def shared_boo
@@boo
end
end
foo = Foo.new
Foo.boo = "bar"
foo.shared_boo # => "test"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment