webdap/Rakefile

18 lines
250 B
Ruby
Raw Permalink Normal View History

2022-12-10 01:59:30 -05:00
require 'bundler/setup'
namespace :server do
task :start do
system('bundle exec puma -C config/puma.rb')
2022-12-10 01:59:30 -05:00
end
task :reload do
system('guard')
end
end
namespace :test do
task :lint do
system("rubocop app/ server.rb")
2022-12-10 01:59:30 -05:00
end
end