From 5711d2e071d2204b23a06b461094feca0d3b4fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20Guti=C3=A9rrez?= <41902165+martagrrez@users.noreply.github.com> Date: Mon, 5 Aug 2024 02:59:00 +0200 Subject: [PATCH] feature: Implement Makefile (#453) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feature: Implement Makefile Implement Makefile to manage project commands * Fix: Add the correct ruby version in Gemfile.lock --------- Co-authored-by: Marta GutiƩrrez Co-authored-by: Kylee Fields <43586156+kyleecodes@users.noreply.github.com> --- Gemfile.lock | 2 +- Makefile | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Gemfile.lock b/Gemfile.lock index 54dc506c..09ada11e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -413,7 +413,7 @@ DEPENDENCIES web-console (>= 3.3.0) RUBY VERSION - ruby 3.1.4p223 + ruby 3.1.6 BUNDLED WITH 2.4.18 diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..8117a7ec --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +run-server: + bin/server + +test: + bundle exec rspec ${TEST} + +console: + rails c + +bundle-install: + bundle intall + +bundle-update: + bundle update ${GEM}