Debugger Console not returning values RubyMotion

In my contoller I added a breakpoint. The debugger works great and returns the values but when I go to the console and type `pri "@data" ` an empty space is returned. This also happens when I run regular I can type in `app = UIApplication.sharedApplication`  and just a emplyline is returned. I have to open up my terminal to interact with the app. The console is very broken. The "lldb"  is also broken in my console I can do
````
(lldb) pri "@data"
["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
```

but in RubyMine the variables tab is great but the interactive part is broken





In the console



def viewDidLoad
super
self.title = "Alphabet"
@table = UITableView.alloc.initWithFrame(self.view.bounds)
@table.autoresizingMask = UIViewAutoresizingFlexibleHeight
self.view.addSubview(@table)
@table.dataSource = self
@data = ("A".."Z").to_a
puts "hey" # breakpoint added

end
0

Please sign in to leave a comment.