Class: RbEAI::XslScript

Inherits:
Script
  • Object
show all
Defined in:
lib/rbeai/TransfLogic.rb

Instance Method Summary collapse

Methods inherited from Script

#initialize, #transform

Constructor Details

This class inherits a constructor from RbEAI::Script

Instance Method Details

#doTransform(file, newfilename) ⇒ Object



87
88
89
90
# File 'lib/rbeai/TransfLogic.rb', line 87

def doTransform(file, newfilename)
	print "xsltproc -o #{newfilename} #{@script} #{file} \n"
  result = system("xsltproc -o #{newfilename} #{@script} #{file}")
end