From 117e17c5bb61c6f4ae5cd4e738362460b9bf15f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20B=C3=B6hm?= Date: Fri, 13 Feb 2026 00:35:40 +0100 Subject: [PATCH] Added mise.toml Added mise.toml and added sockets dir with .keep file and modified .gitignore --- .gitignore | 8 ++++++++ mise.toml | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 mise.toml diff --git a/.gitignore b/.gitignore index 9b66b15..777f011 100644 --- a/.gitignore +++ b/.gitignore @@ -11,12 +11,20 @@ /.env* !/.env*.erb +# Ignore sockets +/tmp/sockets/* +!/tmp/sockets/.keep + # Ignore all logfiles and tempfiles. /log/* /tmp/* !/log/.keep !/tmp/.keep +# Ignore sockets +/tmp/sockets/* +!/tmp/sockets/.keep + # Ignore pidfiles, but keep the directory. /tmp/pids/* !/tmp/pids/ diff --git a/mise.toml b/mise.toml new file mode 100644 index 0000000..f5e0cd8 --- /dev/null +++ b/mise.toml @@ -0,0 +1,2 @@ +[tools] +ruby = "ruby-3.3.4"