volunteers/Gemfile

58 lines
1.3 KiB
Ruby
Raw Permalink Normal View History

2022-11-21 11:10:04 +01:00
source "https://rubygems.org"
2023-11-28 09:28:43 +01:00
ruby "3.2.2"
2022-11-21 11:10:04 +01:00
2023-10-22 12:24:48 +02:00
gem "merged" , git: "https://github.com/FeenixMakers/merged"
2023-05-14 16:16:55 +02:00
#gem "merged" , path: "../merged"
2023-01-18 23:12:44 +01:00
2023-10-21 21:32:04 +02:00
gem "rails", "~> 7.0.0"
2022-11-21 11:10:04 +01:00
gem "sprockets-rails"
2023-09-15 21:58:02 +02:00
2022-11-21 11:10:04 +01:00
gem "pg", "~> 1.1"
gem "importmap-rails"
gem "tailwindcss-rails"
2022-11-21 11:16:59 +01:00
gem "sassc-rails"
2022-11-21 11:10:04 +01:00
2022-11-29 00:13:46 +01:00
gem 'haml-rails'
2022-12-20 16:29:05 +01:00
gem 'html2haml'
gem 'devise'
2022-12-25 16:37:22 +01:00
gem 'carrierwave', '>= 3.0.0.beta', '< 4.0'
2022-12-20 20:02:36 +01:00
2022-12-26 20:03:05 +01:00
gem "ruby2js" , git: "https://github.com/ruby2js/ruby2js/" , branch: "haml_fix"
2022-12-31 21:01:51 +01:00
gem 'thredded', '~> 1.0'
2022-12-26 20:03:05 +01:00
2022-12-25 22:32:34 +01:00
gem "simple_form" , "5.1.0"
gem "simple_form_tailwind_css"
2023-01-11 17:20:02 +01:00
gem 'kaminari'
2023-01-23 23:22:29 +01:00
gem 'ransack'
2023-01-24 18:04:53 +01:00
gem "devise-async"
2022-12-20 16:05:26 +01:00
2023-01-18 16:26:00 +01:00
gem "passenger" , "6.0.15" , require: "phusion_passenger/rack_handler"
2023-01-12 14:51:55 +01:00
gem "bootsnap", require: false
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 ]
2022-12-23 16:38:25 +01:00
gem 'guard-minitest'
gem 'guard' # NOTE: this is necessary in newer versions
2022-11-21 11:10:04 +01:00
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
2023-01-12 14:51:55 +01:00
gem "mina"
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
2023-01-15 21:00:26 +01:00
gem "pundit", "~> 2.3"
2023-01-24 18:04:53 +01:00
gem "sucker_punch", "~> 3.1"