File: Rakefile

package info (click to toggle)
ruby-nori 2.6.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 252 kB
  • sloc: ruby: 1,155; xml: 266; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
require "bundler/gem_tasks"

desc "Benchmark Nori parsers"
task :benchmark do
  require "benchmark/benchmark"
end

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new

task :default => :spec
task :test => :spec