gateway/Gemfile

41 lines
981 B
Ruby
Raw Normal View History

2022-03-25 19:01:50 +01:00
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.0.3"
2022-03-25 19:17:42 +01:00
gem "rails", "~> 7.0"
2022-03-25 19:01:50 +01:00
gem "sprockets-rails"
gem "sqlite3", "~> 1.4"
gem "importmap-rails"
gem "stimulus-rails"
gem "bootsnap", require: false
2022-03-25 19:17:42 +01:00
gem "sassc-rails"
2022-03-25 19:01:50 +01:00
2022-03-25 19:17:42 +01:00
gem "net-ssh"
2022-03-25 19:18:58 +01:00
gem "haml-rails"
2022-03-30 14:36:11 +02:00
gem 'high_voltage', '~> 3.1'
2022-03-31 10:54:31 +02:00
gem "passenger", require: "phusion_passenger/rack_handler"
2022-03-30 16:19:22 +02:00
2022-03-25 19:01:50 +01:00
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
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
gem "web-console"
2022-03-25 19:17:42 +01:00
gem "rack-mini-profiler"
2022-03-29 17:48:48 +02:00
gem "mina"
2022-03-25 19:01:50 +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