RevitRubyShell Implementation and Installer

I had a very impressive train ride on Friday evening on my way up to meet my friends to climb the Spitzhorn mountain, happening to take the panoramic express up from Montreux to Gstaad, completely by chance. I was just expecting a normal train ride, but it turned out to be extremely beautiful, the most comfortable way I have yet experienced to get an almost overwhelming impression of Swiss mountain beauty without having to do any hiking, just looking out of the train window. We made it to the summit on Saturday (photos):

Jeremy on Spitzhorn peak cross

Last week, I provided a short description of the interactive real-time Revit programming environment RevitRubyShell provided by Håkon Clausen and mentioned how impressed I was by its minimalistic single-click installer.

In the train on the way up to Gstaad, I took a closer look at it. Håkon points out that RevitRubyShell is heavily inspired by RevitPythonShell and Jimmy Schementi's article about embedding IronRuby.

The entire source code is provided on the GitHub social coding platform. GitHub is a web-based hosting service for software development projects using the Git revision control system.

I found the RevitRubyShell source impressive and edifying, sporting a number of aspects well worth looking at in depth for most Revit API programmers, and for that matter most .NET programmers in general as well. I probably missed lots of other interesting features, but here are some that sprang to eye:

I sat down with the RevitRubyShell console and tried to figure out how to count the number of doors in the Revit basic sample model.

It took me a bit of fiddling and googling, but this seems to do the trick:

bic = BuiltInCategory.OST_Doors

doors = FilteredElementCollector.new(doc)
  .OfCategory( bic ).ToElements();

count = doors.select {|d| d.is_a?( FamilyInstance )}.size

=> 29

Only three lines of pretty obvious code, even if you know just a little bit of Ruby and the Revit API:

Door count in Ruby

I find this pretty impressive, once again. The handling is totally intuitive, and everything simply works. Brilliant.

Many thanks again to Håkon for developing and sharing this!