Newer
Older
Website-backend / Gemfile
@lukas lukas on 3 Apr 2022 575 bytes initial commit
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "2.7.2"

gem "rails", "~> 7.0.2", ">= 7.0.2.3"
gem "sqlite3", "~> 1.4"
gem "puma", "~> 5.0"
gem "rack-cors", :require => 'rack/cors'
# gem "jbuilder"
# gem "redis", "~> 4.0"
# gem "kredis"
# gem "bcrypt", "~> 3.1.7"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "bootsnap", require: false
# gem "image_processing", "~> 1.2"
group :development, :test do
  gem "debug", platforms: %i[ mri mingw x64_mingw ]
end

group :development do
  # gem "spring"
end