-
Notifications
You must be signed in to change notification settings - Fork 526
/
Rakefile
60 lines (47 loc) · 1.33 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
require 'date'
require 'rake/clean'
require 'rake/extensiontask'
require 'digest/md5'
task :default => [:test]
# Gem Spec
gem_spec = Gem::Specification.load('redcarpet.gemspec')
# Ruby Extension
Rake::ExtensionTask.new('redcarpet', gem_spec)
# Packaging
require 'bundler/gem_tasks'
# Testing
require 'rake/testtask'
Rake::TestTask.new('test:unit') do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/*_test.rb'
t.verbose = true
t.warning = false
end
task 'test:unit' => :compile
desc 'Run conformance tests (MARKDOWN_TEST_VER=1.0.3)'
task 'test:conformance' => :compile do |t|
script = "#{pwd}/bin/redcarpet"
version = ENV['MARKDOWN_TEST_VER'] || '1.0.3'
lib_dir = "#{pwd}/lib"
chdir("test/MarkdownTest_#{version}") do
sh "RUBYLIB=#{lib_dir} ./MarkdownTest.pl --script='#{script}' --tidy"
end
end
desc 'Run version 1.0 conformance suite'
task 'test:conformance:1.0' => :compile do |t|
ENV['MARKDOWN_TEST_VER'] = '1.0'
Rake::Task['test:conformance'].invoke
end
desc 'Run 1.0.3 conformance suite'
task 'test:conformance:1.0.3' => :compile do |t|
ENV['MARKDOWN_TEST_VER'] = '1.0.3'
Rake::Task['test:conformance'].invoke
end
desc 'Run unit and conformance tests'
task :test => %w[test:unit test:conformance]
desc 'Run benchmarks'
task :benchmark => :compile do |t|
$:.unshift 'lib'
load 'test/benchmark.rb'
end