-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathRakefile
68 lines (53 loc) · 1.41 KB
/
Rakefile
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
require 'bundler'
begin
Bundler.setup
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
$:.unshift(File.join(File.dirname(__FILE__), './lib'))
require 'edtf/version'
require 'rake/clean'
task :default => [:spec, :cucumber]
desc 'Run an IRB session with CiteProc 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
system 'bundle exec racc -o lib/edtf/parser.rb lib/edtf/parser.y'
end
desc 'Generates the parser with debug information'
task :racc_debug do
system '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)
desc 'Builds the gem file'
task :build => [:check_warnings] do
system 'gem build edtf.gemspec'
end
task :check_warnings do
$VERBOSE = true
require 'edtf'
puts EDTF::VERSION
end
task :release => [ :build] do
system "git tag #{EDTF::VERSION}"
system "git push --tags"
system "gem push edtf-#{EDTF::VERSION}.gem"
end
CLEAN.include('lib/edtf/parser.rb')
CLEAN.include('lib/edtf/parser.output')
CLEAN.include('*.gem')
CLEAN.include('**/*.rbc')