gateway/Gemfile

57 lines
1.2 KiB
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" }
2022-11-18 21:06:41 +01:00
ruby "3.0.4"
2022-03-25 19:01:50 +01:00
2022-03-25 19:17:42 +01:00
gem "rails", "~> 7.0"
2022-03-25 19:01:50 +01:00
gem "sprockets-rails"
2022-03-25 19:01:50 +01:00
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-04-09 10:49:54 +02:00
gem "io-wait" , "0.2.0"
2022-03-31 16:03:11 +02:00
gem "dnsimple"
gem 'whenever', require: false
2022-03-31 16:03:11 +02:00
2022-11-21 22:34:05 +01:00
gem "jsbundling-rails", "~> 1.0"
gem "cssbundling-rails", "~> 1.1"
gem "importmap-rails", "~> 1.1"
gem "tailwindcss-rails", "~> 2.0"
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"
2022-04-09 13:04:12 +02:00
gem "pg"
group :production do
gem "passenger", "6.0.13" , require: "phusion_passenger/rack_handler"
end
2022-03-25 19:01:50 +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-03-31 14:53:39 +02:00
gem 'rspec-rails', '~> 5.0.0'
gem "puma"
2022-03-25 19:01:50 +01:00
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"
gem 'mina-whenever'
2022-03-31 19:47:53 +02:00
gem 'guard-rails'
gem 'guard-rspec'
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