We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Rubygem
Fork of nex3/haml
Description: HTML Abstraction Markup Language - A Markup Haiku
Homepage: http://haml.hamptoncatlin.com
Clone URL: git://github.com/chriseppstein/haml.git
nex3 (author)
Fri Dec 15 21:08:58 -0800 2006
commit  a6bf882178065cc27ae723ed4db6de557f71d116
tree    a66a5456cac0606b358e75aaffc0aaa9caf17dd3
parent  9a55409803d533d864b9a25ec2d7706325e459f7 parent  e8b28cd3c0033c1d2eb73c564dd0a1238f2b2e05
haml / Rakefile
100644 168 lines (139 sloc) 4.372 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
require 'rubygems'
require 'rake'
 
volatile_requires = ['rcov/rcovtask']
not_loaded = []
volatile_requires.each do |file|
  begin
    require file
  rescue LoadError
    not_loaded.push file
  end
end
 
# For some crazy reason,
# some Rake tasks interfere with others
# (specifically, benchmarking).
# Thus, it's advantageous to only show
# the task currently being used.
def is_task?(*tasks)
  ARGV[0].nil? || tasks.include?(ARGV[0])
end
 
# ----- Default: Testing ------
 
desc 'Default: run unit tests.'
task :default => :test
 
if is_task?('test', 'default')
  require 'rake/testtask'
 
  desc 'Test the Haml plugin'
  Rake::TestTask.new(:test) do |t|
    t.libs << 'lib'
    t.pattern = 'test/**/*_test.rb'
    t.verbose = true
  end
end
 
# ----- Packaging -----
 
if is_task?('package', 'repackage', 'clobber_package')
  require 'rake/gempackagetask'
  
  spec = Gem::Specification.new do |spec|
    spec.name = 'haml'
    spec.summary = 'An elegant, structured XHTML/XML templating engine.'
    spec.version = File.read('VERSION').strip
    spec.author = 'Hampton Catlin'
    spec.email = 'haml@googlegroups.com'
    spec.description = <<-END
Haml (HTML Abstraction Markup Language) is a layer on top of XHTML or XML
that's designed to express the structure of XHTML or XML documents
in a non-repetitive, elegant, easy way,
using indentation rather than closing tags
and allowing Ruby to be embedded with ease.
It was originally envisioned as a plugin for Ruby on Rails,
but it can function as a stand-alone templating engine.
END
    
    readmes = FileList.new('*') { |list| list.exclude(/[a-z]/) }.to_a
    spec.executables = ['haml']
    spec.files = FileList['lib/**/*', 'bin/*', 'test/**/*', 'Rakefile'].to_a + readmes
    spec.homepage = 'http://haml.hamptoncatlin.com/'
    spec.has_rdoc = true
    spec.extra_rdoc_files = readmes
    spec.rdoc_options += [
      '--title', 'Haml',
      '--main', 'REFERENCE',
      '--exclude', 'lib/haml/buffer.rb',
      '--line-numbers',
      '--inline-source'
    ]
    spec.test_files = FileList['test/**/*_test.rb'].to_a
  end
  
  Rake::GemPackageTask.new(spec) { |pkg| }
end
 
# ----- Benchmarking -----
 
if is_task?('benchmark')
  temp_desc = <<END
Benchmark HAML against ERb.
TIMES=n sets the number of runs. Defaults to 100.
END
  
  desc temp_desc.chomp
  task :benchmark do
    require 'test/benchmark'
 
    puts '-'*51, "Benchmark: Haml vs. ERb", '-'*51
    puts "Running benchmark #{ENV['TIMES']} times..." if ENV['TIMES']
    times = ENV['TIMES'].to_i if ENV['TIMES']
    benchmarker = Haml::Benchmarker.new
    puts benchmarker.benchmark(times || 100)
    puts '-'*51
  end
end
 
# ----- Documentation -----
 
if is_task?('rdoc', 'rerdoc', 'clobber_rdoc', 'rdoc_devel', 'rerdoc_devel', 'clobber_rdoc_devel')
  require 'rake/rdoctask'
  
  rdoc_task = Proc.new do |rdoc|
    rdoc.title = 'Haml'
    rdoc.options << '--line-numbers' << '--inline-source'
    rdoc.rdoc_files.include('REFERENCE')
    rdoc.rdoc_files.include('lib/**/*.rb')
    rdoc.rdoc_files.exclude('lib/haml/buffer.rb')
  end
 
  Rake::RDocTask.new do |rdoc|
    rdoc_task.call(rdoc)
    rdoc.rdoc_dir = 'rdoc'
  end
 
  Rake::RDocTask.new(:rdoc_devel) do |rdoc|
    rdoc_task.call(rdoc)
    rdoc.rdoc_dir = 'rdoc_devel'
    rdoc.options << '--all'
    rdoc.rdoc_files.include('test/*.rb')
    rdoc.rdoc_files = Rake::FileList.new(*rdoc.rdoc_files.to_a)
    rdoc.rdoc_files.include('lib/haml/buffer.rb')
  end
end
 
# ----- Coverage -----
 
if is_task?('rcov', 'clobber_rcov')
  unless not_loaded.include? 'rcov/rcovtask'
    Rcov::RcovTask.new do |t|
      t.libs << "test"
      t.test_files = FileList['test/**/*_test.rb']
      if ENV['NON_NATIVE']
        t.rcov_opts << "--no-rcovrt"
      end
      t.verbose = true
    end
  end
end
 
# ----- Profiling -----
 
if is_task?('profile')
  temp_desc = <<END
Run a profile of HAML.
TIMES=n sets the number of runs. Defaults to 100.
FILE=n sets the file to profile. Defaults to 'standard'.
END
  desc temp_desc.chomp
  task :profile do
    require 'test/profile'
    
    puts '-'*51, "Profiling Haml::Template", '-'*51
    
    args = []
    args.push ENV['TIMES'].to_i if ENV['TIMES']
    args.push ENV['FILE'] if ENV['FILE']
    
    profiler = Haml::Profiler.new
    res = profiler.profile(*args)
    puts res
    
    puts '-'*51
  end
end