Soc/Gemfile

35 lines
746 B
Ruby
Raw Permalink Normal View History

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2024-05-15 19:44:36 +00:00
ruby file: "./.ruby-version"
2024-08-08 10:35:36 +00:00
gem "rails", "~> 7.2.0.rc1"
2024-08-08 08:12:01 +00:00
gem "propshaft"
gem "pg"
gem "puma"
2024-03-08 11:33:58 +00:00
gem "image_processing"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "bcrypt", "~> 3.1.7"
gem "bootsnap", require: false
2024-02-04 14:16:19 +00:00
gem "flaggle_rock", git: "https://git.tsvallender.co.uk/tsv/flaggle_rock"
2023-10-13 19:28:35 +00:00
gem "kaminari" # Pagination
2023-10-19 19:28:18 +00:00
gem "solid_cache"
2023-10-13 19:28:35 +00:00
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem "web-console"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
end