Initial commit (history cleared)
CI / test (3.4.1) (push) Has been cancelled

This commit is contained in:
2026-04-29 11:21:39 +01:00
commit 298610b5f6
277 changed files with 30877 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# frozen_string_literal: true
namespace :server do
desc "Start Rails"
task :start do
pid_file = "tmp/pids/server.pid"
if !(File.exist?(pid_file))
sh("rails s -d")
else
puts "[+] Server is already running"
end
end
desc "Stop Rails"
task :stop do
pid_file = "tmp/pids/server.pid"
if File.exist?(pid_file)
Process.kill("INT", File.read(pid_file).to_i)
else
puts "[-] Server isn't running"
end
end
end
+5
View File
@@ -0,0 +1,5 @@
# frozen_string_literal: true
desc "run training tests"
task :training do
Rake::Task["spec:vulnerabilities"].invoke
end