Skip to content
Open
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
20 changes: 10 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ ruby File.read(".ruby-version").strip
source "https://rubygems.org"

# Choo choo 🚝 (only include the Rails gems we need)
gem "actionpack", "~> 6.1"
gem "actionview", "~> 6.0"
gem "actionpack", "~> 7.0", ">= 7.0.8.1"
gem "actionview", "~> 6.1", ">= 6.1.7.6"
gem "activesupport", "~> 6.1"
gem "railties", "~> 6.0"
gem "railties", "~> 7.0", ">= 7.0.8.1"

# Use Puma as the app server
gem "puma"
Expand All @@ -33,7 +33,7 @@ gem "rouge", "3.3.0"
gem "escape_utils"

# One rails log line per request, instead of enraging quantity
gem "lograge"
gem "lograge", ">= 0.13.0"

# Error reporting
gem "bugsnag"
Expand All @@ -44,36 +44,36 @@ gem 'front_matter_parser'
gem 'matrix'

# Asset compilation
gem 'vite_rails'
gem 'vite_rails', '>= 3.0.15'

# No page reloads
gem 'turbo-rails'
gem 'turbo-rails', '>= 1.5.0'

# Sitemap
gem 'sitemap_generator'

group :development, :test do
# Call "byebug" anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "dotenv-rails"
gem "dotenv-rails", ">= 3.0.0"
end

group :development do
# Access an interactive console on exception pages or by calling `console` anywhere in the code.
gem "web-console"
gem "web-console", ">= 4.2.1"
gem "pry"
gem 'graphql-client'
end

group :test do
# Who doesn't love tests!?
gem "rspec-rails"
gem "rspec-rails", ">= 6.0.0"

# We want junit output so we can annotate the build
gem "rspec_junit_formatter"

# Browser testing stuff
gem "capybara"
gem "capybara", ">= 3.36.0"
end

group :test do
Expand Down