chexpire/Gemfile

106 lines
2.9 KiB
Ruby
Raw Permalink Normal View History

2018-05-23 10:32:04 +02:00
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2019-08-17 10:34:19 +02:00
ruby '>= 2.5.4'
2018-05-23 10:32:04 +02:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2022-02-13 10:25:06 +01:00
gem 'rails', '~> 6.1'
gem 'rails-i18n', '~> 6.0'
2018-05-23 10:32:04 +02:00
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
2022-02-13 19:22:56 +01:00
gem 'puma', '< 6'
2018-05-23 15:46:10 +02:00
2019-08-20 08:12:05 +02:00
gem 'devise', '~> 4.7'
2019-03-03 23:16:41 +01:00
gem 'devise-i18n', '~> 1.8'
gem 'simple_form', '~> 5.0'
2018-05-29 13:09:42 +02:00
gem 'pundit', '~> 1.1'
2018-05-23 15:46:10 +02:00
2018-05-23 10:32:04 +02:00
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5'
2019-03-02 20:10:46 +01:00
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 4.0'
2018-05-23 10:32:04 +02:00
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
gem 'bootstrap', '~> 4.3.1'
2018-05-23 10:32:04 +02:00
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
2019-03-02 20:10:46 +01:00
# Use Active Model has_secure_password
2018-05-23 10:32:04 +02:00
gem 'bcrypt', '~> 3.1.7'
2019-03-02 20:10:46 +01:00
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
2018-05-23 10:32:04 +02:00
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
gem 'rack-contrib'
2018-05-30 13:23:15 +02:00
gem 'open4'
2018-05-29 22:31:55 +02:00
gem 'naught'
gem 'hashie'
gem 'whenever', require: false
2018-05-29 22:31:55 +02:00
gem 'octicons'
2018-07-03 19:45:24 +02:00
gem 'kaminari'
2018-07-03 20:11:52 +02:00
gem 'has_scope'
gem 'logging'
2018-05-23 10:32:04 +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]
# gem 'binding_of_caller'
gem 'pry-byebug'
gem 'pry-rails'
2018-06-02 14:44:00 +02:00
2019-03-02 17:51:49 +01:00
gem "factory_bot_rails", '~> 5.0'
2018-05-23 10:32:04 +02:00
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '~> 4.0'
2018-05-23 10:32:04 +02:00
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
2018-05-23 15:56:43 +02:00
gem 'rubocop', '~> 0.56.0', require: false
2018-05-24 14:00:26 +02:00
gem 'annotate', require: false
2019-08-20 13:23:38 +02:00
gem 'letter_opener_web'
2018-05-24 14:00:26 +02:00
2018-05-29 22:32:25 +02:00
gem "guard"
gem "guard-minitest"
2018-05-24 11:43:34 +02:00
gem "capistrano", "~> 3.10", require: false
2018-06-05 15:57:14 +02:00
gem "capistrano-rails", "~> 1.4", require: false
2018-05-24 11:43:34 +02:00
gem "capistrano-rbenv", require: false
gem 'capistrano3-puma', require: false
# Necessary for elliptic curve SSH keys
gem 'rbnacl', ">= 3.2", "<5.0"
gem 'bcrypt_pbkdf', ">= 1.0", "<2.0"
gem 'ed25519', ">= 1.2", "< 2.0"
2018-05-23 10:32:04 +02:00
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
2019-08-20 00:12:41 +02:00
gem 'webdrivers'
gem 'launchy'
2018-06-02 14:44:00 +02:00
gem "database_cleaner"
2018-06-02 15:44:34 +02:00
gem "simplecov", require: false
2018-05-23 10:32:04 +02:00
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]