oga/task/parser.rake

7 lines
177 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
desc 'Generates the parser'
2014-06-01 21:02:28 +00:00
task :parser => ['lib/oga/xml/parser.rb', 'lib/oga/xpath/parser.rb']