# File addon/buildr/hibernate.rb, line 70 def schemaexport(classpath, options = nil) ant "schemaexport" do |ant| ant.taskdef :name=>"schemaexport", :classname=>"org.hibernate.tool.hbm2ddl.SchemaExportTask", :classpath=>classpath ant.schemaexport(options) { yield ant if block_given? } if options end end