Skip to content

Instantly share code, notes, and snippets.

@enricostano
Created August 22, 2014 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enricostano/f867d74bb81a60c5b09b to your computer and use it in GitHub Desktop.
Save enricostano/f867d74bb81a60c5b09b to your computer and use it in GitHub Desktop.
Ruby class variables
class FooBar
class << self
attr_accessor :variabile
def hola
p variabile
end
private
def poo
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment