Skip to content

Instantly share code, notes, and snippets.

@Papierkorb
Created October 7, 2017 00:13
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 Papierkorb/f41bde9db95352d04ee0a1ce594f4400 to your computer and use it in GitHub Desktop.
Save Papierkorb/f41bde9db95352d04ee0a1ce594f4400 to your computer and use it in GitHub Desktop.
def foo
puts "Hi"
end
foo # <-- Works fine
module Foo
class Bar
def foo
bar # <-- Can't find definition for "bar"
end
def bar
puts "hi"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment