oga/task/parser.rake

11 lines
210 B
Ruby

rule '.rb' => '.y' do |task|
sh "racc -l -o #{task.name} #{task.source}"
end
desc 'Generates the parser'
task :parser => [
'lib/oga/xml/parser.rb',
'lib/oga/xpath/parser.rb',
'lib/oga/css/parser.rb'
]