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