Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.3
3.2.3
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ stopNative: ## Stop the react native project
build: ## Build the project
docker compose build backend

shell: ## Open a shell in the backend container
docker compose run --rm backend /bin/bash --login

specs: ## Run the specs
docker compose --profile dev run --rm backend rspec spec spec

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Help would be appreciated! Please join us in [slack #flaredown](https://rubyforg
* PostgreSQL 12.8
* MongoDB 4.4.9
* Redis 6.2.3
* Ruby 3.1.3
* Ruby 3.2.3
* Node 12.22.6

## Installation
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.1.3
FROM ruby:3.2.3

# set working directory
WORKDIR /app
Expand Down
12 changes: 6 additions & 6 deletions backend/Gemfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
source "https://rubygems.org"

ruby file: ".ruby-version"
ruby "3.2.3"

# Configuration management. keep on top of Gemfile
gem "dotenv-rails", groups: %i[development test]

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1.7.7"
gem "rails", "7.0.1"

gem "rake"

# JSON serializer
gem "active_model_serializers", "0.9.8"

# Use postgresql and mongo as the database for Active Record
gem "mongoid", "7.3.3"
gem "mongoid", "8.1.1"
gem "pg"

# Use Puma as the app server
Expand All @@ -22,10 +23,10 @@ gem "puma", "5.6.8"
# Authentication libraries
gem "cancancan", "~> 3.5.0"
gem "cancancan-mongoid", "2.0.0"
gem "devise", "4.8.0"
gem "devise", "4.9.2"
gem "devise_invitable", "2.0.9"
gem "omniauth", "1.8.1"
gem "omniauth-facebook", "3.0.0"
gem "omniauth-facebook", "9.0.0"

# Colored output to console
gem "colored"
Expand Down Expand Up @@ -65,7 +66,6 @@ gem "simplecov", require: false, group: :test

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "bullet"
gem "byebug"
gem "database_cleaner"
gem "database_cleaner-mongoid"
Expand Down
Loading