volunteers/Gemfile

42 lines
994 B
Ruby
Raw Normal View History

2022-11-21 11:10:04 +01:00
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.0.4"
gem "rails", "~> 7.0.4"
gem "sprockets-rails"
gem "pg", "~> 1.1"
gem "importmap-rails"
gem "tailwindcss-rails"
gem "bootsnap", require: false
2022-11-21 11:16:59 +01:00
gem "sassc-rails"
2022-11-21 11:10:04 +01:00
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
2022-11-28 19:16:45 +01:00
gem "merged" , path: 'merged'
2022-11-21 11:16:59 +01:00
group :production do
gem "passenger"
end
2022-11-21 11:10:04 +01:00
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
2022-11-21 11:16:59 +01:00
gem "puma", "~> 5.0"
2022-11-21 11:10:04 +01:00
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end