Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions app/helpers/emoji_helper.rb
Original file line number Diff line number Diff line change
@@ -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