Skip to content

Commit

Permalink
feature: Implement Makefile (#453)
Browse files Browse the repository at this point in the history
* feature: Implement Makefile

Implement Makefile to manage project commands

* Fix: Add the correct ruby version in Gemfile.lock

---------

Co-authored-by: Marta Gutiérrez <[email protected]>
Co-authored-by: Kylee Fields <[email protected]>
  • Loading branch information
3 people committed Aug 5, 2024
1 parent 431d618 commit 5711d2e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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}

0 comments on commit 5711d2e

Please sign in to comment.