Files
astuto/Gemfile

65 lines
1.3 KiB
Ruby
Raw Normal View History

2019-08-18 14:51:37 +02:00
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.6'
2022-09-15 17:15:12 +02:00
gem 'rake', '12.3.3'
2019-08-18 14:51:37 +02:00
gem 'rails', '6.0.5'
2022-09-15 17:15:12 +02:00
gem 'pg', '1.3.5'
2022-09-15 17:15:12 +02:00
gem 'puma', '4.3.12'
gem 'webpacker', '4.3.0'
2022-09-15 17:15:12 +02:00
gem 'turbolinks', '5.2.1'
2022-09-15 17:15:12 +02:00
gem 'jbuilder', '2.11.5'
2019-08-18 14:51:37 +02:00
2022-09-15 17:15:12 +02:00
gem 'bootsnap', '1.12.0', require: false
2019-08-18 14:51:37 +02:00
# HTTP requests
gem 'httparty', '0.18.0'
# Authentication
gem 'devise', '4.7.3'
2019-08-18 18:51:25 +02:00
2022-06-10 12:03:33 +02:00
# Authorization
gem 'pundit', '2.2.0'
# I18n (forward locales to JS)
2022-09-15 17:15:12 +02:00
gem 'i18n-js', '3.9.2'
2022-06-10 12:03:33 +02:00
# React
2022-09-15 17:15:12 +02:00
gem 'react-rails', '2.6.2'
2019-09-04 21:12:07 +02:00
# Pagination
2022-09-15 17:15:12 +02:00
gem 'kaminari', '1.2.2'
2019-09-04 21:12:07 +02:00
2019-08-18 14:51:37 +02:00
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
2019-08-18 15:03:33 +02:00
2023-03-19 19:57:53 +01:00
gem 'rspec-rails', '3.8.3'
gem 'factory_bot_rails', '5.0.2'
2019-08-18 14:51:37 +02:00
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
2023-03-19 19:57:53 +01:00
gem 'capybara', '3.36.0'
gem 'selenium-webdriver', '4.1.0'
2019-08-18 14:51:37 +02:00
# Easy installation and use of web drivers to run system tests with browsers
2023-03-19 19:57:53 +01:00
gem 'webdrivers', '5.0.0'
2019-08-18 14:51:37 +02:00
end
2022-09-15 17:15:12 +02:00
# If not bundled, webpack compilation in production fails
gem 'listen', '>= 3.0.5', '< 3.2'
2019-08-18 14:51:37 +02:00
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]