Skip to content

Instantly share code, notes, and snippets.

@leomayleomay
Created October 13, 2009 03:10
Show Gist options
  • Save leomayleomay/208941 to your computer and use it in GitHub Desktop.
Save leomayleomay/208941 to your computer and use it in GitHub Desktop.
class Foo
def foo
h1 # this is allowed
end
def self.bar
h1 # this is not allowed
end
private
def h1
puts 'this is a helper method'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment