middleman/Rakefile

7 lines
164 B
Ruby
Raw Normal View History

ROOT = File.expand_path(File.dirname(__FILE__))
task :test do
["middleman-core"].each do |g|
sh "cd #{File.join(ROOT, g)} && bundle exec rake test"
end
end