oga/task/parser.rake

15 lines
292 B
Ruby
Raw Normal View History

2014-02-26 18:50:16 +00:00
rule '.rb' => '.y' do |task|
sh "racc -l -o #{task.name} #{task.source}"
end
rule '.rb' => '.rll' do |task|
sh "ruby-ll #{task.source} -o #{task.name}"
end
2014-02-26 18:50:16 +00:00
desc 'Generates the parser'
task :parser => [
'lib/oga/xml/parser.rb',
'lib/oga/xpath/parser.rb',
'lib/oga/css/parser.rb'
]