speedmax / h2o

h2o template engine in ruby

This URL has Read+Write access

h2o / Rakefile
100644 17 lines (14 sloc) 0.385 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
begin
  require 'spec/rake/spectask'
rescue LoadError
  puts 'To use rspec for testing you must install rspec gem:'
  puts '$ sudo gem install rspec'
  exit
end
 
 
desc "Run the specs under spec"
Spec::Rake::SpecTask.new do |t|
  t.spec_opts = ['--options', "spec/spec.opts"]
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
desc "Default task is to run specs"
task :default => :spec