mirror of
https://github.com/kikito/middleclass.git
synced 2024-11-08 09:34:22 +00:00
13 lines
231 B
Ruby
13 lines
231 B
Ruby
require 'erb'
|
|
|
|
base_dir = Dir.pwd
|
|
|
|
# Tasks
|
|
|
|
task :default => :test
|
|
|
|
task :test do
|
|
lua_path_command = "package.path = '#{base_dir}/middleclass/?.lua;' .. package.path"
|
|
sh "tsc -f --before=\"#{lua_path_command}\" spec/*.lua"
|
|
end
|