-
Notifications
You must be signed in to change notification settings - Fork 293
Open
Labels
Description
class Nutella
attr_accessor :nuts
def initialize
@nuts = "yes"
end
end
jar = Nutella.new
puts jar.nuts # period .nuts is not in omni-completion list.Can anyone tell me why it would not suggest the @nuts class instance variable in omni completion?