forked from unboxed/less
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
51 lines (44 loc) · 1.39 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
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "unboxed-less"
s.authors = ["cloudhead"]
s.email = "[email protected]"
s.summary = "LESS compiler"
s.homepage = "http://www.lesscss.org"
s.description = "LESS is leaner CSS"
s.rubyforge_project = 'less'
s.add_dependency('treetop', '>= 1.4.2')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new("spec") do |t|
t.libs << 'lib' << 'spec'
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = ['--color', '--format=specdoc']
end
task :test do
Rake::Task['spec'].invoke
end
begin
require 'lib/less'
require 'benchmark'
task :compile do
abort "compiling isn't necessary anymore."
puts "compiling #{LESS_GRAMMAR.split('/').last}..."
File.open(LESS_PARSER, 'w') {|f| f.write Treetop::Compiler::GrammarCompiler.new.ruby_source(LESS_GRAMMAR) }
end
task :benchmark do
less = File.read("spec/less/big.less")
result = nil
Benchmark.bmbm do |b|
b.report("parse: ") { result = Less::Engine.new(less).parse(false) }
b.report("build: ") { result = result.build(Less::Node::Element.new) }
b.report("compile:") { result.to_css }
end
end
end
task :default => :spec