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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.4
ruby-3.4.9
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.4-alpine AS builder
FROM ruby:3.4.9-alpine AS builder

WORKDIR /app
ENV RAILS_ENV="production" \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN SECRET_KEY_BASE_DUMMY=1 bundle exec rails shakapacker:compile && \
RUN yarn install --production && \
yarn cache clean

FROM ruby:3.3.4-alpine AS runner
FROM ruby:3.4.9-alpine AS runner

WORKDIR /app

Expand Down
15 changes: 7 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '~> 3.3.4'
ruby '~> 3.4.0'

# gem 'turbo-rails', '~> 2.0.6'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.1.3.4'
gem 'rails', '~> 8.1.0'
# Use Puma as the app server
gem 'puma', '~> 6.4.3'
gem 'puma', '~> 7.0'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
Expand All @@ -17,8 +17,7 @@ gem 'shakapacker', '~> 8.0.1'
# gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.12.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
gem 'redis', '~> 5.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

Expand All @@ -31,14 +30,14 @@ gem 'feedjira', '~> 3.2.3'

gem 'rack-attack'
# Logger
gem 'bitquery_logger', git: 'https://github.com/bitquery/bitquery_logger.git', tag: 'v0.7.9' # , path: '../bitquery_logger'
gem 'exception_notification'
gem 'exception_notification-rake', '~> 0.3.1'
gem 'bitquery_logger', path: 'vendor/bitquery_logger'
gem 'exception_notification', '~> 5.0'
gem 'lograge'
gem 'logstash-event'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '~> 1.18.3', require: false
gem 'csv'

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
Expand Down
Loading