This post originated from an RSS feed registered with Ruby Buzz
by Huw Collingbourne.
Original Post: Ruby On Rails IntelliSense
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
The last part of my current IntelliSense project has been to add Rails IntelliSense to Ruby In Steel. You might think that this is a no-brainer – after all, if Ruby can be ‘IntelliSensed' then surely Rails can? Well, no. It's a bit trickier than that - as I found out... The first problem is that Rails files are not Ruby programs. If you directly run them, they will fail. This is because Rails silently does a whole load of ‘requires' just before it loads (...)