This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
forked from pygments/pygments.rb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
67 lines (52 loc) · 1.83 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
#!/usr/bin/env rake
require "bundler/gem_tasks"
task :default => :test
# ==========================================================
# Packaging
# ==========================================================
GEMSPEC = eval(File.read('pygments.rb.gemspec'))
require 'rubygems/package_task'
# ==========================================================
# Testing
# ==========================================================
require 'rake/testtask'
Rake::TestTask.new 'test' do |t|
t.test_files = FileList['test/test_*.rb']
t.ruby_opts = ['-rubygems']
end
# ==========================================================
# Benchmarking
# ==========================================================
task :bench do
sh "ruby bench.rb"
end
# ==========================================================
# Cache lexers
# ==========================================================
# Write all the lexers to a file for easy lookup
task :lexers do
sh "ruby cache-lexers.rb"
end
# ==========================================================
# Vendor
# ==========================================================
namespace :vendor do
file 'vendor/pygments-main' do |f|
sh "hg clone https://bitbucket.org/birkenfeld/pygments-main #{f.name}"
sh "hg --repository #{f.name} identify --id > #{f.name}/REVISION"
rm_rf Dir["#{f.name}/.hg*"]
rm_rf Dir["#{f.name}/tests"]
end
task :clobber do
rm_rf 'vendor/pygments-main'
end
# Load all the custom lexers in the `vendor/custom_lexers` folder
# and stick them in our custom Pygments vendor
task :load_lexers do
LEXERS_DIR = 'vendor/pygments-main/pygments/lexers'
lexers = FileList['vendor/custom_lexers/*.py']
lexers.each { |l| FileUtils.copy l, LEXERS_DIR }
FileUtils.cd(LEXERS_DIR) { sh "python _mapping.py" }
end
task :update => [:clobber, 'vendor/pygments-main', :load_lexers]
end