Files
zanzibar/Rakefile
Jason Davis-Cooke 728f727dc7 Initiaize Repo
2015-01-12 10:49:59 -05:00

11 lines
166 B
Ruby

require "bundler/gem_tasks"
task 'test' do
Dir.chdir('test')
system("rspec zanzibar_spec.rb")
end
task 'install_dependencies' do
system('bundle install')
end