public
Description: RedCloth is a Ruby library for converting Textile into HTML.
Homepage: http://code.whytheluckystiff.net/redcloth/
Clone URL: git://github.com/jgarber/redcloth.git
Search Repo:
Click here to lend your support to: redcloth and make a donation at www.pledgie.com !
redcloth / Rakefile
100644 241 lines (203 sloc) 7.06 kb
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
require 'rake'
require 'rake/clean'
require 'rake/gempackagetask'
require 'rake/rdoctask'
require 'rake/testtask'
require 'fileutils'
include FileUtils
require 'lib/redcloth/version'
 
NAME = RedCloth::NAME
SUMMARY = RedCloth::DESCRIPTION
VERS = RedCloth::VERSION::STRING
CLEAN.include ['ext/redcloth_scan/*.{bundle,so,obj,pdb,lib,def,exp,c,o,xml}', 'ext/redcloth_scan/Makefile', '**/.*.sw?', '*.gem', '.config']
CLOBBER.include ['lib/*.{bundle,so,obj,pdb,lib,def,exp}']
 
desc "Does a full compile, test run"
task :default => [:compile, :test]
 
desc "Compiles all extensions"
task :compile => [:redcloth_scan] do
  if Dir.glob(File.join("lib","redcloth_scan.*")).length == 0
    STDERR.puts "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
    STDERR.puts "Gem actually failed to build. Your system is"
    STDERR.puts "NOT configured properly to build redcloth."
    STDERR.puts "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
    exit(1)
  end
end
 
desc "Packages up RedCloth."
task :package => [:clean, :compile]
 
desc "Releases packages for all RedCloth packages and platforms."
task :release => [:package, :rubygems_win32]
 
desc "Run all the tests"
Rake::TestTask.new do |t|
    t.libs << "test"
    t.test_files = FileList['test/test_*.rb']
    t.verbose = true
end
 
# Run specific tests or test files
#
# rake test:parser
# => Runs the full TestParser unit test
#
# rake test:parser:textism
# => Runs the tests matching /textism/ in the TestParser unit test
rule "" do |t|
  # test:file:method
  if /test:(.*)(:([^.]+))?$/.match(t.name)
    arguments = t.name.split(":")[1..-1]
    file_name = arguments.first
    test_name = arguments[1..-1]
    
    if File.exist?("test/test_#{file_name}.rb")
      run_file_name = "test_#{file_name}.rb"
    end
    
    sh "ruby -Ilib:test test/#{run_file_name} -n /#{test_name}/"
  end
end
 
Rake::RDocTask.new do |rdoc|
    rdoc.rdoc_dir = 'doc/rdoc'
    # rdoc.options += RDOC_OPTS
    # rdoc.template = "extras/flipbook_rdoc.rb"
    rdoc.main = "README"
    rdoc.title = "RedCloth Documentation"
    rdoc.rdoc_files.add ['README', 'CHANGELOG', 'COPYING', 'lib/**/*.rb', 'ext/**/*.c']
end
 
PKG_FILES = %w(CHANGELOG COPYING README Rakefile) +
  Dir.glob("{bin,doc,test,lib,extras}/**/*") +
  Dir.glob("ext/**/*.{h,c,rb,rl}") +
  %w[attributes inline scan].map {|f| "ext/redcloth_scan/redcloth_#{f}.c"}
 
spec =
    Gem::Specification.new do |s|
        s.name = NAME
        s.version = VERS
        s.platform = Gem::Platform::RUBY
        s.has_rdoc = true
        s.extra_rdoc_files = ["README", "CHANGELOG", "COPYING"]
        s.summary = SUMMARY
        s.description = s.summary
        s.author = "Jason Garber"
        s.email = 'redcloth-upwards@rubyforge.org'
        s.homepage = 'http://redcloth.org/'
        s.rubyforge_project = 'redcloth'
        
        s.files = PKG_FILES
        
        s.require_paths << "lib/case_sensitive_require"
        #s.autorequire = "redcloth" # no no no this is tHe 3v1l
        s.extensions = FileList["ext/**/extconf.rb"].to_a
        s.executables = ["redcloth"]
    end
 
Rake::GemPackageTask.new(spec) do |p|
    p.need_tar = true
    p.gem_spec = spec
end
 
extension = "redcloth_scan"
ext = "ext/redcloth_scan"
ext_so = "#{ext}/#{extension}.#{Config::CONFIG['DLEXT']}"
ext_files = FileList[
  "#{ext}/redcloth_scan.c",
  "#{ext}/redcloth_inline.c",
  "#{ext}/redcloth_attributes.c",
  "#{ext}/extconf.rb",
  "#{ext}/Makefile",
  "lib"
]
 
file ext_so => ext_files do
  Dir.chdir(ext) do
    sh(PLATFORM =~ /win32/ ? 'nmake' : 'make')
  end
  cp ext_so, "lib"
