mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 05:27:03 +00:00
15 lines
244 B
Ruby
15 lines
244 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'rake'
|
|
require '../common'
|
|
|
|
|
|
subprojects = %w{bake capp nib2cib press ojunit}
|
|
|
|
%w(build clean clobber).each do |task_name|
|
|
task task_name do
|
|
subrake(subprojects, task_name)
|
|
end
|
|
end
|
|
|
|
#task :deploy => [:build] |