EvoBal/Gemfile

100 lines
2.8 KiB
Ruby
Raw Normal View History

2020-10-17 12:16:28 +02:00
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2020-12-27 11:44:17 +01:00
ruby '>= 2.7.0'
2020-10-17 12:16:28 +02:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2021-02-07 16:46:01 +01:00
# gem 'rails', '~> 6.1.0'
gem 'rails', github: 'rails/rails', branch: 'main'
2021-01-31 12:11:52 +01:00
2020-10-17 12:16:28 +02:00
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
2021-01-31 12:11:52 +01:00
2020-10-17 12:16:28 +02:00
# Use Puma as the app server
2020-12-10 11:50:11 +01:00
gem 'puma', '~> 5.1'
2021-01-31 12:11:52 +01:00
2020-10-17 12:16:28 +02:00
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
2021-01-31 12:11:52 +01:00
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
2021-02-07 16:46:01 +01:00
gem 'webpacker', '~> 5.0'
2021-01-31 12:11:52 +01:00
# Use Hotwire for the frontend
gem 'hotwire-rails'
2021-02-03 13:35:53 +01:00
# Use Tailwind CSS for frontend design
gem 'tailwindcss-rails'
2020-10-17 12:16:28 +02:00
# Use Redis adapter to run Action Cable in production
2021-01-31 12:11:52 +01:00
gem 'redis', '~> 4.0'
2020-10-17 12:16:28 +02:00
# Use Active Model has_secure_password
2021-01-31 12:11:52 +01:00
gem 'bcrypt', '~> 3.1.7'
2020-10-17 12:16:28 +02:00
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
2021-01-31 12:11:52 +01:00
# Use chronic to parse dates
gem 'chronic'
2021-01-31 12:11:52 +01:00
# Use Nokogiri to transform HTML to text
2021-02-20 11:09:40 +01:00
gem 'nokogiri', "~> 1.11.0"
# some libraries is no longer default gems in Ruby 3.0
# https://github.com/rails/rails/commit/c23533ee0b50fdc67cc73b579674637ba6f34cb4
gem 'rexml'
gem 'open3'
2021-01-31 12:11:52 +01:00
# Use Elasticsearch as Search database
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
2021-01-31 12:11:52 +01:00
# Use Sidekiq for background queues
gem 'sidekiq'
2020-12-10 11:48:40 +01:00
2021-01-31 12:11:52 +01:00
# Use Net::LDAP to fetch data from an LDAP server
gem 'net-ldap'
2021-01-31 12:11:52 +01:00
# Use Devise for authentication
2021-01-06 23:27:50 +01:00
gem 'devise'
2021-01-31 12:11:52 +01:00
# Use Kaminari for pagination
2021-01-30 21:59:25 +01:00
gem "kaminari"
2021-03-04 22:07:42 +01:00
# Use ViewComponents for … view components, duh!
gem "view_component", require: "view_component/engine"
# Use heroicon to display SVG icons from heroicons.com
gem "heroicon"
2020-10-17 12:16:28 +02:00
# Reduces boot times through caching; required in config/boot.rb
2021-02-07 16:46:01 +01:00
gem 'bootsnap', '>= 1.4.4', require: false
2020-10-17 12:16:28 +02:00
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
2020-10-28 23:53:42 +01:00
gem 'pry'
2020-10-17 12:16:28 +02:00
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
2021-02-07 16:46:01 +01:00
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
2020-10-17 12:16:28 +02:00
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
# Adds support for Capybara system testing and selenium driver
2021-02-07 16:46:01 +01:00
gem 'capybara', '>= 3.26'
2020-10-17 12:16:28 +02:00
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]