blob: 2bc36f8506224de8bfcd8203d5bc8559d79685b8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace :run do
task :development do
sh 'BOOTY_ENV=development bundle exec rackup config.ru -p 9292 -s mongrel'
end
task :test do
sh 'BOOTY_ENV=test bundle exec rackup config.ru -p 9292 -s mongrel'
end
end
|