diff --git a/README.md b/README.md index 9e88d2c4..6e71e594 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,29 @@ For example: ## Running in development +### Ruby setup + +This project requires Ruby 3.4.5. We recommend using [rbenv](https://github.com/rbenv/rbenv) to manage Ruby versions: + + brew install rbenv ruby-build + +Add this to your shell config (`~/.zshrc`): + + eval "$(rbenv init - zsh)" + +Restart your terminal, then install Ruby: + + rbenv install 3.4.5 + +### Installing dependencies + + gem install bundler + bundle install + +### Starting the server + bin/setup + bin/rails db:migrate bin/rails server ## Worth Noting diff --git a/app/helpers/emoji_helper.rb b/app/helpers/emoji_helper.rb index fd959ce8..601f7d55 100644 --- a/app/helpers/emoji_helper.rb +++ b/app/helpers/emoji_helper.rb @@ -1,12 +1,12 @@ module EmojiHelper REACTIONS = { - "👍" => "Thumbs up", - "👏" => "Clapping", - "👋" => "Waving hand", - "💪" => "Muscle", - "❤️" => "Red heart", - "😂" => "Face with tears of joy", - "🎉" => "Party popper", - "🔥" => "Fire" + "✅" => "Approved", + "💬" => "Comments", + "❌" => "Failed", + "🥷" => "Ninja merge", + "❤️" => "Love it", + "😂" => "Funny", + "💪" => "Strong work", + "😬" => "Grimace" } end