This post originated from an RSS feed registered with Ruby Buzz
by Huw Collingbourne.
Original Post: The Ruby Librarian
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
One of the annoying things about analysing source code for IntelliSense is that (currently) Ruby In Steel re-analyses code that clearly hasn't been changed. Consider this code:require "complex.rb" c = Complex.new(1, 1) puts c.arg In the current version of Ruby In Steel, the ‘require' is examined first and the code file specified is loaded and parsed. Then the following code statements are parsed. This sequence is repeated over and over as you type in order to generate the (...)