end
 
task "lib" do
  directory "lib"
end
 
["#{ext}/redcloth_scan.c","#{ext}/redcloth_inline.c","#{ext}/redcloth_attributes.c"].each do |name|
  @code_style ||= "T0"
  source = name.sub(/\.c$/, '.rl')
  file name => [source, "#{ext}/redcloth_common.rl", "#{ext}/redcloth.h"] do
    @ragel_v ||= `ragel -v`[/(version )(\S*)/,2].split('.').map{|s| s.to_i}
    if @ragel_v[0] > 6 || (@ragel_v[0] == 6 && @ragel_v[1] >= 2)
      sh %{ragel #{source} -#{@code_style} -o #{name}}
    else
      STDERR.puts "Ragel 6.2 or greater is required to generate #{name}."
      exit(1)
    end
  end
end
 
desc "Builds just the #{extension} extension"
task extension.to_sym => ["#{ext}/Makefile", ext_so ]
 
file "#{ext}/Makefile" => ["#{ext}/extconf.rb", "#{ext}/redcloth_scan.c","#{ext}/redcloth_inline.c","#{ext}/redcloth_attributes.c"] do
  Dir.chdir(ext) do ruby "extconf.rb" end
end
 
Win32Spec = Gem::Specification.new do |s|
  s.name = NAME
  s.version = VERS
  s.platform = 'x86-mswin32-60'
  s.has_rdoc = false
  s.extra_rdoc_files = ["README", "CHANGELOG", "COPYING"]
  s.summary = SUMMARY
  s.description = s.summary
  s.author = "Jason Garber"
  s.email = 'redcloth-upwards@rubyforge.org'
  s.homepage = 'http://redcloth.org/'
  s.rubyforge_project = 'redcloth'
 
  s.files = PKG_FILES + ["lib/redcloth_scan.so"]
 
  s.require_path = "lib"
  #s.autorequire = "redcloth" # no no no this is tHe 3v1l
  s.extensions = []
  s.bindir = "bin"
end
  
WIN32_PKG_DIR = "pkg/#{NAME}-#{VERS}-mswin32"
 
file WIN32_PKG_DIR => [:package] do
  cp_r "pkg/#{NAME}-#{VERS}", "#{WIN32_PKG_DIR}"
end
 
desc "Cross-compile the redcloth_scan extension for win32"
file "redcloth_scan_win32" => [WIN32_PKG_DIR] do
  cp "extras/mingw-rbconfig.rb", "#{WIN32_PKG_DIR}/ext/redcloth_scan/rbconfig.rb"
  sh "cd #{WIN32_PKG_DIR}/ext/redcloth_scan/ && ruby -I. extconf.rb && make"
  mv "#{WIN32_PKG_DIR}/ext/redcloth_scan/redcloth_scan.so", "#{WIN32_PKG_DIR}/lib"
end
 
desc "Build the binary RubyGems package for win32"
task :rubygems_win32 => ["redcloth_scan_win32"] do
  Dir.chdir("#{WIN32_PKG_DIR}") do
    Gem::Builder.new(Win32Spec).build
    verbose(true) {
      cp Dir["*.gem"].first, "../"
    }
  end
end
 
CLEAN.include WIN32_PKG_DIR
 
desc "Build and install the RedCloth gem on your system"
task :install => [:package] do
  sh %{sudo gem install pkg/#{NAME}-#{VERS}}
end
 
desc "Uninstall the RedCloth gem from your system"
task :uninstall => [:clean] do
  sh %{sudo gem uninstall #{NAME}}
end
 
RAGEL_CODE_GENERATION_STYLES = {
  'T0' => "Table driven FSM (default)",
  'T1' => "Faster table driven FSM",
  'F0' => "Flat table driven FSM",
  'F1' => "Faster flat table-driven FSM",
  'G0' => "Goto-driven FSM",
  'G1' => "Faster goto-driven FSM",
  'G2' => "Really fast goto-driven FSM"
}
 
desc "Find the fastest code generation style for Ragel"
task :optimize do
  require 'extras/ragel_profiler'
  results = []
  RAGEL_CODE_GENERATION_STYLES.each do |style, name|
    @code_style = style
    profiler = RagelProfiler.new(style + " " + name)
    
    # Hack to get everything to invoke again. Could use #execute, but then it
    # doesn't execute prerequisites the second+ time
    Rake::Task.tasks.each {|t| t.instance_eval "@already_invoked = false" }
    
    Rake::Task['clobber'].invoke
    
    profiler.measure(:compile) do
      Rake::Task['compile'].invoke
    end
    profiler.measure(:test) do
      Rake::Task['test'].invoke
    end
    profiler.ext_size(ext_so)
    
  end
  puts RagelProfiler.results
end