Andrew Tomaka
42a5cd8106
All checks were successful
continuous-integration/drone/push Build is passing
Sqlite 3 locked pending release with backport: https://github.com/rails/rails/pull/51636 Reviewed-on: #14
32 lines
582 B
Ruby
32 lines
582 B
Ruby
source "https://rubygems.org"
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
gem "rails", "7.1.3.2"
|
|
gem "sprockets-rails"
|
|
gem "sqlite3", "< 2"
|
|
gem "puma"
|
|
gem "importmap-rails"
|
|
gem "turbo-rails"
|
|
gem "stimulus-rails"
|
|
gem "jbuilder"
|
|
|
|
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 "standard"
|
|
gem "web-console"
|
|
end
|
|
|
|
group :test do
|
|
gem "capybara"
|
|
gem "selenium-webdriver"
|
|
gem "webdrivers"
|
|
end
|
|
|
|
gem "tailwindcss-rails", "~> 2.0"
|