oga/task/parser.rake

11 lines
212 B
Ruby
Raw Normal View History

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'
]