game-data/Rakefile

9 lines
93 B
Ruby
Raw Normal View History

require 'bundler/setup'
namespace :server do
task :start do
system("puma")
end
end