setup files for lexer part

This commit is contained in:
Bilal Catic
2020-01-23 09:05:32 +01:00
parent b26d697c6e
commit c83a249c04
5 changed files with 55 additions and 1 deletions

12
Rakefile Normal file
View File

@@ -0,0 +1,12 @@
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