ANN: InstantERB

Inspired by Florian G.'s Execute as Ruby Code Service for OS X
(Execute as Ruby Code Service for OS X - Ruby - Ruby-Forum), I have created InstantERB. It
uses the incredibly useful AutoHotKey utility. It will run any selected
text through ERB.

For example, selecting the following block of text and hitting
+I:

The value of pi is approximately <%= Math::PI %>.

% 3.times do |i|
<%= i %>
% end

will yield:

The value of pi is approximately 3.14159265358979.

0
1
2

Installation instructions:
Install AutoHotKey (http://www.autohotkey.com/)
Download http://www.jackchristensen.com/file_download/InstantERB.ahk

You can either run InstantERB.ahk directly or copy and paste it into
your own AutoHotKey file.

Jack C.