您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
231B

  1. require 'rake/testtask'
  2. task :default => :test
  3. Rake::TestTask.new do |t|
  4. Dir.glob("examples/*.html") do |file|
  5. test = File.basename(file, ".html")
  6. cmd = "ruby test/mustache_test.rb #{test}"
  7. print `#{cmd}`
  8. end
  9. end