Andrew Tomaka
58798d524f
* Update Ruby/Rails/other deps * Unlock Rails and tie to master * Gain access to 7.1 incoming feature allowing CI without secret_key_base * Use Rails 7.1 Dockerfile * Pipeline for some merge checks * Pipeline to deploy Reviewed-on: #2
35 lines
635 B
Ruby
35 lines
635 B
Ruby
source "https://rubygems.org"
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby "3.2.0"
|
|
|
|
# unti 7.1 is out
|
|
gem "rails", git: "https://github.com/rails/rails"
|
|
gem "sprockets-rails"
|
|
gem "sqlite3"
|
|
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"
|