This post originated from an RSS feed registered with Ruby Buzz
by Huw Collingbourne.
Original Post: New Debugger Features
Feed Title: Ruby In Steel
Feed URL: http://www.sapphiresteel.com/spip.php?page=backend
Feed Description: Developers' Blog of the Ruby In Steel and Amethyst (Adobe Flex) IDEs for Visual Studio
In the upcoming 1.2 release, I've added some new features to the debugger (as well as speeding things up a fair bit as I blogged about previously). The first (and most useful) new feature is the ability to set the value of a Ruby object from a Visual Studio Watch window. So if you have a variable r whose current value is 3 (say), you can just overtype the 3 with 4 and r will now be 4. In fact, you can use any valid Ruby expression, since the IDE just sends the statement (in this (...)