-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathRakefile
More file actions
41 lines (31 loc) · 914 Bytes
/
Copy pathRakefile
File metadata and controls
41 lines (31 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'bundler/gem_tasks'
require 'rake/clean'
$:.unshift(File.join(File.dirname(__FILE__), './lib'))
require 'edtf/version'
task :default => [:spec, :cucumber]
desc 'Run an IRB session with EDTF loaded'
task :console, [:script] do |t,args|
ARGV.clear
require 'irb'
require 'edtf'
IRB.conf[:SCRIPT] = args.script
IRB.start
end
desc 'Generates the parser'
task :racc do
sh 'bundle exec racc -o lib/edtf/parser.rb lib/edtf/parser.y'
end
desc 'Generates the parser with debug information'
task :racc_debug do
sh 'bundle exec racc -v -t -o lib/edtf/parser.rb lib/edtf/parser.y'
end
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:cucumber)
CLEAN.include('lib/edtf/parser.rb')
CLEAN.include('lib/edtf/parser.output')
CLOBBER.include('pkg')