
scrAPI is now available as a Ruby Gem. To install:
gem install scrapi
Thanks to the always helpful RubyForge for hosting.
I’m still going to do incremental fixes in SVN, so if you want the bleeding edge, get it from SVN (http:labnotes.org/svn/public/ruby/scrapi). If you want to wait for official releases, Gems are your friends.
This is also an official announcement for release 1.1.2 which includes a bug fix for first-of-type, last-of-type and adds supports for multiple negations. For example:
process "h1, h2"
Will process every element that is either header level 1, or header level 2. On the other hand:
process ":not(h1):not(h2)"
Will process all elements but these headers. You can do a lot of interesting things with the :not pseudo class.