Merge branch 'prod'

This commit is contained in:
Christoph Haas 2023-12-26 01:21:15 +01:00
parent 0ba2ded4a2
commit 5b624e6c30
19 changed files with 724 additions and 310 deletions

31
Gemfile
View file

@ -1,8 +1,14 @@
source 'https://rubygems.org'
ruby '2.6.6'
ruby '2.7.3'
#ruby '3.2.1'
# https://github.com/ruby/net-protocol/issues/10
gem 'net-http'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0'
#gem 'rails', '~> 6.0'
gem 'rails', '~> 7.0.0'
gem 'bootsnap'
#gem 'webpacker'
@ -17,21 +23,26 @@ gem 'fastimage'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# todo: ruby sass is decprecated
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
#gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
#gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
@ -45,7 +56,7 @@ gem 'rails-healthcheck'
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
#gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'listen', '~> 3.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
@ -59,14 +70,15 @@ group :development do
# VS Code code-intelligence
gem 'solargraph'
gem 'rufo'
end
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# gem 'therubyracer', platforms: :ruby
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0'
gem 'sdoc'
end
# PostgreSQL support
@ -111,7 +123,8 @@ gem 'pg_search'
gem 'slim-rails'
# Requires: apt-get install libbz2-dev
gem 'bzip2-ruby', :git => 'https://github.com/chewi/bzip2-ruby.git'
#gem 'bzip2-ruby', :git => 'https://github.com/chewi/bzip2-ruby.git'
# a decade old and does not support Ruby 3
# Authentication
gem 'devise'