residency/Gemfile

53 lines
1.2 KiB
Ruby
Raw Normal View History

2022-11-21 12:10:04 +02:00
source "https://rubygems.org"
ruby "3.0.4"
gem "rails", "~> 7.0.4"
gem "sprockets-rails"
gem "pg", "~> 1.1"
gem "importmap-rails"
gem "tailwindcss-rails"
2022-11-21 12:16:59 +02:00
gem "sassc-rails"
2022-11-21 12:10:04 +02:00
2022-11-29 01:13:46 +02:00
gem 'haml-rails'
2022-12-20 17:29:05 +02:00
gem 'html2haml'
gem 'devise'
2022-12-25 17:37:22 +02:00
gem 'carrierwave', '>= 3.0.0.beta', '< 4.0'
2022-12-20 21:02:36 +02:00
2022-12-26 21:03:05 +02:00
gem "ruby2js" , git: "https://github.com/ruby2js/ruby2js/" , branch: "haml_fix"
2022-12-31 22:01:51 +02:00
gem 'thredded', '~> 1.0'
2022-12-26 21:03:05 +02:00
2022-12-25 23:32:34 +02:00
gem "simple_form" , "5.1.0"
gem "simple_form_tailwind_css"
2022-12-20 17:05:26 +02:00
2022-12-11 13:43:12 +02:00
#gem "merged" , git: "https://github.com/HubFeenixMakers/merged"
gem "merged" , path: "../merged"
2022-11-28 20:16:45 +02:00
2022-11-21 12:16:59 +02:00
group :production do
gem "passenger"
end
2022-11-21 12:10:04 +02:00
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
2022-12-10 00:41:21 +02:00
gem "bootsnap", require: false
2022-11-21 12:10:04 +02:00
gem "debug", platforms: %i[ mri mingw x64_mingw ]
2022-12-10 00:22:52 +02:00
gem "mina"
2022-12-23 17:38:25 +02:00
gem 'guard-minitest'
gem 'guard' # NOTE: this is necessary in newer versions
gem "puma", "~> 5.0"
2022-11-21 12:10:04 +02:00
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end