Follow Rails main branch

This commit is contained in:
Andrew Tomaka 2024-08-01 21:56:36 -04:00
parent a705b07d01
commit 70703b42eb
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
8 changed files with 38 additions and 26 deletions

10
bin/dev
View file

@ -1,8 +1,2 @@
#!/usr/bin/env sh
if ! gem list foreman -i --silent; then
echo "Installing foreman..."
gem install foreman
fi
exec foreman start -f Procfile.dev "$@"
#!/usr/bin/env ruby
exec "./bin/rails", "server", *ARGV

View file

@ -2,7 +2,7 @@
require "fileutils"
APP_ROOT = File.expand_path("..", __dir__)
APP_NAME = "family_budget"
APP_NAME = "family-budget"
def system!(*args)
system(*args, exception: true)