forked from dennisjbell/methadone-clinic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
98 lines (89 loc) · 2.57 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
require 'sdoc'
require 'bundler'
require 'rake/clean'
require 'rake/testtask'
require 'cucumber'
require 'cucumber/rake/task'
include Rake::DSL
Bundler::GemHelper.install_tasks
desc 'run tests'
Rake::TestTask.new do |t|
t.libs << "lib"
t.libs << "test"
t.ruby_opts << "-rrubygems"
t.test_files = FileList['test/test_*.rb'] + FileList['test/execution_strategy/test_*.rb']
end
desc 'build rdoc'
task :rdoc => [:build_rdoc, :hack_css]
RDoc::Task.new(:build_rdoc) do |rd|
rd.main = "README.rdoc"
rd.options << '-f' << 'sdoc'
rd.template = 'direct'
rd.rdoc_files.include("README.rdoc","lib/**/*.rb","bin/**/*")
rd.title = 'Methadone - Power Up your Command Line Apps'
end
CLOBBER << 'html'
FONT_FIX = {
"0.82em" => "16px",
"0.833em" => "16px",
"0.85em" => "16px",
"1.15em" => "20px",
"1.1em" => "20px",
"1.2em" => "20px",
"1.4em" => "24px",
"1.5em" => "24px",
"1.6em" => "32px",
"1em" => "16px",
"2.1em" => "38px",
}
task :hack_css do
maincss = File.open('html/css/main.css').readlines
File.open('html/css/main.css','w') do |file|
file.puts '@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);'
maincss.each do |line|
if line.strip == 'font-family: "Helvetica Neue", Arial, sans-serif;'
file.puts 'font-family: Lato, "Helvetica Neue", Arial, sans-serif;'
elsif line.strip == 'font-family: monospace;'
file.puts 'font-family: Monaco, monospace;'
elsif line =~ /^pre\s*$/
file.puts "pre {
font-family: Monaco, monospace;
margin-bottom: 1em;
}
pre.original"
elsif line =~ /^\s*font-size:\s*(.*)\s*;/
if FONT_FIX[$1]
file.puts "font-size: #{FONT_FIX[$1]};"
else
file.puts line.chomp
end
else
file.puts line.chomp
end
end
end
end
if RUBY_PLATFORM == 'java'
task :features do
puts "Aruba doesn't work on JRuby; cannot run features"
end
task 'features:wip' => :features
else
CUKE_RESULTS = 'results.html'
CLEAN << CUKE_RESULTS
Cucumber::Rake::Task.new(:features) do |t|
tag_opts = ' --tags ~@pending'
tag_opts = " --tags #{ENV['TAGS']}" if ENV['TAGS']
t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}"
t.fork = false
end
Cucumber::Rake::Task.new('features:wip') do |t|
tag_opts = ' --tags ~@pending'
tag_opts = ' --tags @wip'
t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}"
t.fork = false
end
end
CLEAN << "coverage"
CLOBBER << FileList['**/*.rbc']
task :default => [:test, :features]