Files
old-parser/Rakefile

12 lines
240 B
Ruby
Raw Normal View History

2020-01-23 09:05:32 +01:00
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |c|
options = ['--color']
options += ["--format", "documentation"]
c.rspec_opts = options
end
desc "Generate Lexer"
task :lexer do
`rex specification.rex -o lexer.rb`
end