first commit, largely copied volunteers
This commit is contained in:
57
Gemfile
Normal file
57
Gemfile
Normal file
@ -0,0 +1,57 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
ruby "3.1.3"
|
||||
|
||||
gem "merged" , git: "https://github.com/FeenixMakers/merged"
|
||||
#gem "merged" , path: "../merged"
|
||||
|
||||
gem "rails", "~> 7.0.0"
|
||||
|
||||
gem "sprockets-rails"
|
||||
|
||||
gem "pg", "~> 1.1"
|
||||
|
||||
gem "importmap-rails"
|
||||
gem "tailwindcss-rails"
|
||||
gem "sassc-rails"
|
||||
|
||||
gem 'haml-rails'
|
||||
gem 'html2haml'
|
||||
gem 'devise'
|
||||
gem 'carrierwave', '>= 3.0.0.beta', '< 4.0'
|
||||
|
||||
gem "ruby2js" , git: "https://github.com/ruby2js/ruby2js/" , branch: "haml_fix"
|
||||
gem 'thredded', '~> 1.0'
|
||||
|
||||
gem "simple_form" , "5.1.0"
|
||||
gem "simple_form_tailwind_css"
|
||||
gem 'kaminari'
|
||||
gem 'ransack'
|
||||
gem "devise-async"
|
||||
|
||||
gem "passenger" , "6.0.15" , require: "phusion_passenger/rack_handler"
|
||||
gem "bootsnap", require: false
|
||||
|
||||
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 ]
|
||||
gem 'guard-minitest'
|
||||
gem 'guard' # NOTE: this is necessary in newer versions
|
||||
end
|
||||
|
||||
group :development do
|
||||
# Use console on exceptions pages [https://github.com/rails/web-console]
|
||||
gem "web-console"
|
||||
gem "mina"
|
||||
end
|
||||
|
||||
group :test do
|
||||
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
|
||||
gem "capybara"
|
||||
gem "selenium-webdriver"
|
||||
gem "webdrivers"
|
||||
end
|
||||
|
||||
gem "pundit", "~> 2.3"
|
||||
|
||||
gem "sucker_punch", "~> 3.1"
|
Reference in New Issue
Block a user