Soc/Gemfile

35 lines
730 B
Ruby
Raw Normal View History

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
gem "rails", "~> 7.1"
gem "sprockets-rails"
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