trans. (T. Onoma) wrote:
> What's the preferred way to do XSL transformations?
> 
> Is their a reliable Ruby tool out there for the task? Or is there a fairly 
> standard unix tool one uses?

The last time I took a serious look at XSLT and Ruby as about a year 
ago.  A big reason for the gap is that I've become happier doing XML 
transformations using REXML's pullparser, or simple regexen.  But that's 
not to everyone's taste or choice


My recollection is that there are no complete, pure-Ruby XSLT tools.
If you require access to all the bells and whistles, you may need to use 
the bindings/wrappers for Sablotron or libxslt.

http://www.rubyxml.com/rubyConf2003/stateOfXmlProcessingInRuby/

will tell you what I knew a year ago.  Otherwise, Google around for the 
libxslt or Sablotron stuff.

Or see here:

http://www.rubygarden.org/ruby?AlexNetkachev


James