-
Notifications
You must be signed in to change notification settings - Fork 10
/
Rakefile
100 lines (86 loc) · 3.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright 2007-present Greg Hurrell. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
require 'rake'
require 'rake/clean'
require 'rubygems'
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), 'lib')))
require 'wikitext/version'
CLEAN.include Rake::FileList['**/*.so', '**/*.bundle', '**/*.o', '**/mkmf.log', '**/Makefile']
CLOBBER.include Rake::FileList['ext/wikitext/wikitext_ragel.c']
task :default => :all
desc 'Build all and run all specs'
task :all => [:make, :spec]
extension_makefile = 'ext/wikitext/Makefile'
ragel = 'ext/wikitext/wikitext_ragel.c'
built_extension = "ext/wikitext/wikitext.#{RbConfig::CONFIG['DLEXT']}" # wikitext.bundle (Darwin), wikitext.so (Linux)
extension_files = FileList[
'ext/wikitext/Makefile',
'ext/wikitext/ary.c',
'ext/wikitext/ary.h',
'ext/wikitext/parser.c',
'ext/wikitext/parser.h',
'ext/wikitext/ruby_compat.h',
'ext/wikitext/str.c',
'ext/wikitext/str.h',
'ext/wikitext/token.c',
'ext/wikitext/token.h',
'ext/wikitext/wikitext.c',
'ext/wikitext/wikitext.h',
'ext/wikitext/wikitext_ragel.c',
'ext/wikitext/wikitext_ragel.h',
]
desc 'Build C extension'
task :make => [ragel, extension_makefile, built_extension]
file ragel => ['ext/wikitext/wikitext_ragel.rl'] do
Dir.chdir('ext/wikitext') do
# pass the -s switch here because otherwise Ragel is totally silent
# I like to have visual confirmation that it's actually run
sh 'ragel -G2 -s wikitext_ragel.rl'
end
end
file extension_makefile => ['ext/wikitext/extconf.rb', 'ext/wikitext/depend', ragel] do
Dir.chdir('ext/wikitext') do
ruby 'extconf.rb'
end
end
file built_extension => extension_files do
Dir.chdir('ext/wikitext') do
sh 'make && touch .built'
end
end
desc 'Run specs'
task :spec => :make do
sh 'bundle exec rspec spec'
end
desc 'Build the YARD HTML files'
task :yard do
sh 'bundle exec yardoc -o gh-pages --title Wikitext doc/*.rb - doc/RELEASE-NOTES'
end
desc 'Build gem ("gem build")'
task :build => :make do
system 'gem build wikitext.gemspec'
end
desc 'Publish gem ("gem push")'
task :push => :build do
system "gem push wikitext-#{Wikitext::VERSION}.gem"
end